From 5aac88fec298676ab4673f76634725a63963b593 Mon Sep 17 00:00:00 2001 From: allilevine Date: Fri, 23 Aug 2024 14:42:36 +0000 Subject: [PATCH] Updated package versions for automattic/wpcomsh Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10527620811 Upstream-Ref: Automattic/jetpack@48fca8c7d880437a4f17dbe947f0d5466e4926c5 --- CHANGELOG.md | 11 +- composer.json | 6 +- package.json | 2 +- vendor/autoload.php | 2 +- .../jetpack-admin-ui/src/class-admin-menu.php | 2 +- .../jetpack-blaze/src/class-dashboard.php | 2 +- .../src/class-jetpack-calypsoify.php | 2 +- .../src/class-main.php | 2 +- .../src/class-package-version.php | 2 +- .../src/class-ga-manager.php | 2 +- .../automattic/jetpack-ip/src/class-utils.php | 2 +- .../jetpack-jitm/src/class-jitm.php | 2 +- .../jetpack-masterbar/src/class-main.php | 2 +- .../src/class-jetpack-mu-wpcom.php | 2 +- .../jetpack-post-list/src/class-post-list.php | 2 +- .../jetpack-stats-admin/src/class-main.php | 2 +- .../src/class-package-version.php | 2 +- .../src/class-package-version.php | 2 +- .../src/class-scheduled-updates.php | 2 +- vendor/composer/autoload_real.php | 10 +- vendor/composer/autoload_static.php | 8 +- vendor/composer/installed.json | 1142 +++++++---------- vendor/composer/installed.php | 164 +-- wpcomsh.php | 4 +- 24 files changed, 612 insertions(+), 767 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 017d2553..50c78366 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,12 @@ # Changelog -## 5.6.0-alpha - unreleased - -This is an alpha version! The changes listed here are not final. - +## 5.6.0 - 2024-08-23 ### Added -- Added social share status feature +- Added social share status feature [#39023] ### Changed -- SSO: Automatic logic for Calypso users of classic sites -- Updated package dependencies. +- SSO: Automatic logic for Calypso users of classic sites [#38996] +- Updated package dependencies. [#39004] ## 5.5.0 - 2024-08-21 ### Changed diff --git a/composer.json b/composer.json index 45994a8e..56f9b302 100644 --- a/composer.json +++ b/composer.json @@ -12,8 +12,8 @@ "automattic/wc-calypso-bridge": "2.5.5", "wordpress/classic-editor-plugin": "1.5", "automattic/jetpack-config": "^2.0.4", - "automattic/jetpack-post-list": "^0.6.3-alpha", - "automattic/jetpack-mu-wpcom": "^5.58.0-alpha", + "automattic/jetpack-post-list": "^0.6.3", + "automattic/jetpack-mu-wpcom": "^5.58.0", "tubalmartin/cssmin": "^4.1" }, "require-dev": { @@ -120,7 +120,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/package.json b/package.json index 58970450..3f932a68 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.6.0-alpha", + "version": "5.6.0", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/vendor/autoload.php b/vendor/autoload.php index bd9eb2e6..a95d57cb 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -22,4 +22,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha::getLoader(); +return ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0::getLoader(); diff --git a/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php b/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php index 1f92f430..caa7ceed 100644 --- a/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php +++ b/vendor/automattic/jetpack-admin-ui/src/class-admin-menu.php @@ -13,7 +13,7 @@ */ class Admin_Menu { - const PACKAGE_VERSION = '0.4.3-alpha'; + const PACKAGE_VERSION = '0.4.3'; /** * Whether this class has been initialized diff --git a/vendor/automattic/jetpack-blaze/src/class-dashboard.php b/vendor/automattic/jetpack-blaze/src/class-dashboard.php index 417c7c09..980d526b 100644 --- a/vendor/automattic/jetpack-blaze/src/class-dashboard.php +++ b/vendor/automattic/jetpack-blaze/src/class-dashboard.php @@ -21,7 +21,7 @@ class Dashboard { * * @var string */ - const PACKAGE_VERSION = '0.22.7-alpha'; + const PACKAGE_VERSION = '0.22.7'; /** * List of dependencies needed to render the dashboard in wp-admin. diff --git a/vendor/automattic/jetpack-calypsoify/src/class-jetpack-calypsoify.php b/vendor/automattic/jetpack-calypsoify/src/class-jetpack-calypsoify.php index c738f6ce..6c66a2ec 100644 --- a/vendor/automattic/jetpack-calypsoify/src/class-jetpack-calypsoify.php +++ b/vendor/automattic/jetpack-calypsoify/src/class-jetpack-calypsoify.php @@ -15,7 +15,7 @@ */ class Jetpack_Calypsoify { - const PACKAGE_VERSION = '0.1.4-alpha'; + const PACKAGE_VERSION = '0.1.4'; /** * Singleton instance of `Jetpack_Calypsoify`. diff --git a/vendor/automattic/jetpack-classic-theme-helper/src/class-main.php b/vendor/automattic/jetpack-classic-theme-helper/src/class-main.php index 8e1bcf5b..778d3bfd 100644 --- a/vendor/automattic/jetpack-classic-theme-helper/src/class-main.php +++ b/vendor/automattic/jetpack-classic-theme-helper/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.5.2-alpha'; + const PACKAGE_VERSION = '0.5.2'; /** * Modules to include. diff --git a/vendor/automattic/jetpack-connection/src/class-package-version.php b/vendor/automattic/jetpack-connection/src/class-package-version.php index c6b0ecd8..9444c3ac 100644 --- a/vendor/automattic/jetpack-connection/src/class-package-version.php +++ b/vendor/automattic/jetpack-connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '2.12.4-alpha'; + const PACKAGE_VERSION = '2.12.4'; const PACKAGE_SLUG = 'connection'; diff --git a/vendor/automattic/jetpack-google-analytics/src/class-ga-manager.php b/vendor/automattic/jetpack-google-analytics/src/class-ga-manager.php index e85f9fd1..46be2075 100644 --- a/vendor/automattic/jetpack-google-analytics/src/class-ga-manager.php +++ b/vendor/automattic/jetpack-google-analytics/src/class-ga-manager.php @@ -18,7 +18,7 @@ */ class GA_Manager { - const PACKAGE_VERSION = '0.2.3-alpha'; + const PACKAGE_VERSION = '0.2.3'; /** * Jetpack_Google_Analytics singleton instance. diff --git a/vendor/automattic/jetpack-ip/src/class-utils.php b/vendor/automattic/jetpack-ip/src/class-utils.php index 15c9ad8e..a062d775 100644 --- a/vendor/automattic/jetpack-ip/src/class-utils.php +++ b/vendor/automattic/jetpack-ip/src/class-utils.php @@ -12,7 +12,7 @@ */ class Utils { - const PACKAGE_VERSION = '0.2.3-alpha'; + const PACKAGE_VERSION = '0.2.3'; /** * Get the current user's IP address. diff --git a/vendor/automattic/jetpack-jitm/src/class-jitm.php b/vendor/automattic/jetpack-jitm/src/class-jitm.php index af15d08e..c8da570a 100644 --- a/vendor/automattic/jetpack-jitm/src/class-jitm.php +++ b/vendor/automattic/jetpack-jitm/src/class-jitm.php @@ -20,7 +20,7 @@ */ class JITM { - const PACKAGE_VERSION = '3.1.18-alpha'; + const PACKAGE_VERSION = '3.1.18'; /** * The configuration method that is called from the jetpack-config package. diff --git a/vendor/automattic/jetpack-masterbar/src/class-main.php b/vendor/automattic/jetpack-masterbar/src/class-main.php index 94f76da7..21427bea 100644 --- a/vendor/automattic/jetpack-masterbar/src/class-main.php +++ b/vendor/automattic/jetpack-masterbar/src/class-main.php @@ -14,7 +14,7 @@ */ class Main { - const PACKAGE_VERSION = '0.8.0-alpha'; + const PACKAGE_VERSION = '0.8.0'; /** * Initializer. diff --git a/vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 62a30ff1..2ad450f8 100644 --- a/vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -15,7 +15,7 @@ * Jetpack_Mu_Wpcom main class. */ class Jetpack_Mu_Wpcom { - const PACKAGE_VERSION = '5.58.0-alpha'; + const PACKAGE_VERSION = '5.58.0'; const PKG_DIR = __DIR__ . '/../'; const BASE_DIR = __DIR__ . '/'; const BASE_FILE = __FILE__; diff --git a/vendor/automattic/jetpack-post-list/src/class-post-list.php b/vendor/automattic/jetpack-post-list/src/class-post-list.php index 8e14d3cb..d2f8daff 100644 --- a/vendor/automattic/jetpack-post-list/src/class-post-list.php +++ b/vendor/automattic/jetpack-post-list/src/class-post-list.php @@ -15,7 +15,7 @@ */ class Post_List { - const PACKAGE_VERSION = '0.6.3-alpha'; + const PACKAGE_VERSION = '0.6.3'; const FEATURE = 'enhanced_post_list'; /** diff --git a/vendor/automattic/jetpack-stats-admin/src/class-main.php b/vendor/automattic/jetpack-stats-admin/src/class-main.php index 96ad0ea4..c7d8cae9 100644 --- a/vendor/automattic/jetpack-stats-admin/src/class-main.php +++ b/vendor/automattic/jetpack-stats-admin/src/class-main.php @@ -22,7 +22,7 @@ class Main { /** * Stats version. */ - const VERSION = '0.21.1-alpha'; + const VERSION = '0.21.1'; /** * Singleton Main instance. diff --git a/vendor/automattic/jetpack-stats/src/class-package-version.php b/vendor/automattic/jetpack-stats/src/class-package-version.php index 5794ec9b..35e9ebcf 100644 --- a/vendor/automattic/jetpack-stats/src/class-package-version.php +++ b/vendor/automattic/jetpack-stats/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '0.13.1-alpha'; + const PACKAGE_VERSION = '0.13.1'; const PACKAGE_SLUG = 'stats'; diff --git a/vendor/automattic/jetpack-sync/src/class-package-version.php b/vendor/automattic/jetpack-sync/src/class-package-version.php index 7400615c..6c35a9db 100644 --- a/vendor/automattic/jetpack-sync/src/class-package-version.php +++ b/vendor/automattic/jetpack-sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.7.1-alpha'; + const PACKAGE_VERSION = '3.7.1'; const PACKAGE_SLUG = 'sync'; diff --git a/vendor/automattic/scheduled-updates/src/class-scheduled-updates.php b/vendor/automattic/scheduled-updates/src/class-scheduled-updates.php index 35165b9f..b9e421ea 100644 --- a/vendor/automattic/scheduled-updates/src/class-scheduled-updates.php +++ b/vendor/automattic/scheduled-updates/src/class-scheduled-updates.php @@ -20,7 +20,7 @@ class Scheduled_Updates { * * @var string */ - const PACKAGE_VERSION = '0.13.2-alpha'; + const PACKAGE_VERSION = '0.13.2'; /** * The cron event hook for the scheduled plugins update. diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index e4e19b54..5b6e01e9 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha +class ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0 { private static $loader; @@ -24,17 +24,17 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0::$files; $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 44ac85df..6ce1a563 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha +class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0 { public static $files = array ( '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php', @@ -517,9 +517,9 @@ class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0_alpha::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_0::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index f5bd4610..dfe0138f 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -76,12 +76,18 @@ }, { "name": "automattic/jetpack-a8c-mc-stats", - "version": "2.0.2-alpha.1724273335", - "version_normalized": "2.0.2.0-alpha1724273335", + "version": "v2.0.2", + "version_normalized": "2.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git", + "reference": "5753860f28e1a8629b3c6ab481c1ab75e38a244f" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-a8c-mc-stats", - "reference": "f00be714f9ea6b28d49e5196dd13dd664ca0095a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/5753860f28e1a8629b3c6ab481c1ab75e38a244f", + "reference": "5753860f28e1a8629b3c6ab481c1ab75e38a244f", + "shasum": "" }, "require": { "php": ">=7.0" @@ -93,6 +99,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:10+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -110,44 +117,44 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-a8c-mc-stats/tree/v2.0.2" }, "install-path": "../automattic/jetpack-a8c-mc-stats" }, { "name": "automattic/jetpack-admin-ui", - "version": "0.4.3-alpha.1724273335", - "version_normalized": "0.4.3.0-alpha1724273335", + "version": "v0.4.3", + "version_normalized": "0.4.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-admin-ui.git", + "reference": "83e500408e8542b108987b54d845ecb47b8e36b8" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "58f37713c45789fb89a88befbf91521b12107b0c" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/83e500408e8542b108987b54d845ecb47b8e36b8", + "reference": "83e500408e8542b108987b54d845ecb47b8e36b8", + "shasum": "" }, "require": { "php": ">=7.0" }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", - "automattic/jetpack-logo": "^2.0.4-alpha", + "automattic/jetpack-logo": "^2.0.4", "automattic/wordbless": "dev-master", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:39+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -169,40 +176,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Generic Jetpack wp-admin UI elements", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.4.3" }, "install-path": "../automattic/jetpack-admin-ui" }, { "name": "automattic/jetpack-assets", - "version": "2.3.4-alpha.1724273335", - "version_normalized": "2.3.4.0-alpha1724273335", + "version": "v2.3.4", + "version_normalized": "2.3.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-assets.git", + "reference": "46ca5819bdc37587f7bfbab45168fbc3aea9facb" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "913fa76caeb5d1314306842df9a2c630e48f8515" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/46ca5819bdc37587f7bfbab45168fbc3aea9facb", + "reference": "46ca5819bdc37587f7bfbab45168fbc3aea9facb", + "shasum": "" }, "require": { - "automattic/jetpack-constants": "^2.0.4-alpha", + "automattic/jetpack-constants": "^2.0.4", "php": ">=7.0" }, "require-dev": { @@ -214,6 +214,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:11+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -235,49 +236,39 @@ "src/" ] }, - "scripts": { - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "pnpm run build-production" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-js": [ - "pnpm run test" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Asset management utilities for Jetpack ecosystem packages", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-assets/tree/v2.3.4" }, "install-path": "../automattic/jetpack-assets" }, { "name": "automattic/jetpack-blaze", - "version": "0.22.7-alpha.1724273335", - "version_normalized": "0.22.7.0-alpha1724273335", + "version": "v0.22.7", + "version_normalized": "0.22.7.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-blaze.git", + "reference": "49710fc4b0b6505a355afa16d4b67b0474e8eb3c" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-blaze", - "reference": "539a977e99d2d8e7faefcd7cd16a97c853d7b303" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-blaze/zipball/49710fc4b0b6505a355afa16d4b67b0474e8eb3c", + "reference": "49710fc4b0b6505a355afa16d4b67b0474e8eb3c", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.4-alpha", - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-constants": "^2.0.4-alpha", - "automattic/jetpack-plans": "^0.4.8-alpha", - "automattic/jetpack-redirect": "^2.0.3-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", - "automattic/jetpack-sync": "^3.7.1-alpha", + "automattic/jetpack-assets": "^2.3.4", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-constants": "^2.0.4", + "automattic/jetpack-plans": "^0.4.8", + "automattic/jetpack-redirect": "^2.0.3", + "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-sync": "^3.7.1", "php": ">=7.0" }, "require-dev": { @@ -288,6 +279,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:30:00+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -309,50 +301,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Attract high-quality traffic to your site using Blaze.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-blaze/tree/v0.22.7" }, "install-path": "../automattic/jetpack-blaze" }, { "name": "automattic/jetpack-blocks", - "version": "2.0.5-alpha.1724273335", - "version_normalized": "2.0.5.0-alpha1724273335", + "version": "v2.0.5", + "version_normalized": "2.0.5.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-blocks.git", + "reference": "3ceb140bf5f4262bcd6ed9d3fb8fe9f09f0f2596" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-blocks", - "reference": "719cb94d0744f70194be630fe54eea5e537e5639" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-blocks/zipball/3ceb140bf5f4262bcd6ed9d3fb8fe9f09f0f2596", + "reference": "3ceb140bf5f4262bcd6ed9d3fb8fe9f09f0f2596", + "shasum": "" }, "require": { - "automattic/jetpack-constants": "^2.0.4-alpha", + "automattic/jetpack-constants": "^2.0.4", "php": ">=7.0" }, "require-dev": { @@ -364,6 +339,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:40+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -381,41 +357,34 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Register and manage blocks within a plugin. Used to manage block registration, enqueues, and more.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-blocks/tree/v2.0.5" }, "install-path": "../automattic/jetpack-blocks" }, { "name": "automattic/jetpack-calypsoify", - "version": "0.1.4-alpha.1724273335", - "version_normalized": "0.1.4.0-alpha1724273335", + "version": "v0.1.4", + "version_normalized": "0.1.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-calypsoify.git", + "reference": "fab2122e2959cc2099c6df636dc20c614cba165b" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-calypsoify", - "reference": "0a57dc450268743f4e320064124291b5e4e21c9b" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-calypsoify/zipball/fab2122e2959cc2099c6df636dc20c614cba165b", + "reference": "fab2122e2959cc2099c6df636dc20c614cba165b", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.4-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-assets": "^2.3.4", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -425,6 +394,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:24+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -446,40 +416,33 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Calypsoify is designed to make sure specific wp-admin pages include navigation that prioritizes the Calypso navigation experience.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-calypsoify/tree/v0.1.4" }, "install-path": "../automattic/jetpack-calypsoify" }, { "name": "automattic/jetpack-classic-theme-helper", - "version": "0.5.2-alpha.1724273335", - "version_normalized": "0.5.2.0-alpha1724273335", + "version": "v0.5.2", + "version_normalized": "0.5.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-classic-theme-helper.git", + "reference": "b1bc138ed844d42327822a507a8f8d6d7fd586c5" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-classic-theme-helper", - "reference": "257ea74f748ce65539d75bf5c1779b8f01ee4fae" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-classic-theme-helper/zipball/b1bc138ed844d42327822a507a8f8d6d7fd586c5", + "reference": "b1bc138ed844d42327822a507a8f8d6d7fd586c5", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.4-alpha", + "automattic/jetpack-assets": "^2.3.4", "php": ">=7.0" }, "require-dev": { @@ -490,6 +453,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:27+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -511,53 +475,41 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Features used with classic themes", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-classic-theme-helper/tree/v0.5.2" }, "install-path": "../automattic/jetpack-classic-theme-helper" }, { "name": "automattic/jetpack-compat", - "version": "3.0.2", + "version": "v3.0.2", "version_normalized": "3.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-compat.git", + "reference": "b7c25cceadac59833ebd58e1877cb5b6b93b8fd5" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-compat", - "reference": "4b605b7058ca4e2451060dfb8c4b86dfe3fc60b0" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-compat/zipball/b7c25cceadac59833ebd58e1877cb5b6b93b8fd5", + "reference": "b7c25cceadac59833ebd58e1877cb5b6b93b8fd5", + "shasum": "" }, "require": { "php": ">=7.0" }, "require-dev": { - "automattic/jetpack-changelogger": "^4.2.6" + "automattic/jetpack-changelogger": "^4.2.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-04-25T07:24:07+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -571,29 +523,36 @@ } }, "installation-source": "dist", + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Compatibility layer with previous versions of Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-compat/tree/v3.0.2" }, "install-path": "../automattic/jetpack-compat" }, { "name": "automattic/jetpack-config", - "version": "2.0.4", + "version": "v2.0.4", "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-config.git", + "reference": "9f075c81bae6fd638e0b3183612cda5cc9e01e06" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "c5396eb14194a921ff60c1e0447d0fe706b24c74" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/9f075c81bae6fd638e0b3183612cda5cc9e01e06", + "reference": "9f075c81bae6fd638e0b3183612cda5cc9e01e06", + "shasum": "" }, "require": { "php": ">=7.0" }, "require-dev": { - "automattic/jetpack-changelogger": "^4.2.6", + "automattic/jetpack-changelogger": "^4.2.4", "automattic/jetpack-connection": "@dev", "automattic/jetpack-import": "@dev", "automattic/jetpack-jitm": "@dev", @@ -611,6 +570,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-06-24T19:22:07+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -646,32 +606,39 @@ "src/" ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-config/tree/v2.0.4" }, "install-path": "../automattic/jetpack-config" }, { "name": "automattic/jetpack-connection", - "version": "2.12.4-alpha.1724324484", - "version_normalized": "2.12.4.0-alpha1724324484", + "version": "v2.12.4", + "version_normalized": "2.12.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-connection.git", + "reference": "35dd5b89b9936555ac185e83a489f41655974e70" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "2edde2434d6b1c7014c83b090225083d133d1bb1" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/35dd5b89b9936555ac185e83a489f41655974e70", + "reference": "35dd5b89b9936555ac185e83a489f41655974e70", + "shasum": "" }, "require": { - "automattic/jetpack-a8c-mc-stats": "^2.0.2-alpha", - "automattic/jetpack-admin-ui": "^0.4.3-alpha", - "automattic/jetpack-assets": "^2.3.4-alpha", - "automattic/jetpack-constants": "^2.0.4-alpha", - "automattic/jetpack-redirect": "^2.0.3-alpha", - "automattic/jetpack-roles": "^2.0.3-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-a8c-mc-stats": "^2.0.2", + "automattic/jetpack-admin-ui": "^0.4.3", + "automattic/jetpack-assets": "^2.3.4", + "automattic/jetpack-constants": "^2.0.4", + "automattic/jetpack-redirect": "^2.0.3", + "automattic/jetpack-roles": "^2.0.3", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -683,6 +650,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:32+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -713,43 +681,30 @@ "src/identity-crisis" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to connect to the Jetpack infrastructure", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-connection/tree/v2.12.4" }, "install-path": "../automattic/jetpack-connection" }, { "name": "automattic/jetpack-constants", - "version": "2.0.4-alpha.1724273335", - "version_normalized": "2.0.4.0-alpha1724273335", + "version": "v2.0.4", + "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-constants.git", + "reference": "f6958c313a34c5e92171c45a57d9dc978e5975ed" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "59fbf69c114c626dad99513756050c7b00214f1b" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/f6958c313a34c5e92171c45a57d9dc978e5975ed", + "reference": "f6958c313a34c5e92171c45a57d9dc978e5975ed", + "shasum": "" }, "require": { "php": ">=7.0" @@ -762,6 +717,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:14+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -779,31 +735,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A wrapper for defining constants in a more testable way.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-constants/tree/v2.0.4" }, "install-path": "../automattic/jetpack-constants" }, { "name": "automattic/jetpack-device-detection", - "version": "2.1.4-alpha.1724273335", - "version_normalized": "2.1.4.0-alpha1724273335", + "version": "v2.1.4", + "version_normalized": "2.1.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-device-detection.git", + "reference": "a59d71b55184bfd67a5b43f2df62c74ea6154b05" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "f045eecbf5e5325194ee929b005af58b5de149f0" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-device-detection/zipball/a59d71b55184bfd67a5b43f2df62c74ea6154b05", + "reference": "a59d71b55184bfd67a5b43f2df62c74ea6154b05", + "shasum": "" }, "require": { "php": ">=7.0" @@ -815,6 +770,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:19+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -832,34 +788,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A way to detect device types based on User-Agent header.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-device-detection/tree/v2.1.4" }, "install-path": "../automattic/jetpack-device-detection" }, { "name": "automattic/jetpack-google-analytics", - "version": "0.2.3-alpha.1724273335", - "version_normalized": "0.2.3.0-alpha1724273335", + "version": "v0.2.3", + "version_normalized": "0.2.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-google-analytics.git", + "reference": "44d20f1786df7678b692a577bd7f9f24ba5a4cc6" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-google-analytics", - "reference": "9d38246eed6a5f356ba3b4de965e9f228468fd62" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-google-analytics/zipball/44d20f1786df7678b692a577bd7f9f24ba5a4cc6", + "reference": "44d20f1786df7678b692a577bd7f9f24ba5a4cc6", + "shasum": "" }, "require": { - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -870,6 +825,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:47+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -891,43 +847,30 @@ "src/" ] }, - "scripts": { - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Set up Google Analytics without touching a line of code.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-google-analytics/tree/v0.2.3" }, "install-path": "../automattic/jetpack-google-analytics" }, { "name": "automattic/jetpack-ip", - "version": "0.2.3-alpha.1724273335", - "version_normalized": "0.2.3.0-alpha1724273335", + "version": "v0.2.3", + "version_normalized": "0.2.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-ip.git", + "reference": "f7a42b1603a24775c6f20eef2ac5cba3d6b37194" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "604c4d50d2167a4311f6d404571353cd723fa153" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-ip/zipball/f7a42b1603a24775c6f20eef2ac5cba3d6b37194", + "reference": "f7a42b1603a24775c6f20eef2ac5cba3d6b37194", + "shasum": "" }, "require": { "php": ">=7.0" @@ -940,6 +883,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:05+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -961,40 +905,39 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities for working with IP addresses.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-ip/tree/v0.2.3" }, "install-path": "../automattic/jetpack-ip" }, { "name": "automattic/jetpack-jitm", - "version": "3.1.18-alpha.1724273335", - "version_normalized": "3.1.18.0-alpha1724273335", + "version": "v3.1.18", + "version_normalized": "3.1.18.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-jitm.git", + "reference": "a175b440e40c9e7e1eb27584682e5da8cf1810ec" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "aab0356ecb6200ff7f1b1416c97469b2d0a28dc6" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-jitm/zipball/a175b440e40c9e7e1eb27584682e5da8cf1810ec", + "reference": "a175b440e40c9e7e1eb27584682e5da8cf1810ec", + "shasum": "" }, "require": { - "automattic/jetpack-a8c-mc-stats": "^2.0.2-alpha", - "automattic/jetpack-assets": "^2.3.4-alpha", - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-device-detection": "^2.1.4-alpha", - "automattic/jetpack-logo": "^2.0.4-alpha", - "automattic/jetpack-redirect": "^2.0.3-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-a8c-mc-stats": "^2.0.2", + "automattic/jetpack-assets": "^2.3.4", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-device-detection": "^2.1.4", + "automattic/jetpack-logo": "^2.0.4", + "automattic/jetpack-redirect": "^2.0.3", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -1005,6 +948,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:57+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1026,41 +970,30 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Just in time messages for Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-jitm/tree/v3.1.18" }, "install-path": "../automattic/jetpack-jitm" }, { "name": "automattic/jetpack-logo", - "version": "2.0.4-alpha.1724273335", - "version_normalized": "2.0.4.0-alpha1724273335", + "version": "v2.0.4", + "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-logo.git", + "reference": "6047525955b12ac8654ac4544e0b79deaed31fa2" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "daea2c90a384394ae5854e8409420a3f4d69212e" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/6047525955b12ac8654ac4544e0b79deaed31fa2", + "reference": "6047525955b12ac8654ac4544e0b79deaed31fa2", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1072,6 +1005,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:12+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1089,47 +1023,46 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A logo for Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-logo/tree/v2.0.4" }, "install-path": "../automattic/jetpack-logo" }, { "name": "automattic/jetpack-masterbar", - "version": "0.8.0-alpha.1724395378", - "version_normalized": "0.8.0.0-alpha1724395378", + "version": "v0.8.0", + "version_normalized": "0.8.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-masterbar.git", + "reference": "c7ab6d9a3a299eab067fcadd9539bc7168bf150b" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-masterbar", - "reference": "4f2d6056c701c1cfa31a0aeab90ada22ee3d2495" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-masterbar/zipball/c7ab6d9a3a299eab067fcadd9539bc7168bf150b", + "reference": "c7ab6d9a3a299eab067fcadd9539bc7168bf150b", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.4-alpha", - "automattic/jetpack-blaze": "^0.22.7-alpha", + "automattic/jetpack-assets": "^2.3.4", + "automattic/jetpack-blaze": "^0.22.7", "automattic/jetpack-compat": "^3.0.2", - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-device-detection": "^2.1.4-alpha", - "automattic/jetpack-jitm": "^3.1.18-alpha", - "automattic/jetpack-logo": "^2.0.4-alpha", - "automattic/jetpack-plans": "^0.4.8-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-device-detection": "^2.1.4", + "automattic/jetpack-jitm": "^3.1.18", + "automattic/jetpack-logo": "^2.0.4", + "automattic/jetpack-plans": "^0.4.8", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", - "automattic/patchwork-redefine-exit": "^1.0.1-alpha", + "automattic/patchwork-redefine-exit": "^1.0.1", "automattic/wordbless": "dev-master", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "^1.1.1" @@ -1137,6 +1070,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:30:08+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1158,58 +1092,44 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "pnpm run build-production", - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-masterbar/tree/v0.8.0" }, "install-path": "../automattic/jetpack-masterbar" }, { "name": "automattic/jetpack-mu-wpcom", - "version": "5.58.0-alpha.1724422445", - "version_normalized": "5.58.0.0-alpha1724422445", + "version": "v5.58.0", + "version_normalized": "5.58.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-mu-wpcom.git", + "reference": "9f412d5506a7be03392a0c49ea9a71bec404addd" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-mu-wpcom", - "reference": "57ced2cb6064a295b3fb8b60d61ef847dbd1b8e9" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-mu-wpcom/zipball/9f412d5506a7be03392a0c49ea9a71bec404addd", + "reference": "9f412d5506a7be03392a0c49ea9a71bec404addd", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.4-alpha", - "automattic/jetpack-blocks": "^2.0.5-alpha", - "automattic/jetpack-calypsoify": "^0.1.4-alpha", - "automattic/jetpack-classic-theme-helper": "^0.5.2-alpha", + "automattic/jetpack-assets": "^2.3.4", + "automattic/jetpack-blocks": "^2.0.5", + "automattic/jetpack-calypsoify": "^0.1.4", + "automattic/jetpack-classic-theme-helper": "^0.5.2", "automattic/jetpack-compat": "^3.0.2", - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-google-analytics": "^0.2.3-alpha", - "automattic/jetpack-masterbar": "^0.8.0-alpha", - "automattic/jetpack-redirect": "^2.0.3-alpha", - "automattic/jetpack-stats-admin": "^0.21.1-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", - "automattic/scheduled-updates": "^0.13.2-alpha", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-google-analytics": "^0.2.3", + "automattic/jetpack-masterbar": "^0.8.0", + "automattic/jetpack-redirect": "^2.0.3", + "automattic/jetpack-stats-admin": "^0.21.1", + "automattic/jetpack-status": "^3.3.4", + "automattic/scheduled-updates": "^0.13.2", "php": ">=7.0", "scssphp/scssphp": "1.12.0" }, @@ -1221,6 +1141,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:30:14+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/jetpack-mu-wpcom", @@ -1242,43 +1163,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-production": [ - "pnpm run build-production-js" - ], - "build-development": [ - "pnpm run build-js" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Enhances your site with features powered by WordPress.com", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-mu-wpcom/tree/v5.58.0" }, "install-path": "../automattic/jetpack-mu-wpcom" }, { "name": "automattic/jetpack-password-checker", - "version": "0.3.2-alpha.1724273335", - "version_normalized": "0.3.2.0-alpha1724273335", + "version": "v0.3.2", + "version_normalized": "0.3.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-password-checker.git", + "reference": "bdf70591123932112e447e295d7f174b5c0e3a44" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "5a5b7523f0d674dd79d6feaf3a59b3abc2e190b2" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/bdf70591123932112e447e295d7f174b5c0e3a44", + "reference": "bdf70591123932112e447e295d7f174b5c0e3a44", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1291,6 +1199,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:17+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1309,51 +1218,45 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Password Checker.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-password-checker/tree/v0.3.2" }, "install-path": "../automattic/jetpack-password-checker" }, { "name": "automattic/jetpack-plans", - "version": "0.4.8-alpha.1724273335", - "version_normalized": "0.4.8.0-alpha1724273335", + "version": "v0.4.8", + "version_normalized": "0.4.8.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plans.git", + "reference": "2ab36b9106e8193cc7f1d2c56c8d655866bc6659" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "7a6b1f0e26362f2f76be6f74fba41671e5b26b46" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plans/zipball/2ab36b9106e8193cc7f1d2c56c8d655866bc6659", + "reference": "2ab36b9106e8193cc7f1d2c56c8d655866bc6659", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^2.12.4-alpha", + "automattic/jetpack-connection": "^2.12.4", "php": ">=7.0" }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-status": "^3.3.4", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:33+00:00", "type": "library", "extra": { "autotagger": true, @@ -1371,46 +1274,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Fetch information about Jetpack Plans from wpcom", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-plans/tree/v0.4.8" }, "install-path": "../automattic/jetpack-plans" }, { "name": "automattic/jetpack-post-list", - "version": "0.6.3-alpha.1724273335", - "version_normalized": "0.6.3.0-alpha1724273335", + "version": "v0.6.3", + "version_normalized": "0.6.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-post-list.git", + "reference": "66a90d6978e7e50f94204d9da3fa9f4a870d841d" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-post-list", - "reference": "7e3615414ab20770533eb04cd52f6fb9ba0194e9" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-post-list/zipball/66a90d6978e7e50f94204d9da3fa9f4a870d841d", + "reference": "66a90d6978e7e50f94204d9da3fa9f4a870d841d", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.4-alpha", + "automattic/jetpack-assets": "^2.3.4", "php": ">=7.0" }, "require-dev": { @@ -1421,6 +1311,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:12+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1442,40 +1333,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Enhance the classic view of the Admin section of your WordPress site", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-post-list/tree/v0.6.3" }, "install-path": "../automattic/jetpack-post-list" }, { "name": "automattic/jetpack-redirect", - "version": "2.0.3-alpha.1724273335", - "version_normalized": "2.0.3.0-alpha1724273335", + "version": "v2.0.3", + "version_normalized": "2.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-redirect.git", + "reference": "2c049bb08f736dc0dbafac7eaebea6f97cf8019e" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "05db681c1a60bc2eb6116cbb6c04fde3a520fba8" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/2c049bb08f736dc0dbafac7eaebea6f97cf8019e", + "reference": "2c049bb08f736dc0dbafac7eaebea6f97cf8019e", + "shasum": "" }, "require": { - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -1486,6 +1370,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:46+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1503,31 +1388,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-redirect/tree/v2.0.3" }, "install-path": "../automattic/jetpack-redirect" }, { "name": "automattic/jetpack-roles", - "version": "2.0.3-alpha.1724273335", - "version_normalized": "2.0.3.0-alpha1724273335", + "version": "v2.0.3", + "version_normalized": "2.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-roles.git", + "reference": "32e45299a6ff93de0b1f4c71e6669f15917220fb" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "64a564e118a899037f7b0270d9fb4766b3fdab07" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/32e45299a6ff93de0b1f4c71e6669f15917220fb", + "reference": "32e45299a6ff93de0b1f4c71e6669f15917220fb", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1540,6 +1424,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:15+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1557,36 +1442,35 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities, related with user roles and capabilities.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-roles/tree/v2.0.3" }, "install-path": "../automattic/jetpack-roles" }, { "name": "automattic/jetpack-stats", - "version": "0.13.1-alpha.1724273335", - "version_normalized": "0.13.1.0-alpha1724273335", + "version": "v0.13.1", + "version_normalized": "0.13.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-stats.git", + "reference": "7c97787a47ed094827fa3ccb15256b33aadf05bb" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "2ee02115608d738438fef09e619b6d8fd9d2e14e" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-stats/zipball/7c97787a47ed094827fa3ccb15256b33aadf05bb", + "reference": "7c97787a47ed094827fa3ccb15256b33aadf05bb", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-constants": "^2.0.4-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-constants": "^2.0.4", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -1597,6 +1481,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:35+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1618,45 +1503,38 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Collect valuable traffic stats and insights.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-stats/tree/v0.13.1" }, "install-path": "../automattic/jetpack-stats" }, { "name": "automattic/jetpack-stats-admin", - "version": "0.21.1-alpha.1724273335", - "version_normalized": "0.21.1.0-alpha1724273335", + "version": "v0.21.1", + "version_normalized": "0.21.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-stats-admin.git", + "reference": "2b2fb042bb3480a46419bbd3c3c192ec91c73f77" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-stats-admin", - "reference": "0f3cfbdd02a219270cfcdab02e502a377517c9b5" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-stats-admin/zipball/2b2fb042bb3480a46419bbd3c3c192ec91c73f77", + "reference": "2b2fb042bb3480a46419bbd3c3c192ec91c73f77", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-constants": "^2.0.4-alpha", - "automattic/jetpack-jitm": "^3.1.18-alpha", - "automattic/jetpack-plans": "^0.4.8-alpha", - "automattic/jetpack-stats": "^0.13.1-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-constants": "^2.0.4", + "automattic/jetpack-jitm": "^3.1.18", + "automattic/jetpack-plans": "^0.4.8", + "automattic/jetpack-stats": "^0.13.1", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { @@ -1667,6 +1545,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:58+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1685,52 +1564,39 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Stats Dashboard", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-stats-admin/tree/v0.21.1" }, "install-path": "../automattic/jetpack-stats-admin" }, { "name": "automattic/jetpack-status", - "version": "3.3.4-alpha.1724273335", - "version_normalized": "3.3.4.0-alpha1724273335", + "version": "v3.3.4", + "version_normalized": "3.3.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-status.git", + "reference": "cf023b164ded674d66998b5b5870a3b6cf26679a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "2d4615588bf8951ee733aa1884dcfee2589f9763" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/cf023b164ded674d66998b5b5870a3b6cf26679a", + "reference": "cf023b164ded674d66998b5b5870a3b6cf26679a", + "shasum": "" }, "require": { - "automattic/jetpack-constants": "^2.0.4-alpha", + "automattic/jetpack-constants": "^2.0.4", "php": ">=7.0" }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", "automattic/jetpack-connection": "@dev", - "automattic/jetpack-ip": "^0.2.3-alpha", + "automattic/jetpack-ip": "^0.2.3", "automattic/jetpack-plans": "@dev", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "^1.1.1" @@ -1738,6 +1604,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:43+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1761,51 +1628,51 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-status/tree/v3.3.4" }, "install-path": "../automattic/jetpack-status" }, { "name": "automattic/jetpack-sync", - "version": "3.7.1-alpha.1724273335", - "version_normalized": "3.7.1.0-alpha1724273335", + "version": "v3.7.1", + "version_normalized": "3.7.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-sync.git", + "reference": "225421a1e6e1111fc269ff159c5855c9442ffe00" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "058baa55446aa56abbe9983bd7bd3a9575ca939c" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/225421a1e6e1111fc269ff159c5855c9442ffe00", + "reference": "225421a1e6e1111fc269ff159c5855c9442ffe00", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-constants": "^2.0.4-alpha", - "automattic/jetpack-ip": "^0.2.3-alpha", - "automattic/jetpack-password-checker": "^0.3.2-alpha", - "automattic/jetpack-roles": "^2.0.3-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-constants": "^2.0.4", + "automattic/jetpack-ip": "^0.2.3", + "automattic/jetpack-password-checker": "^0.3.2", + "automattic/jetpack-roles": "^2.0.3", + "automattic/jetpack-status": "^3.3.4", "php": ">=7.0" }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", "automattic/jetpack-search": "@dev", - "automattic/jetpack-waf": "^0.18.4-alpha", + "automattic/jetpack-waf": "@dev", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:38+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1833,44 +1700,37 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-sync/tree/v3.7.1" }, "install-path": "../automattic/jetpack-sync" }, { "name": "automattic/scheduled-updates", - "version": "0.13.2-alpha.1724273335", - "version_normalized": "0.13.2.0-alpha1724273335", + "version": "v0.13.2", + "version_normalized": "0.13.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/scheduled-updates.git", + "reference": "d07c5f9d639543d407ca9b4134ccab2699d9fff5" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/scheduled-updates", - "reference": "30bcb58ad876b98cd115bce0a10dacd7bcb02cc4" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/scheduled-updates/zipball/d07c5f9d639543d407ca9b4134ccab2699d9fff5", + "reference": "d07c5f9d639543d407ca9b4134ccab2699d9fff5", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^2.12.4-alpha", - "automattic/jetpack-constants": "^2.0.4-alpha", - "automattic/jetpack-plans": "^0.4.8-alpha", - "automattic/jetpack-status": "^3.3.4-alpha", - "automattic/jetpack-sync": "^3.7.1-alpha", + "automattic/jetpack-connection": "^2.12.4", + "automattic/jetpack-constants": "^2.0.4", + "automattic/jetpack-plans": "^0.4.8", + "automattic/jetpack-status": "^3.3.4", + "automattic/jetpack-sync": "^3.7.1", "php": ">=7.0" }, "require-dev": { @@ -1882,6 +1742,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:29:40+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/scheduled-updates", @@ -1903,26 +1764,13 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Runs plugin and (eventually) theme updates on a set schedule.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/scheduled-updates/tree/v0.13.2" }, "install-path": "../automattic/scheduled-updates" }, diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 1be595bb..846bdb60 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -38,252 +38,252 @@ 'dev_requirement' => false, ), 'automattic/jetpack-a8c-mc-stats' => array( - 'pretty_version' => '2.0.2-alpha.1724273335', - 'version' => '2.0.2.0-alpha1724273335', - 'reference' => 'f00be714f9ea6b28d49e5196dd13dd664ca0095a', + 'pretty_version' => 'v2.0.2', + 'version' => '2.0.2.0', + 'reference' => '5753860f28e1a8629b3c6ab481c1ab75e38a244f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-a8c-mc-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-admin-ui' => array( - 'pretty_version' => '0.4.3-alpha.1724273335', - 'version' => '0.4.3.0-alpha1724273335', - 'reference' => '58f37713c45789fb89a88befbf91521b12107b0c', + 'pretty_version' => 'v0.4.3', + 'version' => '0.4.3.0', + 'reference' => '83e500408e8542b108987b54d845ecb47b8e36b8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-admin-ui', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-assets' => array( - 'pretty_version' => '2.3.4-alpha.1724273335', - 'version' => '2.3.4.0-alpha1724273335', - 'reference' => '913fa76caeb5d1314306842df9a2c630e48f8515', + 'pretty_version' => 'v2.3.4', + 'version' => '2.3.4.0', + 'reference' => '46ca5819bdc37587f7bfbab45168fbc3aea9facb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-assets', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-blaze' => array( - 'pretty_version' => '0.22.7-alpha.1724273335', - 'version' => '0.22.7.0-alpha1724273335', - 'reference' => '539a977e99d2d8e7faefcd7cd16a97c853d7b303', + 'pretty_version' => 'v0.22.7', + 'version' => '0.22.7.0', + 'reference' => '49710fc4b0b6505a355afa16d4b67b0474e8eb3c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-blaze', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-blocks' => array( - 'pretty_version' => '2.0.5-alpha.1724273335', - 'version' => '2.0.5.0-alpha1724273335', - 'reference' => '719cb94d0744f70194be630fe54eea5e537e5639', + 'pretty_version' => 'v2.0.5', + 'version' => '2.0.5.0', + 'reference' => '3ceb140bf5f4262bcd6ed9d3fb8fe9f09f0f2596', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-blocks', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-calypsoify' => array( - 'pretty_version' => '0.1.4-alpha.1724273335', - 'version' => '0.1.4.0-alpha1724273335', - 'reference' => '0a57dc450268743f4e320064124291b5e4e21c9b', + 'pretty_version' => 'v0.1.4', + 'version' => '0.1.4.0', + 'reference' => 'fab2122e2959cc2099c6df636dc20c614cba165b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-calypsoify', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-classic-theme-helper' => array( - 'pretty_version' => '0.5.2-alpha.1724273335', - 'version' => '0.5.2.0-alpha1724273335', - 'reference' => '257ea74f748ce65539d75bf5c1779b8f01ee4fae', + 'pretty_version' => 'v0.5.2', + 'version' => '0.5.2.0', + 'reference' => 'b1bc138ed844d42327822a507a8f8d6d7fd586c5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-classic-theme-helper', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-compat' => array( - 'pretty_version' => '3.0.2', + 'pretty_version' => 'v3.0.2', 'version' => '3.0.2.0', - 'reference' => '4b605b7058ca4e2451060dfb8c4b86dfe3fc60b0', + 'reference' => 'b7c25cceadac59833ebd58e1877cb5b6b93b8fd5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-compat', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-config' => array( - 'pretty_version' => '2.0.4', + 'pretty_version' => 'v2.0.4', 'version' => '2.0.4.0', - 'reference' => 'c5396eb14194a921ff60c1e0447d0fe706b24c74', + 'reference' => '9f075c81bae6fd638e0b3183612cda5cc9e01e06', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '2.12.4-alpha.1724324484', - 'version' => '2.12.4.0-alpha1724324484', - 'reference' => '2edde2434d6b1c7014c83b090225083d133d1bb1', + 'pretty_version' => 'v2.12.4', + 'version' => '2.12.4.0', + 'reference' => '35dd5b89b9936555ac185e83a489f41655974e70', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-connection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-constants' => array( - 'pretty_version' => '2.0.4-alpha.1724273335', - 'version' => '2.0.4.0-alpha1724273335', - 'reference' => '59fbf69c114c626dad99513756050c7b00214f1b', + 'pretty_version' => 'v2.0.4', + 'version' => '2.0.4.0', + 'reference' => 'f6958c313a34c5e92171c45a57d9dc978e5975ed', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-constants', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-device-detection' => array( - 'pretty_version' => '2.1.4-alpha.1724273335', - 'version' => '2.1.4.0-alpha1724273335', - 'reference' => 'f045eecbf5e5325194ee929b005af58b5de149f0', + 'pretty_version' => 'v2.1.4', + 'version' => '2.1.4.0', + 'reference' => 'a59d71b55184bfd67a5b43f2df62c74ea6154b05', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-device-detection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-google-analytics' => array( - 'pretty_version' => '0.2.3-alpha.1724273335', - 'version' => '0.2.3.0-alpha1724273335', - 'reference' => '9d38246eed6a5f356ba3b4de965e9f228468fd62', + 'pretty_version' => 'v0.2.3', + 'version' => '0.2.3.0', + 'reference' => '44d20f1786df7678b692a577bd7f9f24ba5a4cc6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-google-analytics', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-ip' => array( - 'pretty_version' => '0.2.3-alpha.1724273335', - 'version' => '0.2.3.0-alpha1724273335', - 'reference' => '604c4d50d2167a4311f6d404571353cd723fa153', + 'pretty_version' => 'v0.2.3', + 'version' => '0.2.3.0', + 'reference' => 'f7a42b1603a24775c6f20eef2ac5cba3d6b37194', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-ip', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-jitm' => array( - 'pretty_version' => '3.1.18-alpha.1724273335', - 'version' => '3.1.18.0-alpha1724273335', - 'reference' => 'aab0356ecb6200ff7f1b1416c97469b2d0a28dc6', + 'pretty_version' => 'v3.1.18', + 'version' => '3.1.18.0', + 'reference' => 'a175b440e40c9e7e1eb27584682e5da8cf1810ec', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-jitm', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-logo' => array( - 'pretty_version' => '2.0.4-alpha.1724273335', - 'version' => '2.0.4.0-alpha1724273335', - 'reference' => 'daea2c90a384394ae5854e8409420a3f4d69212e', + 'pretty_version' => 'v2.0.4', + 'version' => '2.0.4.0', + 'reference' => '6047525955b12ac8654ac4544e0b79deaed31fa2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-masterbar' => array( - 'pretty_version' => '0.8.0-alpha.1724395378', - 'version' => '0.8.0.0-alpha1724395378', - 'reference' => '4f2d6056c701c1cfa31a0aeab90ada22ee3d2495', + 'pretty_version' => 'v0.8.0', + 'version' => '0.8.0.0', + 'reference' => 'c7ab6d9a3a299eab067fcadd9539bc7168bf150b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-masterbar', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-mu-wpcom' => array( - 'pretty_version' => '5.58.0-alpha.1724422445', - 'version' => '5.58.0.0-alpha1724422445', - 'reference' => '57ced2cb6064a295b3fb8b60d61ef847dbd1b8e9', + 'pretty_version' => 'v5.58.0', + 'version' => '5.58.0.0', + 'reference' => '9f412d5506a7be03392a0c49ea9a71bec404addd', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-mu-wpcom', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-password-checker' => array( - 'pretty_version' => '0.3.2-alpha.1724273335', - 'version' => '0.3.2.0-alpha1724273335', - 'reference' => '5a5b7523f0d674dd79d6feaf3a59b3abc2e190b2', + 'pretty_version' => 'v0.3.2', + 'version' => '0.3.2.0', + 'reference' => 'bdf70591123932112e447e295d7f174b5c0e3a44', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-password-checker', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plans' => array( - 'pretty_version' => '0.4.8-alpha.1724273335', - 'version' => '0.4.8.0-alpha1724273335', - 'reference' => '7a6b1f0e26362f2f76be6f74fba41671e5b26b46', + 'pretty_version' => 'v0.4.8', + 'version' => '0.4.8.0', + 'reference' => '2ab36b9106e8193cc7f1d2c56c8d655866bc6659', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-post-list' => array( - 'pretty_version' => '0.6.3-alpha.1724273335', - 'version' => '0.6.3.0-alpha1724273335', - 'reference' => '7e3615414ab20770533eb04cd52f6fb9ba0194e9', + 'pretty_version' => 'v0.6.3', + 'version' => '0.6.3.0', + 'reference' => '66a90d6978e7e50f94204d9da3fa9f4a870d841d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-post-list', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-redirect' => array( - 'pretty_version' => '2.0.3-alpha.1724273335', - 'version' => '2.0.3.0-alpha1724273335', - 'reference' => '05db681c1a60bc2eb6116cbb6c04fde3a520fba8', + 'pretty_version' => 'v2.0.3', + 'version' => '2.0.3.0', + 'reference' => '2c049bb08f736dc0dbafac7eaebea6f97cf8019e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-redirect', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-roles' => array( - 'pretty_version' => '2.0.3-alpha.1724273335', - 'version' => '2.0.3.0-alpha1724273335', - 'reference' => '64a564e118a899037f7b0270d9fb4766b3fdab07', + 'pretty_version' => 'v2.0.3', + 'version' => '2.0.3.0', + 'reference' => '32e45299a6ff93de0b1f4c71e6669f15917220fb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-roles', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-stats' => array( - 'pretty_version' => '0.13.1-alpha.1724273335', - 'version' => '0.13.1.0-alpha1724273335', - 'reference' => '2ee02115608d738438fef09e619b6d8fd9d2e14e', + 'pretty_version' => 'v0.13.1', + 'version' => '0.13.1.0', + 'reference' => '7c97787a47ed094827fa3ccb15256b33aadf05bb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-stats-admin' => array( - 'pretty_version' => '0.21.1-alpha.1724273335', - 'version' => '0.21.1.0-alpha1724273335', - 'reference' => '0f3cfbdd02a219270cfcdab02e502a377517c9b5', + 'pretty_version' => 'v0.21.1', + 'version' => '0.21.1.0', + 'reference' => '2b2fb042bb3480a46419bbd3c3c192ec91c73f77', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-stats-admin', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-status' => array( - 'pretty_version' => '3.3.4-alpha.1724273335', - 'version' => '3.3.4.0-alpha1724273335', - 'reference' => '2d4615588bf8951ee733aa1884dcfee2589f9763', + 'pretty_version' => 'v3.3.4', + 'version' => '3.3.4.0', + 'reference' => 'cf023b164ded674d66998b5b5870a3b6cf26679a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '3.7.1-alpha.1724273335', - 'version' => '3.7.1.0-alpha1724273335', - 'reference' => '058baa55446aa56abbe9983bd7bd3a9575ca939c', + 'pretty_version' => 'v3.7.1', + 'version' => '3.7.1.0', + 'reference' => '225421a1e6e1111fc269ff159c5855c9442ffe00', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-sync', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/scheduled-updates' => array( - 'pretty_version' => '0.13.2-alpha.1724273335', - 'version' => '0.13.2.0-alpha1724273335', - 'reference' => '30bcb58ad876b98cd115bce0a10dacd7bcb02cc4', + 'pretty_version' => 'v0.13.2', + 'version' => '0.13.2.0', + 'reference' => 'd07c5f9d639543d407ca9b4134ccab2699d9fff5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/scheduled-updates', 'aliases' => array(), diff --git a/wpcomsh.php b/wpcomsh.php index b4fa84bb..ab3229ff 100644 --- a/wpcomsh.php +++ b/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.6.0-alpha + * Version: 5.6.0 * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.6.0-alpha' ); +define( 'WPCOMSH_VERSION', '5.6.0' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' );