diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 78f37e9f4f..088fe9d07f 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -3899,6 +3899,8 @@ function wp_json_encode( $data, $options = 0, $depth = 512 ) { * * @see wp_json_encode() * + * @throws Exception If depth limit is reached. + * * @param mixed $data Variable (usually an array or object) to encode as JSON. * @param int $depth Maximum depth to walk through $data. Must be greater than 0. * @return mixed The sanitized data that shall be encoded to JSON. diff --git a/wp-includes/version.php b/wp-includes/version.php index 191e028be1..0af016956f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-47426'; +$wp_version = '5.5-alpha-47427'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.