46752 Commits

Author SHA1 Message Date
Sergey Biryukov
ed90b47db9 Tests: Resolve WP_Query test failures on MariaDB due to indeterminate sort order.
[54768] added a few tests to verify that caching within `WP_Query` is bypassed when the `SELECT` clause has been modified via a filter, to avoid cache key collisions and the returning of incomplete or unexpected results.

However, creating several posts with the same date/time fields can result in inconsistent sort ordering between MySQL and MariaDB, as each engine refines the order further using a different index.

This commit aims to stabilize the tests by using `assertEqualSets()` instead of `assertEquals()`, since testing the order is out of their scope. Includes removing `array_unshift()` and `array_reverse()` calls as no longer needed.

This resolves a few test failures on MariaDB along the lines of:
{{{
Tests_Query_FieldsClause::test_should_limit_fields_to_id_and_parent_subset
Posts property for first query is not of expected form.
Failed asserting that two arrays are equal.
--- Expected
+++ Actual
@@ @@
 Array (
     0 => stdClass Object (
-        'ID' => 36019
+        'ID' => 36015
         'post_parent' => 0
     )
     1 => stdClass Object (
-        'ID' => 36018
+        'ID' => 36016
         'post_parent' => 0
     )
     2 => stdClass Object (...)
     3 => stdClass Object (
-        'ID' => 36016
+        'ID' => 36018
         'post_parent' => 0
     )
     4 => stdClass Object (
-        'ID' => 36015
+        'ID' => 36019
         'post_parent' => 0
     )
 )

/tmp/wp-test-runner/tests/phpunit/tests/query/fieldsClause.php:67
/tmp/wp-test-runner/phpunit-5.7.phar:598
}}}

Follow-up to [54768].

Props peterwilsoncc, SergeyBiryukov.
Merges [54829] to the 6.1 branch.
Fixes #57012.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54830 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-12 15:25:57 +00:00
Jonathan Desrosiers
57727f26a0 Post WordPress 6.1.1 RC1 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54828 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 18:39:22 +00:00
Jonathan Desrosiers
7ee5fb107c WordPress 6.1.1 RC1.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54827 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 18:19:48 +00:00
Jonathan Desrosiers
96eb83db8e Coding Standards: Apply spacing changes after composer format.
Follow up to [54817].

Merges [54824] to the 6.1 branch.
See #57057.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54826 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 17:55:30 +00:00
Jonathan Desrosiers
43e21c29f9 Editor: Improve how min/max font sizes are calculated for fluid typography.
- Where no fluid max values are set (e.g., single or custom font size values), the "size" value will act as the maximum value in a `clamp()` function.
- In the absence of any fluid `min`/`max` values, the lower bound rule of `>16px` will be enforced. This applies to custom values from the editor or single-value `theme.json` styles. Font sizes below this will not be clamped.
- In a preset, if a `fluid.min` value has been specified, the lower bound rule of `>16px` won't be enforced on this value. Presets with a fluid object therefore, give precedence to theme author's values.
- In a preset, if there is NOT a `fluid.max` but there is `fluid.min`, use the incoming "size" value as the `max`.
- In a preset, if there is NOT a `fluid.min` but there is a `fluid.max`, use `size * min_size_factor` as the `min`. The lower bound rule of `>16px` is enforced here, because the block editor is computing the `min` value. This is consistent with the way minimum sizes are calculated for single or custom values.


Props ramonopoly, mamaduka, andrewserong, aristath, joen, desrosj.
Merges [54823] to the 6.1 branch.
Fixes #57075.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54825 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 17:54:23 +00:00
Jonathan Desrosiers
66c8599abf Editor: Correctly style separator blocks when only a background-color is defined.
When separator blocks are configured using only a `background-color`, they are shown correctly within the editor but not on the front end.

This changes `WP_Theme_JSON` to detect this scenario and move the `background-color` value to just `color` when both `color` and `border-color` are missing.

Props cbravobernal, flixos90, davidbaumwald, hellofromTonya, desrosj, andrewserong, czapla, glendaviesnz, wildworks.
Merges [54821] to the 6.1 branch.
Fixes #56903.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54822 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 17:23:19 +00:00
Jonathan Desrosiers
d8712695cb Themes: Revert one instance of wp_get_theme() from [54817].
Since this specific call to `wp_get_theme()` is found within `wp-includes/blocks`, this change will need to be made upstream in the Gutenberg repository.

Merges [54819] to the 6.1 branch.
See #57057.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54820 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 16:38:03 +00:00
Jonathan Desrosiers
4344bdeb54 Themes: Reduce usage of wp_get_theme function.
Calling the `wp_get_theme` function creates a instance of the `WP_Theme` class. This can be a performance issue, if all you need is one property of the class instance. This change replaces the usage of `wp_get_theme()->get_stylesheet()` with `get_stylesheet()` to improve performance.

Props spacedmonkey, flixos90, peterwilsoncc, desrosj.
Merges [54817] to the 6.1 branch.
Fixes #57057.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54818 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 16:29:27 +00:00
Jonathan Desrosiers
1588b86d48 Filesystem: Return FTP/FTP Sockets exists() methods to a previous state.
This partially reverts [53860] and [53862], which refactored the `exists()` method to rely on `ftp_rawlist()` instead of `ftp_nlist()`.

[53860] makes a similar attempt to the ones made in [33648] and [34733] (which were also reverted in [35944]). Being compliant with the specifications while continuing to work without issue for all FTP servers continues seem impossible. These little ghosts are the ones we’re scared of the most.

Props jsh4, afragen, costdev, pkolenbr, SergeyBiryukov, dd32, peterwilsoncc, gamecreature, desrosj.
Merges [54815] to the 6.1 branch.
Fixes #56966.
See #51170, #28013.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54816 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 16:02:41 +00:00
Sergey Biryukov
ffc36e53b5 Formatting: Check that both normalizer_* functions exist in remove_accents().
This applies to:
* `normalizer_is_normalized()`
* `normalizer_normalize()`

Includes removing the `Normalizer::FORM_C` constant as a parameter, since it is the default value for both functions and does not need to be explicitly passed. This avoids a fatal error if a plugin includes polyfill for any of the functions but the `Normalizer` class has a different namespace, for example when using the Symfony polyfill.

Follow-up to [53754].

Props hellofromTonya, costdev, desrosj, mukesh27, zodiac1978, jchambo, gisgeo, SergeyBiryukov.
Merges [54813] to the 6.1 branch.
Fixes #56980.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54814 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 15:29:13 +00:00
Jonathan Desrosiers
661d9ea04c Editor: Update block editor packages to the latest patch releases.
This updates the block editor related npm dependencies to their latest patch versions ahead of WordPress 6.1.1.

For a full list of what’s included in this update, see 432ed388f8...6566f5fe9e.

Props aaronrobertshaw, ntsekouras, bernhard-reiter, ramonopoly, isabel_brison, andrewserong, get_dave, scruffian, andraganescu, talldanwp, mciampini, noisysocks, cbravobernal, bph, tyxla, ellatrix, czapla, mcsf, ironprogrammer, wildworks, peterwilsoncc, mamaduka, mikachan, spacedmonkey, cybr, youknowriad, alexstine, aristath, kevin940726, ndiego, 0mirka00, poena, joen, ryankienstra, desrosj, vtad, nithins53, audrasjb, kacper3355, sabernhardt.
Merges [54811] to the 6.1 branch.
Fixes #57038, #56818, #56955, #56923.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54812 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 14:54:01 +00:00
Jonathan Desrosiers
88745395b8 Menus: Apply menu-item-has-children class in sub-menus.
Ensure the `menu-item-has-children` class is added to sub-menu items when `wp_nav_menu()` is called with the `depth` parameter specified to a non-zero value.

Follow up to [54478].

Props davidvongries, fpodhorsky, hellofromTonya, innovext, larsmqller, LeonidasMilossis, mattkeys, mukesh27, nuvoPoint, ocean90, outrankjames, petitphp, SergeyBiryukov, sippis, webmandesign, peterwilsoncc.
Merges [54801] to the 6.1 branch.
Fixes #56946.
See #28620.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54809 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 02:40:54 +00:00
Jonathan Desrosiers
1760eaa601 Docs: Update comments in wp_nav_menu() tests per the documentation standards.
Includes:

- Fixing a few typos.
- Using the correct format for multi-line comments.
- Removing some comments that duplicate the assertion messages without providing any additional context. 

Follow-up to [54478].

Props SergeyBiryukov.
Merges [54741] to the 6.1 branch.
See #56792, #56946.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54808 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 02:39:20 +00:00
Jonathan Desrosiers
48f6bce9db Media: Prevent decoding attribute corrupting JSON data.
Workaround `wp_img_tag_add_decoding_attr()` potentially breaking JavaScript and JSON data by limiting the addition of the decoding attribute to image tags using unescaped double quoted attributes `src` attributes.

Props rodricus, TimothyBlynJacobs, joelmadigan, mw108, adamsilverstein, flixos90, desrosj, mukesh27, peterwilsoncc.
Merges [54802] to the 6.1 branch.
Fixes #56969.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54807 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 02:26:02 +00:00
Jonathan Desrosiers
4cd60b794e I18N: Initialize textdomain registry in wp_load_translations_early().
Initialize `WP_Textdomain_Registry` in `wp_load_translations_early()`. This ensures the global `$wp_textdomain_registry` is set up prior to loading the translations.

Props azurseisme, TimothyBlynJacobs, costdev, ocean90, flixos90, swissspidy, peterwilsoncc.
Merges [54803] to the 6.1 branch.
Fixes #57051.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54806 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 02:24:29 +00:00
Felix Arntz
bb3d335340 Editor: Improve performance of WP_Theme_JSON class by reducing usage of expensive array functions.
In many scenarios array functions are more expensive than using simpler `for` or `foreach` loops.

This changeset results in roughly 4% faster `wp_head` execution time for both block themes and classic themes. While this may seem like a small win, it is a worthwhile enhancement and only one part of several other little performance tweaks which are being worked on to improve performance of `theme.json` parsing further.

Props aristath, desrosj, jrf, spacedmonkey.
Merges [54804] to the 6.1 branch.
Fixes #56974.
See #57067.


git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54805 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-11 02:05:56 +00:00
Felix Arntz
3b454cf360 Editor: Avoid running certain logic around theme.json parsing unnecessarily for classic themes.
Here's what it does:
* Do not load and parse `theme-i18n.json` schema if the theme does not have a `theme.json` file.
* Fix the variable caching layer around the theme's `theme.json` parsing so that a parent's theme `theme.json` is cached as well.
* Do not run a `WP_Query` for global styles for a user when the theme does not have a `theme.json`.

In a basic WordPress setup, this changeset improves `wp_head` execution time for classic themes by 10%, and overall response time for both block themes and classic themes by 4%. This may seem like a small win, but 4% reduced overall response time is actually quite a bit for one change, and it is worth mentioning that this is just one of several other little performance tweaks which are being worked on to improve performance of `theme.json` parsing further.

Props flixos90, manuilov, oandregal, peterwilsoncc, spacedmonkey.
Merges [54799] to the 6.1 branch.
Fixes #56945.


git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54800 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 22:40:59 +00:00
Dominik Schilling
265e7f2207 I18N: Always pass $locale to load_textdomain().
In [53874] the optional `$locale` parameter was added to `load_textdomain()`. While most `load_textdomain()` calls in core were were updated, some were missed. Passing the original locale avoids the need to call `determine_locale()` by `load_textdomain()` which is used as a fallback.

Props ocean90, swissspidy, desrosj.
Merges [54797] to the 6.1 branch.
Fixes #57060.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54798 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 19:42:58 +00:00
Dominik Schilling
1322922ce7 I18N: Revert [54795] from the 6.1 branch.
This will be added again once committed to trunk first.

See #57060.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54796 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 19:34:13 +00:00
Dominik Schilling
94fbb44168 I18N : Always pass $locale to load_textdomain().
In [53874] the optional `$locale` parameter was added to `load_textdomain()`. While most `load_textdomain()` calls in core were were updated, some were missed. Passing the original locale avoids the need to call `determine_locale()` by `load_textdomain()` which is used as a fallback.

Props ocean90, swissspidy, desrosj.
Fixes #57060.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54795 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 19:19:11 +00:00
Jonathan Desrosiers
18ec488445 Canonical: Protect against error for term not exists queries.
Prevent term `NOT EXISTS` queries causing `redirect_canonical()` to throw a fatal error in PHP 8 and above, or a warning in earlier versions.

This ensures the `tax_query`'s `terms` property both exists and is countable before attempting to count it.

Props codesdnc, SergeyBiryukov, kadamwhite, costdev, miguelaxcar.
Merges [54785] to the 6.1 branch.
Fixes #55955.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54793 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 16:23:20 +00:00
Jb Audras
055b864ba8 Text Changes: Replace "Full site editing" with "Site Editor".
This changeset replaces the various occurrences of "Full site editing" with "Site Editor" as it is the new official name of the feature.
For more background about this change, see https://make.wordpress.org/updates/2022/11/04/site-editor-a-more-user-friendly-name/.

Props audrasjb, peterwilsoncc, poena, ocean90, Mamaduka, desrosj.
Fixes #57026.
Merges [54786], [54787], and [54788] to the 6.1 branch.


git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54792 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 16:21:48 +00:00
Tonya Mork
dc1399a409 Update/Install: Deactivate Gutenberg plugin version older than 14.1.
Resolves a fatal error due to `get_template_hierarchy()` due to incompatible older Gutenberg versions.

[54269] introduced this new function for 6.1. This function was introduced in Gutenberg 13.9.0. However, it was not guarded to protect the plugin from when the function was loaded in Core. Gutenberg 14.1.0 added the `function_exists()` wrapper to protect the plugin from the fatal error.

Minimum compatible version:
This commit changes the Gutenberg minimum compatible version number to 14.1. For versions older than 14.1, the plugin will deactivate when upgrading Core to 6.1 or newer.

Function rename:
Past commits renamed the upgrade function by changing Core's version number. This commit renames the function to be generic, i.e. `_upgrade_core_deactivate_incompatible_plugins()` and adopts the `@since [reason]` strategy to track historical changes to the function. 

Follow-up to [54269], [52199], [52166], [52165], [51180].

Props namithjawahar, hellofromTonya, azaozz, desrosj, ironprogrammer.
Merges [54789] to the 6.1 branch.
Fixes #56985.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54790 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 12:37:44 +00:00
Peter Wilson
a33bfeec92 Query: Prevent ID only queries erroring when starting the loop.
Ensure only full post objects are passed to `update_post_author_caches()` when called within `WP_Query::the_post()`. This prevents an error when starting the Loop for Queries initiated with a subset of fields or IDs only.

Props konyoldeath, dd32, lozula, TimothyBlynJacobs, spacedmonkey, mxbclang, peterwilsoncc.
Merges [54771] to the 6.1 branch.
Fixes #56948.



git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54784 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 02:20:47 +00:00
Peter Wilson
ca4684a6eb Posts, Post Types: Revert get_page_by_title()'s use of WP_Query.
Revert to legacy database query in `get_pages_by_title()`. Due to the lack of `orderby` clause in the previous database query, it is not possible to gain consistent results by converting the function to a `WP_Query` wrapper.

Reverts [54271, 54242, 54234].

Props Bjorn2404, 10upsimon, dilipbheda, mukesh27, spacedmonkey, TimothyBlynJacobs, rjasdfiii, stentibbing, pbiron, pento.
Merges [54782] to the 6.1 branch.
Fixes #57039, #56991.
See #57041.



git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54783 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-10 02:19:05 +00:00
Jonathan Desrosiers
3e49661f75 Coding Standards: Use consistent spelling for "cacheable" in WP_Query::get_posts().
Follow-up to [53941], [54768].

Props SergeyBiryukov.
Merges [57012] to the 6.1 branch.
See #57012.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54781 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-09 18:35:58 +00:00
Jonathan Desrosiers
c0f52496f7 Query: Bypass caching for filtered SELECTs.
Bypass caching within `WP_Query` when the `SELECT` clause has been modified via a filter. This prevents both cache key collisions and the returning of incomplete or unexpected results when the `SELECT` clause has been modified by an extender.

Props pypwalters, claytoncollie, johnwatkins0, TimothyBlynJacobs, costdev, spacedmonkey, peterwilsoncc.
Merges [54768] to the 6.1 branch.
Fixes #57012.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54780 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-09 18:33:01 +00:00
Jonathan Desrosiers
b818744dac Themes: Improve WP_Query call getting global styles.
Change `orderby` clause used within `WP_Theme_JSON_Resolver::get_user_data_from_wp_global_styles` to `date` to match the `WP_Query` documentation for the parameter.

Props miguelaxcar, johnbillion, JeffPaul, spacedmonkey, mxbclang, mukesh27.
Merges [54770] to the 6.1 branch.
Fixes #56900.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54779 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-09 16:30:47 +00:00
Jonathan Desrosiers
1d6507d75f Themes: Re-order valid link pseudo classes.
Re-order the link pseudo classes to follow the long term LoVe (F)HA rule when set via `theme.json`.

In order that the CSS cascade behaves in a predictable manner, it's recommended that the selectors follow the order `:visited`, `:focus`/`:hover`, `:active`. As order affects the specificity, this ensures the interaction states override the visited states. CSS specificity is really quite beautiful, although complex.

Props mikachan, sabernhardt, davidbaumwald, mukesh27, Mamaduka, desrosj, peterwilsoncc.
Fixes #56928.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54778 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-09 16:28:07 +00:00
Peter Wilson
bce11933a3 Query: Don't attempt caching if running a WP_User_Query before plugins_loaded.
In #55594 user meta caching was enabled by default when making a `WP_User_Query`. Previously, this was only enabled if a developer specifically queried for 'all_with_meta' 
fields. User meta caching is implemented using a pluggable function, `cache_users`. If a plugin runs a `WP_User_Query` before pluggable functions have been defined, this 
will now cause a fatal error.

In this commit, a `function_exists` check is introduced to avoid calling `cache_users` if it's not defined. Additionally, a `_doing_it_wrong` notice is issued if the 
`WP_User_Query::query` method is called before the 'plugins_loaded' hook.

Props carazo, subrataemfluence, oakesjosh, spacedmonkey, obenland, SergeyBiryukov, peterwilsoncc, TimothyBlynJacobs.
Merges [54766] to the 6.1 branch.
Fixes #56952.



git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54773 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-09 01:59:44 +00:00
Felix Arntz
2854053444 Editor: Improve frontend performance for get_default_block_editor_settings().
The `wp_max_upload_size()` function can be expensive to call, especially for large sites or multisites. For the frontend usage of `get_default_block_editor_settings()` knowing the allowed upload size is typically unnecessary.

This changeset adds a condition so that `wp_max_upload_size()` is only called if the current user can actually `upload_files`. It keeps the data present when it is actually needed while avoiding the execution overhead when it is not needed.

Props janthiel, Clorith, flixos90, spacedmonkey.
Merges [54769] to the 6.1 branch.
Fixes #56815.


git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54772 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-09 01:06:46 +00:00
Jonathan Desrosiers
7ef6e7b27a Fix: Category specific templates always appear as not found.
According to the docs in developer.wordpress.org/reference/classes/wp_term_query/query WP_Term_Query:->query( string|array $query ) returns WP_Term[]|int[]|string[]|string, and we were using an inexistent object property terms making it always empty and look like the taxonomy did not exist.

Props mamaduka, mikachan, ockham, franz00.
Merges [54751] to the 6.1 branch.
Fixes #56902.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54767 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-08 18:30:53 +00:00
Sergey Biryukov
7ecb5239ef Coding Standards: Revert [54752] from the 6.1 branch.
This was supposed to be committed to trunk.

See #56791.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54753 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-05 21:59:35 +00:00
Sergey Biryukov
a0484d23ef Coding Standards: Correct alignment in various files.
This fixes `Equals sign not aligned with surrounding statements` WPCS warnings, so that the output of `composer format` is clean.

Follow-up to [54445], [54476], [54494], [54522], [54652], [54687].

See #56791.


git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54752 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-05 17:28:48 +00:00
Jonathan Desrosiers
2a079983fa Twenty Twenty-One: Properly bump to version 1.7.
The theme version was missed in the relevant stylesheets in [54492].

This updates the last locations to allow 1.7 to be officially released.

Props @hellofromTonya, SergeyBiryukov.
Merges [54745] to the 6.1 branch.
See #56450.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54746 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-02 03:15:28 +00:00
David Baumwald
da00bc40fa Post WordPress 6.1 version bump.
The 6.1 branch is now 6.1.1-alpha.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54744 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-02 02:36:13 +00:00
David Baumwald
8fe0680442 WordPress 6.1.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54742 602fd350-edb4-49c9-b593-d223f7449a82
2022-11-02 00:01:31 +00:00
Sergey Biryukov
1033eed86d Upgrade/Install: Update $_old_files for 6.1.
Props davidbaumwald, SergeyBiryukov.
Reviewed by desrosj, SergeyBiryukov.
Merges [54730] to the 6.1 branch.
Fixes #56934.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54737 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-31 22:56:26 +00:00
Sergey Biryukov
2a6f14c7ad Post WordPress 6.1 RC6 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54736 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-31 22:10:34 +00:00
Sergey Biryukov
9f89020a0c WordPress 6.1 RC6.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54735 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-31 21:46:45 +00:00
Sergey Biryukov
ce2c3a902f Database: Revert [53575].
When using `'%%%s%%'` pattern with `$wpdb->prepare()`, it works on 6.0.3 but does not on 6.1-RC. Why? The inserted value is wrapped in quotes on 6.1-RC5 whereas it is not on <= 6.0.3.

With 6.1 final release tomorrow, more time is needed to further investigate and test. Reverting this changeset to restore the previous behavior.

This commit also adds a dataset for testing the `'%%%s%%'` pattern.

Props SergeyBiryukov, hellofromTonya, bernhard-reiter, desrosj, davidbaumwald, jorbin.
Reviewed by hellofromTonya, SergeyBiryukov.
Merges [54733] to the 6.1 branch.
Fixes #56933.
See #52506.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54734 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-31 20:43:56 +00:00
Sergey Biryukov
a3f37173b7 Tests: Temporarily skip WOFF file test on PHP 8.1.
A recent change to how WOFF files are processed in PHP 8.2 RC3 has caused a new test failure.

The tests was previously skipped on PHP 8.2, however, apparently after a `fileinfo` extension update, it started failing on PHP 8.1 too.

This commit adjusts the skipping condition to include PHP 8.1.

Follow-up to [54508], [54509].

Reviewed by desrosj, SergeyBiryukov.
Merges [54724] to the 6.1 branch.
See #56817.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54732 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-31 20:26:47 +00:00
Kelly Choyce-Dwan
40b79bfce5 Help/About: Add link to the 6.1 release video
Link the image and text to the new 6.1 release video on youtube. The video is currently private, but will be made public during the release party.

Props admwgn, critterverse, joen, annezazu, jpantani, laurlittle, cbringmann, kellychoffman, pablohoney, EidolonNight.
Reviewed by davidbaumwald.
Merges [54729] to the 6.1 branch.
See #56357.



git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54731 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-31 15:17:45 +00:00
David Baumwald
a6501f8b5a Post WordPress 6.1 RC5 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54715 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-28 16:47:17 +00:00
David Baumwald
d58ba4fa84 WordPress 6.1 RC5.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54714 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-28 16:11:27 +00:00
Anthony Burchell
70883c3285 Media: Reverts get_attached_file() changes for normalized Windows paths.
Based on feedback from network storage configurations there was a noticed slowdown due to the usage of the `path_join()` function. This needs more time to find a workaround.

Follow-up to [53934].
Props mreishus, SergeyBiryukov, desrosj, mikeschroder.
Reverts [53934] in the 6.1 Branch.
See #56924.


git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54713 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-28 15:28:59 +00:00
David Baumwald
4563d17bd9 Post WordPress 6.1 RC4 version bump.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54709 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-27 17:35:45 +00:00
David Baumwald
6ac008d0d0 WordPress 6.1 RC4.
git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54708 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-27 17:08:08 +00:00
David Baumwald
ec98d203ed Themes: Ensure custom global styles are imported properly.
This change removes caching of global styles for logged in users, allowing "wp_global_styles" custom post type to be imported completely, regardless of any previously cached data.  This change now relies on the lower-level native WP_Query cache invalidation methods for the global styles post type.

Follow-up to [52275], [54186].

Props anariel-design, bernhard-reiter, andrewserong, spacedmonkey, andraganescu, peterwilsoncc, oandregal, hellofromTonya.
Reviewed by hellofromTonya.
Merges [54706] to the 6.1 branch.
Fixes #56901.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54707 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-27 16:37:55 +00:00
Bernie Reiter
2d79025d58 Editor: Ensure global styles are rendered for third-party blocks.
This change ensures custom styles for all third-party blocks are rendered on the front end if assets are set to be loaded on a per-block basis.  Additionally, this change includes new unit tests to help prevent a similar bug in the future.

Props scruffian, aristath, poena, wildworks, ajlende, andraganescu, ndiego, gigitux, cbravobernal, ramonopoly, andrewserong, oandregal, hellofromTonya, davidbaumwald.
Merges [54703] to the 6.1 branch.
Fixes #56915.

git-svn-id: https://develop.svn.wordpress.org/branches/6.1@54705 602fd350-edb4-49c9-b593-d223f7449a82
2022-10-27 15:56:12 +00:00