48084 Commits

Author SHA1 Message Date
Jb Audras
6b386ac06b Post Types: allow trashing draft patterns.
Adds `delete_posts` to capabilities for the `wp_block` post type.

Props ramonopoly, johnbillion, dhruvishah2203, audrasjb, isabel_brison, joemcgill.
Merges [56577] to the 6.3 branch.
Fixes #59041.





git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56777 602fd350-edb4-49c9-b593-d223f7449a82
2023-10-04 18:49:57 +00:00
Jb Audras
7641482479 Editor: Fix loading of assets in blocks in child themes where the directory name starts with the parent theme's directory name.
Props lgladdy, masteradhoc, audrasjb, rajinsharwar, azaozz.
Merges [56527] to the 6.3 branch.
Fixes #59018.





git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56776 602fd350-edb4-49c9-b593-d223f7449a82
2023-10-04 18:45:16 +00:00
Daniel Bachhuber
8be422f293 Editor: Prevent possibility of a fatal error when previewing block themes.
Ensures that preview callbacks attached to the `stylesheet` and `template` filters do not run before `pluggable.php` has been included. These callbacks need functionality from `pluggable.php`.

Props scruffian, johnbillion, SergeyBiryukov, okat, azaozz.
Merges [56529] and [56757] to the 6.3 branch.
Fixes #59000.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56758 602fd350-edb4-49c9-b593-d223f7449a82
2023-10-02 22:54:29 +00:00
Colin Stewart
4b76fad5fb Editor: Don't use fluid layout value in typography.
Changes fluid typography calculation to use fallback value if layout wide size is a fluid value.

Props ramonopoly, mukesh27, jastos, aurooba.
Merges [56503] to the 6.3 branch.
Fixes #58754.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56737 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-27 18:59:01 +00:00
Bernie Reiter
3e6ee96fd0 HTML API: Remove all duplicate copies of an attribute when removing.
When encountering an HTML tag with duplicate copies of an attribute the tag processor ignores the duplicate values, according to the specification. However, when removing an attribute it must remove all copies of that attribute lest one of the duplicates becomes the primary and it appears as if no attributes were removed.

In this patch we're adding tests that will be used to ensure that all attribute copies are removed from a tag when one is request to be removed.

**Before**

{{{#!php
<?php
$p = new WP_HTML_Tag_Processor( '<br id=one id="two" id='three' id>' );
$p->next_tag();
$p->remove_attribute( 'id' );
$p->get_updated_html();
// <br id="two" id='three' id>
}}}

**After**

{{{#!php
<?php
$p = new WP_HTML_Tag_Processor( '<br id=one id="two" id='three' id>' );
$p->next_tag();
$p->remove_attribute( 'id' );
$p->get_updated_html();
// <br>
}}}

Previously we have been overlooking duplicate attributes since they don't have an impact on what parses into the DOM. However, as one unit test affirmed (asserting the presence of the bug in the tag processor) when removing an attribute where duplicates exist this meant we ended up changing the value of an attribute instead of removing it.

In this patch we're tracking the text spans of the parsed duplicate attributes so that ''if'' we attempt to remove them then we'll have the appropriate information necessary to do so. When an attribute isn't removed we'll simply forget about the tracked duplicates. This involves some overhead for normal operation ''when'' in fact there are duplicate attributes on a tag, but that overhead is minimal in the form of integer pairs of indices for each duplicated attribute.

Props dmsnell, zieladam.
Merges [56684] to the 6.3 branch.
Fixes #58119.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56685 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-25 19:13:27 +00:00
Colin Stewart
33b6dcc976 Build/Test Tools: Add sys_get_temp_dir() to open_basedir tests.
In PHPUnit 10.3.5, 9.6.13 and 8.5.34, the child processes used for process isolation now use temporary files to communicate their result to the parent process.

This caused a failure in some tests that set the `open_basedir` PHP directive to a value that did not include `sys_get_temp_dir()`.

This adds `sys_get_temp_dir()` to the `open_basedir` value set by the tests to ensure that permission is still granted for the temporary directory.

PHPUnit uses `sys_get_temp_dir()`. To ensure the result is the same, Core's `get_temp_dir()` function is not used.

References:
- https://github.com/sebastianbergmann/phpunit/issues/5356

Props desrosj, mukesh27, SergeyBiryukov, costdev.
Merges [56622] to the 6.3 branch.
See #59394.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56624 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-19 17:13:35 +00:00
Colin Stewart
d065eedd0d Upgrade/Install: Fix broken sprintf() call when deleting a backup.
In `WP_Upgrader::delete_temp_backup()`, a malformed `sprintf()` call did not pass the value, triggering a Warning in PHP 7 and a Fatal Error in PHP 8.

This fixes the malformed `sprintf()` call by correctly passing the value.

Follow-up to [55720].

Props akihiroharai, afragen.
Merges [56550] to the 6.3 branch.
Fixes #59320.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56582 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-14 10:41:24 +00:00
Bernie Reiter
3f295ebcf1 HTML API: Skip over contents of RAWTEXT elements such as STYLE.
When encountering elements that imply switching into the RAWTEXT parsing state,
the Tag Processor should skip processing until exiting the RAWTEXT state.

In this patch the Tag Processor does just that, except for the case of the
deprecated XMP element which implies further and more complicated rules.

There's an implicit assumption that the SCRIPT ENABLED flag in HTML parsing
is enabled so that the contents of NOSCRIPT can be skipped. Otherwise, it would
be required to parse the contents of that tag.

Props dmsnell.
Merges [56563] to the 6.3 branch.
Fixes #59292.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56564 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-13 12:53:32 +00:00
Jonathan Desrosiers
03b79d88d6 Build/Test Tools: Restore automatically retrying failed E2E tests once.
This restores the GitHub Actions job responsible for automatically retrying a failed workflow once within the E2E testing workflow.

[56198] disabled Slack notifications for this workflow because of the increased number of timeout errors occurring after recent changes until they could be further investigated. Even though the signal-to-noise ration was way too high, there’s still benefit in retrying the workflow once to see if the timeout can be resolved without human intervention. The one retry attempt will not result in any Slack notifications.

Follow up to [56198].
Merges [56308] to the 6.3 branch.
See #58779.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56539 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-07 17:12:02 +00:00
Felix Arntz
ab1cfb6072 Themes: Avoid stale caches for core block styles.
This fixes an issue introduced in [56044] in which the path to core block styles are cached to avoid expensive file operations on every page load. The original caching strategy is now modified so that only the path relative to the blocks location are stored, rather than the full path, since the path to the `wp-includes`` folder can change after the value is generated. The new cached value also includes the current WordPress version value to ensure it is rebuilt when the version changes.

Props lhe2012, coreyw, colorful tones, petitphp, mukesh27, spacedmonkey, joemcgill, flixos90, kimannwall, desmith.
Merges [56524] to the 6.3 branch.
Fixes #59111.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56528 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-06 21:32:46 +00:00
Felix Arntz
c9de375ad8 Posts, Post Types: Reinstate missing sort_column options in get_pages().
This fixes an issue introduced in [55569] that broke sort ordering by `post_modified_gmt` or `modified_gmt`.

Props david.binda, azaozz, spacedmonkey, flixos90, joemcgill.
Merges [56490] to the 6.3 branch.
Fixes #59226.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56517 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-05 20:46:19 +00:00
Felix Arntz
4202d30f73 Posts, Post Types: Avoid redundant SQL query in get_pages().
This avoids an additional query by passing the query args directly to the `WP_Query::query()` method, rather than to the constructor and calling get_posts(), following [55569].

Props david.binda, azaozz, spacedmonkey, mukesh27, flixos90, SergeyBiryukov, joemcgill.
Merges [56491] to the 6.3 branch.
Fixes #59224.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56516 602fd350-edb4-49c9-b593-d223f7449a82
2023-09-05 20:43:43 +00:00
Jb Audras
1f14460178 Post WordPress 6.3.1 version bump.
The 6.3 branch is now `6.3.2-alpha`.





git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56487 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-29 14:46:41 +00:00
Jb Audras
c581af499c WordPress 6.3.1.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56485 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-29 14:08:42 +00:00
Jb Audras
95e4e8d13c Help/About: Update the About page for 6.3.1.
Props audrasjb, mukesh27.
Reviewed by SergeyBiryukov.
Fixes #59180.





git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56483 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-29 09:38:24 +00:00
Peter Wilson
537e28df3f Block Editor: Update SVN props to ignore new asset files.
Update svn props to ignore additional CSS files added to WordPress 6.3.

Merges [56463] to the 6.3 branch.
Fixes #59197.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56465 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-24 21:10:20 +00:00
Jb Audras
dec58ce867 Post WordPress 6.3.1 RC1 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56432 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-23 21:28:06 +00:00
Jb Audras
de1fce5e13 WordPress 6.3.1 RC1.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56431 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-23 21:10:30 +00:00
Sergey Biryukov
3e6cc630ea Docs: Correct duplicate hook reference for wp_min_priority_img_pixels.
The original filter location is `wp_maybe_add_fetchpriority_high_attr()` in `wp-includes/media.php`.

This commit updates the instance in `wp_get_loading_optimization_attributes()` to point to the correct file.

Follow-up to [56037], [56143], [56347].

Props tmatsuur, rajinsharwar, khokansardar.
Reviewed by azaozz, audrasjb.
Merges [56386] to the 6.3 branch.
Fixes #59067.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56429 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-23 14:00:49 +00:00
Jb Audras
30cc12054a Site Health: Correct the check for disk space available to safely perform updates.
If the available disk space exceeds the `PHP_INT_MAX` value, i.e. a 32-bit PHP version is in use with more than 2 GB free, the type casting to `(int)` could cause 
an overflow, and the Site Health test would then erroneously report that there is not enough free space.

This commit removes the unnecessary type casting and uses the result from `disk_free_space()` directly.

Includes optimizing the logic to skip further checks if the available disk space could not be determined.

Follow-up to [55720].

Props mathsgrinds, Presskopp, rajinsharwar, SergeyBiryukov.
Reviewed by azaozz, audrasjb.
Merges [56401] to the 6.3 branch.
Fixes #59116.





git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56428 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-23 13:29:51 +00:00
Jb Audras
b66fce49ec Users: Correct the logic for switch_to_blog() in WP_User_Query::generate_cache_key().
If `$blog_id` equals `0`, it should be treated as the current site ID, and there is no need to switch to a different site.
This commit prevents an unnecessary call to `switch_to_blog()` on single site to avoid a fatal error when using `'orderby' => 'post_count'` and the deprecated 
`'who' => 'authors'` parameter:

`Uncaught Error: Call to undefined function switch_to_blog() in wp-includes/class-wp-user-query.php:1077`

Follow-up to [55657].

Props dd32, austinginder, RavanH, mukesh27.
Reviewed by azaozz, audrasjb.
Merges [56381] to the 6.3 branch.
Fixes #59011.





git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56427 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-23 13:21:42 +00:00
Jb Audras
0c07bc80a2 Editor: Fix error handling of converting classic to block menus.
Fixes the error handling for when `WP_Classic_To_Block_Menu_Converter::convert()` returns an instance of `WP_Error`. 
`WP_Navigation_Fallback::create_classic_menu_fallback()` now checks for `is_wp_error()` and if `true`, returns the error. And the `@return` type is updated to 
`string|WP_Error`.

Also includes a fix in the return type in `WP_Classic_To_Block_Menu_Converter::convert()` to return an empty string instead of an array instead, i.e. when bailing 
out for no menu items returned by `wp_get_nav_menu_items()`. The return type is clearly documented as a string.

Follow-up to [56052].

Props dlh, get_dave, antonvlasenko, hellofromTonya.
Reviewed by azaozz, audrasjb.
Merges [56422] to the 6.3 branch.
Fixes #58823.

 --Cette ligne, et les suivantes ci-dessous, seront 
ignorées--

_M   .
M    src/wp-includes/class-wp-classic-to-block-menu-converter.php
M    src/wp-includes/class-wp-navigation-fallback.php
M    tests/phpunit/tests/editor/classic-to-block-menu-converter.php


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56426 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-22 20:57:47 +00:00
Jb Audras
0550f74770 General: Revert the last use of str_starts_with() in update-core.php.
Fixes updating WordPress from 5.7 and earlier versions. When doing the update this file runs first in the old version where the polifills may not be available.

Props frankit, azaozz.
Reviewed by audrasjb.
Merges [56417] to the 6.3 branch.
Fixes #59145.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56425 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-22 12:45:12 +00:00
Jb Audras
a992cb776e Editor: update npm packages with critical bug fixes for 6.3.1.
Includes fixes for footnotes and editor styles related crashes, as well as a cut and paste-related crash.

This changeset partially merges [56419] to the 6.3 branch as the package-lock had to be rebuilt due to the release branch still using node 14.x.x, and some manual 
editing was necessary due to the unresolved floating-ui dependency issue.

Props ramonopoly, isabel_brison.
Reviewed by azaozz, audrasjb.
Merges [56419] to the 6.3 branch.
See #59151.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56423 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-22 09:57:53 +00:00
David Baumwald
6e4364e49e Bump version in package-lock.json.
Props SergeyBiryukov.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56375 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-08 20:47:27 +00:00
David Baumwald
eb3589b96d Update package.json version to 6.3.1.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56374 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-08 20:44:56 +00:00
David Baumwald
ad23a305a4 Post WordPress 6.3 version bump.
The 6.3 branch is now 6.3.1-alpha.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56373 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-08 20:30:14 +00:00
David Baumwald
253d448b90 WordPress 6.3.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56371 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-08 19:26:09 +00:00
David Baumwald
799be1163f Post WordPress 6.3 RC4 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56369 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-07 19:07:20 +00:00
David Baumwald
1660b5c550 WordPress 6.3 RC4.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56368 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-07 18:51:58 +00:00
David Baumwald
3792ac3b38 General: Commit changes after running precommit:css.
The `{min|max}-device-pixel-ratio` syntax as a a non-standard CSS media feature that was used as an alternative to the now standard `resolution`. Prior to Safari 16.0, `-webkit-{min|max}-device-pixel-ratio` was needed to correctly support it.

This change is a result of the `caniuse-lite` update that was applied recently in [56065]. Though there were no changes to target browsers as a result of this update, it seems an upstream change identified these as unnecessary.

Props desrosj, joemcgill, isabel_brison, SergeyBiryukov, azaozz.
Reviewed by SergeyBiryukov, azaozz.
Backports [56279] to the 6.3 branch.
Fixes #57856.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56367 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-07 17:55:41 +00:00
David Baumwald
23944fb464 Upgrade/Install: Update $_old_files for 6.3.
Props SergeyBiryukov.
Reviewed by azaozz, SergeyBiryukov.
Merges [56365] to the 6.3 branch.
Fixes #58994.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56366 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-07 17:31:59 +00:00
Sergey Biryukov
caf7decc4a Emoji: Suppress console errors from sessionStorage usage in sandboxed post embed iframe.
Amends [56074].

Props westonruter, flixos90.
Reviewed by westonruter, SergeyBiryukov.
Merges [56358] to the 6.3 branch.
Fixes #58978. See #58472.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56364 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-07 16:52:56 +00:00
Isabel Brison
3c8b106084 Build/Test Tools: revert downgrade of uuid.
Reverts the accidental downgrade of uuid in [56065] by changing it back to 9.0.0.

Props Hareesh Pillai, JeffPaul, audrasjb.
Reviewed by audrasjb.
Merges [56350] to the 6.3 branch.
See #58623.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56351 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-03 05:16:32 +00:00
Jb Audras
6c941c3c57 Post WordPress 6.3 RC3 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56344 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 16:50:50 +00:00
Jb Audras
ee888a9778 WordPress 6.3 RC3.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56343 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 16:30:34 +00:00
Sergey Biryukov
166b55a12b Upgrade/Install: Pass stored credentials to WP_Filesystem() where appropriate.
With the introduction of temporary backups of plugins and themes before updating, a new Site Health test was added to verify that plugin and theme temporary backup directories are writable or can be created.

When using a non-direct filesystem, the Site Health test did not include the required credentials, leading to a fatal error as the connection was not initialized properly.

This commit attemps to use the stored credentials if available, and displays a message otherwise.

Includes a similar fix in a function that performs a cleanup of the temporary backup directory.

Follow-up to [55720].

Props utsav72640, rajinsharwar, costdev, mukesh27, peterwilsoncc, audrasjb, SergeyBiryukov.
Reviewed by audrasjb, SergeyBiryukov.
Merges [56341] to the 6.3 branch.
See #58940.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56342 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 16:08:16 +00:00
Kelly Choyce-Dwan
5ae26c62a7 Help/About: Add images to About page, match header style to images.
Props richtabor, markoserb, audrasjb, peterwilsoncc, mukesh27.
Reviewed by davidbaumwald.
Merges [56339] to the 6.3 branch.
See #58067.



git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56340 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 15:09:29 +00:00
Jb Audras
9ea43a57f8 Help/About: Escape "Contribute" links, for better consistency.
Props SergeyBiryukov, peterwilsoncc.
Reviewed by peterwilsoncc, audrasjb.
Merges [56337] to the 6.3 branch.
See #23348.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56338 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 12:58:43 +00:00
Jb Audras
0cb0b79cfe Help/About: Remove target="_blank" from the Contribute link.
Props davidbaumwald.
Reviewed by audrasjb.
Merges [56335] to the 6.3 branch.
See #23348.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56336 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 12:51:02 +00:00
Jb Audras
afa1e0b0f9 Editor: second update of npm packages for 6.3 RC3.
Includes bug fixes for footnotes, patterns, command palette, top toolbar and other small regressions.

Props andrewserong, spacedmonkey.
Reviewed by audrasjb.
Merges [56332] to the 6.3 branch.
Fixes #58926.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56334 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 12:38:06 +00:00
Isabel Brison
be0255b6ac Editor: fix duplication in templates list.
Excludes parent template when a child template is defined during template retrieval.

Props oandregal, mukesh27, flixos90, bgardner, peterwilsoncc.
Reviewed by peterwilsoncc.
Merges [56329] to the 6.3 branch.
Fixes #57756.


git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56330 602fd350-edb4-49c9-b593-d223f7449a82
2023-08-01 04:22:42 +00:00
Jb Audras
adb69ff250 Help/About: Make Contribute links translatable.
Follow-up to [17877], [26354], [35898], [43032], [56220], [56312].

Props sereedmedia, tobifjellner, oglekler, ryelle, fierevere, davidbaumwald, audrasjb.
Reviewed by davidbaumwald.
Merges [56327] to the 6.3 branch.
See #23348.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56328 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-31 20:33:48 +00:00
Jb Audras
a5b4c91068 Editor: initial update of npm packages for 6.3 RC3.
Includes bug fixes for patterns, command palette and several minor regressions.

Props ramonopoly.
Reviewed by audrasjb, isabel_brison.
Merges [56320] to the 6.3 branch.
See #58926.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56322 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-28 13:01:21 +00:00
Jb Audras
2103cb9966 Bundled Themes: Bump version numbers for WordPress 6.3.
In coordination with the release of 6.3, a new version of each bundled theme will also be released. This bumps the version of each theme to the following:

- Twenty Ten: 3.9
- Twenty Eleven: 4.4
- Twenty Twelve: 4.0
- Twenty Thirteen: 3.9
- Twenty Fourteen: 3.7
- Twenty Fifteen: 3.5
- Twenty Sixteen: 3.0
- Twenty Seventeen: 3.3
- Twenty Nineteen: 2.6
- Twenty Twenty: 2.3
- Twenty Twenty-One: 1.9
- Twenty Twenty-Two: 1.5
- Twenty Twenty-Three: 1.2

Props mukesh27, hareesh-pillai, audrasjb, jakariaistauk, kafleg, sabernhardt, spacedmonkey.
Reviewed by audrasjb, spacedmonkey.
Merges [56315] to the 6.3 branch.
Fixes #57857.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56318 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-27 10:18:04 +00:00
Sergey Biryukov
32432f9647 Help/About: Update “Get involved in WordPress” link on the Credits tab.
This commit updates the link URL to send contributors to an orientation tool for a short survey on what team they may be interested in joining. This coincides with the Get Involved tab.

Follow-up to [17877], [26354], [35898], [43032], [56220].

Props courane01, audrasjb.
Reviewed by audrasjb, SergeyBiryukov.
Merges [56311] to the 6.3 branch.
See #23348.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56312 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-26 16:23:40 +00:00
Joe Dolson
3aa1da63f4 Help/About: Fix the Get Involved tab on Network Admin.
This changeset adds a wp-admin/network/contribute.php file to allow the Get Involved tab to work on Network Admin.

Props courane01, ryelle, audrasjb.
Reviewed by joedolson.
Merges [56309] to the 6.3 branch.
See #23348.

git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56310 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-25 22:19:59 +00:00
Jb Audras
b49c476401 Post WordPress 6.3 RC2 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56307 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-25 16:38:34 +00:00
Jb Audras
4d7038a289 WordPress 6.3 RC2.
git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56306 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-25 16:13:14 +00:00
Jb Audras
4628b6e3c5 Editor: update npm packages with bug fixes for 6.3 RC2.
Includes miscellaneous bug fixes for 6.3 RC12.

Props ramonopoly, audrasjb, swissspidy, peterwilsoncc, joemcgill.
Reviewed by audrasjb, mikeschroder.
Merges [56298] to the 6.3 branch.
Fixes #58804.




git-svn-id: https://develop.svn.wordpress.org/branches/6.3@56305 602fd350-edb4-49c9-b593-d223f7449a82
2023-07-25 15:03:22 +00:00