Skip to content

Commit 27ccf19

Browse files
zaerlmatticbot
authored andcommitted
Updated package versions for automattic/wpcomsh
Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/9612074870 Upstream-Ref: Automattic/jetpack@37e2cc6
1 parent 7bda029 commit 27ccf19

File tree

16 files changed

+503
-646
lines changed

16 files changed

+503
-646
lines changed

CHANGELOG.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
# Changelog
22

3-
## 3.23.0-alpha - unreleased
4-
5-
This is an alpha version! The changes listed here are not final.
6-
3+
## 3.23.0 - 2024-06-21
74
### Added
8-
- New wpcomsh CLI command to fix PHP 7.4 plugin
9-
- Wpcomsh: Update plugin dependencies
5+
- New wpcomsh CLI command to fix PHP 7.4 plugin [#37966]
6+
- Wpcomsh: Update plugin dependencies [#37812]
107

118
### Changed
12-
- Bump lock files.
13-
- Site Visibility: Update link copy
9+
- Bump lock files. [#37870]
10+
- Site Visibility: Update link copy [#37909]
1411

1512
## 3.22.16 - 2024-06-17
1613
### Changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"wordpress/classic-editor-plugin": "1.5",
1414
"automattic/jetpack-config": "^2.0.3",
1515
"automattic/jetpack-post-list": "^0.6.2",
16-
"automattic/jetpack-mu-wpcom": "^5.36.0-alpha",
16+
"automattic/jetpack-mu-wpcom": "^5.36.0",
1717
"tubalmartin/cssmin": "^4.1"
1818
},
1919
"require-dev": {
@@ -123,7 +123,7 @@
123123
"composer/installers": true,
124124
"roots/wordpress-core-installer": true
125125
},
126-
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha"
126+
"autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0"
127127
},
128128
"extra": {
129129
"mirror-repo": "Automattic/wpcom-site-helper",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "@automattic/jetpack-wpcomsh",
44
"description": "A helper for connecting WordPress.com sites to external host infrastructure.",
55
"homepage": "https://jetpack.com",
6-
"version": "3.23.0-alpha",
6+
"version": "3.23.0",
77
"bugs": {
88
"url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh"
99
},

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
require_once __DIR__ . '/composer/autoload_real.php';
2424

25-
return ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha::getLoader();
25+
return ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0::getLoader();

vendor/automattic/jetpack-blaze/src/class-dashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ class Dashboard {
2121
*
2222
* @var string
2323
*/
24-
const PACKAGE_VERSION = '0.21.8';
24+
const PACKAGE_VERSION = '0.21.9';
2525

2626
/**
2727
* List of dependencies needed to render the dashboard in wp-admin.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '490b076190173a65d8da');
1+
<?php return array('dependencies' => array('react', 'wp-components', 'wp-compose', 'wp-data', 'wp-element', 'wp-i18n', 'wp-url'), 'version' => '71f14ae42588b9c8b35b');

vendor/automattic/jetpack-connection/dist/identity-crisis.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/automattic/jetpack-connection/dist/identity-crisis.rtl.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/automattic/jetpack-masterbar/src/class-main.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515
class Main {
1616

17-
const PACKAGE_VERSION = '0.2.0-alpha';
17+
const PACKAGE_VERSION = '0.2.0';
1818

1919
/**
2020
* Initializer.

vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Jetpack_Mu_Wpcom main class.
1414
*/
1515
class Jetpack_Mu_Wpcom {
16-
const PACKAGE_VERSION = '5.36.0-alpha';
16+
const PACKAGE_VERSION = '5.36.0';
1717
const PKG_DIR = __DIR__ . '/../';
1818
const BASE_DIR = __DIR__ . '/';
1919
const BASE_FILE = __FILE__;

vendor/automattic/jetpack-sync/src/class-package-version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class Package_Version {
1414

15-
const PACKAGE_VERSION = '3.1.2-alpha';
15+
const PACKAGE_VERSION = '3.1.2';
1616

1717
const PACKAGE_SLUG = 'sync';
1818

vendor/composer/autoload_real.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// autoload_real.php @generated by Composer
44

5-
class ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha
5+
class ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0
66
{
77
private static $loader;
88

@@ -24,17 +24,17 @@ public static function getLoader()
2424

2525
require __DIR__ . '/platform_check.php';
2626

27-
spl_autoload_register(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha', 'loadClassLoader'), true, true);
27+
spl_autoload_register(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0', 'loadClassLoader'), true, true);
2828
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
29-
spl_autoload_unregister(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha', 'loadClassLoader'));
29+
spl_autoload_unregister(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0', 'loadClassLoader'));
3030

3131
require __DIR__ . '/autoload_static.php';
32-
call_user_func(\Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha::getInitializer($loader));
32+
call_user_func(\Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0::getInitializer($loader));
3333

3434
$loader->setClassMapAuthoritative(true);
3535
$loader->register(true);
3636

37-
$filesToLoad = \Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha::$files;
37+
$filesToLoad = \Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0::$files;
3838
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
3939
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
4040
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;

vendor/composer/autoload_static.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace Composer\Autoload;
66

7-
class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha
7+
class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0
88
{
99
public static $files = array (
1010
'3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php',
@@ -402,9 +402,9 @@ class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha
402402
public static function getInitializer(ClassLoader $loader)
403403
{
404404
return \Closure::bind(function () use ($loader) {
405-
$loader->prefixLengthsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha::$prefixLengthsPsr4;
406-
$loader->prefixDirsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha::$prefixDirsPsr4;
407-
$loader->classMap = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0_alpha::$classMap;
405+
$loader->prefixLengthsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0::$prefixLengthsPsr4;
406+
$loader->prefixDirsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0::$prefixDirsPsr4;
407+
$loader->classMap = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ3_23_0::$classMap;
408408

409409
}, null, ClassLoader::class);
410410
}

0 commit comments

Comments
 (0)