From 1050b47e063107e61feccfbe2e58e47c3120410e Mon Sep 17 00:00:00 2001 From: gziolo Date: Thu, 28 Sep 2023 08:35:23 +0000 Subject: [PATCH] General: Set the correct script version for `regenerator-runtime` Follow-up for [56710]. Brings back the version specified in the `package.json` file. Props ockham. See #59411. Built from https://develop.svn.wordpress.org/trunk@56739 git-svn-id: http://core.svn.wordpress.org/trunk@56251 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/script-loader.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/script-loader.php b/wp-includes/script-loader.php index 299f99815d..4f17461752 100644 --- a/wp-includes/script-loader.php +++ b/wp-includes/script-loader.php @@ -108,7 +108,7 @@ function wp_default_packages_vendor( $scripts ) { $vendor_scripts_versions = array( 'react' => '18.2.0', 'react-dom' => '18.2.0', - 'regenerator-runtime' => '0.13.11', + 'regenerator-runtime' => '0.14.0', 'moment' => '2.29.4', 'lodash' => '4.17.19', 'wp-polyfill-fetch' => '3.6.17', diff --git a/wp-includes/version.php b/wp-includes/version.php index e99cb19cd1..fe11cbcb0f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.4-beta1-56738'; +$wp_version = '6.4-beta1-56739'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.