From 2867dadfa7d6e9f05eb28bbf2bebcfd159d846b0 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 17 Aug 2020 01:42:05 +0000 Subject: [PATCH] REST API: Add uniqueItems as a permitted endpoint argument JSON Schema keyword. Support for the `uniqueItems` keyword was added in [48357], but wasn't included in the list of permitted keywords for `WP_REST_Controller::get_endpoint_args_for_item_schema()`. This prevented the keyword from being automatically supported if specified in a controller's item schema. Props TimothyBlynJacobs. Merges [48796] to the 5.5 branch. Fixes #51021. Built from https://develop.svn.wordpress.org/branches/5.5@48807 git-svn-id: http://core.svn.wordpress.org/branches/5.5@48569 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/rest-api/endpoints/class-wp-rest-controller.php | 1 + wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-controller.php index 0d1e85cbf1..44880aaec2 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-controller.php @@ -645,6 +645,7 @@ abstract class WP_REST_Controller { 'pattern', 'minItems', 'maxItems', + 'uniqueItems', ); foreach ( $schema_properties as $field_id => $params ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 08cdad1546..331be90ff6 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5.1-alpha-48806'; +$wp_version = '5.5.1-alpha-48807'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.