From c60a9d92e25c58e99c725cbc263ea6e0ccb73286 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sun, 31 Oct 2021 20:28:01 +0000 Subject: [PATCH] Docs: Add a `@since` note to `WP_REST_Post_Types_Controller::get_item_schema()` for the `supports` and `visibility` properties. The `taxonomies` and `rest_base` properties were also added after the method was initially introduced, but that happened during the same release cycle, so they don't need a separate `@since` note. Follow-up to [38832], [39097], [39191], [39647], [51959]. See #53399. Built from https://develop.svn.wordpress.org/trunk@51961 git-svn-id: http://core.svn.wordpress.org/trunk@51550 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../rest-api/endpoints/class-wp-rest-post-types-controller.php | 2 ++ wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php index e2598ac89d..09b4e68bc0 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php @@ -268,6 +268,8 @@ class WP_REST_Post_Types_Controller extends WP_REST_Controller { * Retrieves the post type's schema, conforming to JSON Schema. * * @since 4.7.0 + * @since 4.8.0 The `supports` property was added. + * @since 5.9.0 The `visibility` property was added. * * @return array Item schema data. */ diff --git a/wp-includes/version.php b/wp-includes/version.php index bbd1304e92..3dbf1c5f9c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '5.9-alpha-51960'; +$wp_version = '5.9-alpha-51961'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.