External Libraries: Update the Moment library to version 2.29.4.
This is a minor bug fix release. Props dilipbheda. Fixes #56031. Built from https://develop.svn.wordpress.org/trunk@53725 git-svn-id: http://core.svn.wordpress.org/trunk@53284 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
81b7b229ed
commit
866abfda9f
|
@ -1,5 +1,5 @@
|
|||
//! moment.js
|
||||
//! version : 2.29.3
|
||||
//! version : 2.29.4
|
||||
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
||||
//! license : MIT
|
||||
//! momentjs.com
|
||||
|
@ -2454,7 +2454,7 @@
|
|||
function preprocessRFC2822(s) {
|
||||
// Remove comments and folding whitespace and replace multiple-spaces with a single space
|
||||
return s
|
||||
.replace(/\([^)]*\)|[\n\t]/g, ' ')
|
||||
.replace(/\([^()]*\)|[\n\t]/g, ' ')
|
||||
.replace(/(\s\s+)/g, ' ')
|
||||
.replace(/^\s\s*/, '')
|
||||
.replace(/\s\s*$/, '');
|
||||
|
@ -5635,7 +5635,7 @@
|
|||
|
||||
//! moment.js
|
||||
|
||||
hooks.version = '2.29.3';
|
||||
hooks.version = '2.29.4';
|
||||
|
||||
setHookCallback(createLocal);
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -106,7 +106,7 @@ function wp_default_packages_vendor( $scripts ) {
|
|||
'react' => '17.0.1',
|
||||
'react-dom' => '17.0.1',
|
||||
'regenerator-runtime' => '0.13.9',
|
||||
'moment' => '2.29.3',
|
||||
'moment' => '2.29.4',
|
||||
'lodash' => '4.17.19',
|
||||
'wp-polyfill-fetch' => '3.6.2',
|
||||
'wp-polyfill-formdata' => '4.0.10',
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.1-alpha-53724';
|
||||
$wp_version = '6.1-alpha-53725';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue