diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c7281e4..8e2e72af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,39 +1,36 @@ # Changelog -## 6.0.0-alpha - unreleased - -This is an alpha version! The changes listed here are not final. - +## 6.0.0 - 2024-12-04 ### Added -- Add Growth to features in wpcomsh package -- Enable test coverage. -- WordPress.com plan features: Added cornerstone 10 pages feature -- WordPress.com plan features: Added studio-sync feature +- Add Growth to features in wpcomsh package. [#40187] +- Enable test coverage. [#39961] +- WordPress.com plan features: Added cornerstone 10 pages feature. [#40023] +- WordPress.com plan features: Added studio-sync feature. [#39843] ### Changed -- Added wp-downgrade to the incompatible list -- Admin dashboard: Disable portfolio toggle if theme supports portfolio and site is WoA -- General: indicate compatibility with the upcoming version of WordPress - 6.7. -- Incompatible Plugins: whitelist duplicator pro. -- Introduced ESLint base config and fixed errors. -- Only include `wp-polyfill` as a script dependency when needed. -- Remove unused dev dependencies. -- Updated feature check -- Updated package dependencies. -- Update Jetpack Scan link -- Update wc-calypso-bridge dependency to 2.7.1 -- Update wc-calypso-bridge dependency to 2.8.0 -- Update wc-calypso-bridge dependency to 2.8.1 +- Added wp-downgrade to the incompatible list. [#39264] +- Admin dashboard: Disable portfolio toggle if theme supports portfolio and site is WoA. [#39508] +- General: indicate compatibility with the upcoming version of WordPress - 6.7. [#39786] +- Incompatible Plugins: whitelist duplicator pro. [#39775] +- Introduced ESLint base config and fixed errors. [#39275] +- Only include `wp-polyfill` as a script dependency when needed. [#39629] +- Remove unused dev dependencies. [#40297] +- Updated feature check. [#40120] +- Updated package dependencies. [#39594] [#39653] [#40116] [#40261] +- Update Jetpack Scan link. [#39619] +- Update wc-calypso-bridge dependency to 2.7.1 [#39557] +- Update wc-calypso-bridge dependency to 2.8.0 [#39613] +- Update wc-calypso-bridge dependency to 2.8.1 [#39950] ### Removed -- General: Update minimum WordPress version to 6.6. -- test remove redirection +- General: Update minimum WordPress version to 6.6. [#40146] +- Test remove redirection. [#39615] ### Fixed -- Fix function that add links to URLs in the page when having HTML attributes with "<" in the value -- Move `load_muplugin_textdomain` call to `after_setup_theme` hook. -- Stats: Fix top post card on the Insight page -- wpcom-block-editor: Support getting the canvas mode from the query string after GB 19.6 +- Fix function that add links to URLs in the page when having HTML attributes with "<" in the value. [#39931] +- Move `load_muplugin_textdomain` call to `after_setup_theme` hook. [#39586] +- Stats: Fix top post card on the Insight page. [#39691] +- wpcom-block-editor: Support getting the canvas mode from the query string after GB 19.6. [#40045] ## 5.10.0 - 2024-09-23 ### Added diff --git a/composer.json b/composer.json index c23fa721..0b62fc8a 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "wordpress/classic-editor-plugin": "1.5", "automattic/jetpack-config": "^3.0.0", "automattic/jetpack-post-list": "^0.7.1", - "automattic/jetpack-mu-wpcom": "^6.0.0-alpha", + "automattic/jetpack-mu-wpcom": "^6.0.0", "tubalmartin/cssmin": "^4.1" }, "require-dev": { @@ -121,7 +121,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/package.json b/package.json index 8ad4e34d..dc631138 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": "6.0.0-alpha", + "version": "6.0.0", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/vendor/autoload.php b/vendor/autoload.php index de0ea69e..0322edee 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -22,4 +22,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha::getLoader(); +return ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0::getLoader(); diff --git a/vendor/automattic/jetpack-blaze/src/class-dashboard.php b/vendor/automattic/jetpack-blaze/src/class-dashboard.php index 312b39c4..b32823e7 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.25.3-alpha'; + const PACKAGE_VERSION = '0.25.3'; /** * 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 2fb0c078..2633b23e 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.2.0-alpha'; + const PACKAGE_VERSION = '0.2.0'; /** * 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 6a3e2474..e64288a3 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.7.3-alpha'; + const PACKAGE_VERSION = '0.7.3'; /** * 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 4873c53b..45cf2221 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 = '6.1.1-alpha'; + const PACKAGE_VERSION = '6.1.1'; 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 b98022dd..7397d151 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.3.0-alpha'; + const PACKAGE_VERSION = '0.3.0'; /** * Jetpack_Google_Analytics singleton instance. diff --git a/vendor/automattic/jetpack-jitm/src/class-jitm.php b/vendor/automattic/jetpack-jitm/src/class-jitm.php index 38ebb078..12a0b901 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 = '4.0.2-alpha'; + const PACKAGE_VERSION = '4.0.2'; /** * 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 e5c4ffe4..bdff9556 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.10.2-alpha'; + const PACKAGE_VERSION = '0.10.2'; /** * 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 15411b78..05261495 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 = '6.0.0-alpha'; + const PACKAGE_VERSION = '6.0.0'; const PKG_DIR = __DIR__ . '/../'; const BASE_DIR = __DIR__ . '/'; const BASE_FILE = __FILE__; diff --git a/vendor/automattic/scheduled-updates/src/class-scheduled-updates.php b/vendor/automattic/scheduled-updates/src/class-scheduled-updates.php index ba61df16..e1907bb6 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.14.0-alpha'; + const PACKAGE_VERSION = '0.14.0'; /** * The cron event hook for the scheduled plugins update. diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 1a70a257..0d21fec6 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ⓥ6_0_0_alpha +class ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0 { private static $loader; @@ -24,17 +24,17 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_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 d0abaaaa..61d5a4fb 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha +class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0 { public static $files = array ( '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/..' . '/automattic/jetpack-assets/actions.php', @@ -414,9 +414,9 @@ class ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0_alpha::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInit26841ac2064774301cbe06d174833bfc_wpcomshⓥ6_0_0::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 6ed5dd2b..6a69b085 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -76,32 +76,39 @@ }, { "name": "automattic/jetpack-a8c-mc-stats", - "version": "3.0.0", + "version": "v3.0.0", "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git", + "reference": "d6bdf2f1d1941e0a22d17c6f3152097d8e0a30e6" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-a8c-mc-stats", - "reference": "18da9f4111ce057e9be145c48078e344eea034dc" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/d6bdf2f1d1941e0a22d17c6f3152097d8e0a30e6", + "reference": "d6bdf2f1d1941e0a22d17c6f3152097d8e0a30e6", + "shasum": "" }, "require": { "php": ">=7.2" }, "require-dev": { - "automattic/jetpack-changelogger": "^5.1.0", + "automattic/jetpack-changelogger": "^5.0.0", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-14T20:12:50+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-a8c-mc-stats", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-a8c-mc-stats/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-a8c-mc-stats/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -110,34 +117,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.0" }, "install-path": "../automattic/jetpack-a8c-mc-stats" }, { "name": "automattic/jetpack-admin-ui", - "version": "0.5.1", + "version": "v0.5.1", "version_normalized": "0.5.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-admin-ui.git", + "reference": "a0894d34333451089add7b20f70e73b6509d6b6d" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "45d330cc900875a4b6276f900c88eb865fcbf4f5" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/a0894d34333451089add7b20f70e73b6509d6b6d", + "reference": "a0894d34333451089add7b20f70e73b6509d6b6d", + "shasum": "" }, "require": { "php": ">=7.2" @@ -151,17 +154,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:45+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-admin-ui", "textdomain": "jetpack-admin-ui", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-admin-ui/compare/${old}...${new}" - }, + "mirror-repo": "Automattic/jetpack-admin-ui", "branch-alias": { "dev-trunk": "0.5.x-dev" }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-admin-ui/compare/${old}...${new}" + }, "version-constants": { "::PACKAGE_VERSION": "src/class-admin-menu.php" } @@ -172,40 +176,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.5.1" }, "install-path": "../automattic/jetpack-admin-ui" }, { "name": "automattic/jetpack-assets", - "version": "4.0.1", + "version": "v4.0.1", "version_normalized": "4.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-assets.git", + "reference": "ca1ebeceeeafb31876a234fa68ea3065b3eab2c3" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "d67996f5fe8e93ada6567a651179497468232931" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/ca1ebeceeeafb31876a234fa68ea3065b3eab2c3", + "reference": "ca1ebeceeeafb31876a234fa68ea3065b3eab2c3", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -220,16 +214,17 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T19:43:08+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-assets", "textdomain": "jetpack-assets", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-assets/compare/v${old}...v${new}" - }, + "mirror-repo": "Automattic/jetpack-assets", "branch-alias": { "dev-trunk": "4.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-assets/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -241,47 +236,34 @@ "src/" ] }, - "scripts": { - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "pnpm run build-production" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "pnpm concurrently --names php,js 'php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"' 'pnpm:test-coverage'" - ], - "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/v4.0.1" }, "install-path": "../automattic/jetpack-assets" }, { "name": "automattic/jetpack-blaze", - "version": "0.25.3-alpha.1733166700", - "version_normalized": "0.25.3.0-alpha1733166700", + "version": "v0.25.3", + "version_normalized": "0.25.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-blaze.git", + "reference": "3e1e97881a27a167fd728ef28058806168c606bf" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-blaze", - "reference": "476ff6df181dfb6dacffcda57b0bde3661bece7e" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-blaze/zipball/3e1e97881a27a167fd728ef28058806168c606bf", + "reference": "3e1e97881a27a167fd728ef28058806168c606bf", + "shasum": "" }, "require": { "automattic/jetpack-assets": "^4.0.1", - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.1", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-redirect": "^3.0.1", @@ -297,17 +279,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:45+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-blaze", "mirror-repo": "Automattic/jetpack-blaze", - "changelogger": { - "link-template": "https://github.com/automattic/jetpack-blaze/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "0.25.x-dev" }, - "textdomain": "jetpack-blaze", + "changelogger": { + "link-template": "https://github.com/automattic/jetpack-blaze/compare/v${old}...v${new}" + }, "version-constants": { "::PACKAGE_VERSION": "src/class-dashboard.php" } @@ -318,50 +301,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.25.3" }, "install-path": "../automattic/jetpack-blaze" }, { "name": "automattic/jetpack-blocks", - "version": "3.0.1", + "version": "v3.0.1", "version_normalized": "3.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-blocks.git", + "reference": "2fe562d59ea3771ac791c55e6eb3c9c1bb703f35" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-blocks", - "reference": "f638d59ae208fd64cfe438282aed1c1dc8ba214c" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-blocks/zipball/2fe562d59ea3771ac791c55e6eb3c9c1bb703f35", + "reference": "2fe562d59ea3771ac791c55e6eb3c9c1bb703f35", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -376,15 +339,16 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:49+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-blocks", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-blocks/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-blocks/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -393,40 +357,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.1" }, "install-path": "../automattic/jetpack-blocks" }, { "name": "automattic/jetpack-calypsoify", - "version": "0.2.0-alpha.1733166700", - "version_normalized": "0.2.0.0-alpha1733166700", + "version": "v0.2.0", + "version_normalized": "0.2.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-calypsoify.git", + "reference": "383ca53fa0dc9ae60a0cec3c1d7073059da55f52" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-calypsoify", - "reference": "3c979761b9c994d30403039be9f3804c7c939037" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-calypsoify/zipball/383ca53fa0dc9ae60a0cec3c1d7073059da55f52", + "reference": "383ca53fa0dc9ae60a0cec3c1d7073059da55f52", + "shasum": "" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -440,17 +394,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:22+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-calypsoify", + "mirror-repo": "Automattic/jetpack-calypsoify", "branch-alias": { "dev-trunk": "0.2.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-calypsoify/compare/v${old}...v${new}" }, - "mirror-repo": "Automattic/jetpack-calypsoify", - "textdomain": "jetpack-calypsoify", "version-constants": { "::PACKAGE_VERSION": "src/class-jetpack-calypsoify.php" } @@ -461,40 +416,30 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.2.0" }, "install-path": "../automattic/jetpack-calypsoify" }, { "name": "automattic/jetpack-classic-theme-helper", - "version": "0.7.3-alpha.1733166700", - "version_normalized": "0.7.3.0-alpha1733166700", + "version": "v0.7.3", + "version_normalized": "0.7.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-classic-theme-helper.git", + "reference": "ff85d4e0e86ee1784ada61e87e7d5a8fdedf9214" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-classic-theme-helper", - "reference": "cb9d11534b3efaa7889e55ede35b56a4cc54f833" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-classic-theme-helper/zipball/ff85d4e0e86ee1784ada61e87e7d5a8fdedf9214", + "reference": "ff85d4e0e86ee1784ada61e87e7d5a8fdedf9214", + "shasum": "" }, "require": { "automattic/jetpack-assets": "^4.0.1", @@ -508,17 +453,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:23+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-classic-theme-helper", + "mirror-repo": "Automattic/jetpack-classic-theme-helper", "branch-alias": { "dev-trunk": "0.7.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-classic-theme-helper/compare/v${old}...v${new}" }, - "mirror-repo": "Automattic/jetpack-classic-theme-helper", - "textdomain": "jetpack-classic-theme-helper", "version-constants": { "::PACKAGE_VERSION": "src/class-main.php" } @@ -529,92 +475,84 @@ "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-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.7.3" }, "install-path": "../automattic/jetpack-classic-theme-helper" }, { "name": "automattic/jetpack-compat", - "version": "4.0.0", + "version": "v4.0.0", "version_normalized": "4.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-compat.git", + "reference": "3ae8fee75809ed2b621b5ea8f96cb72f5e6dfefc" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-compat", - "reference": "2f2575e757fe38dbcc0ca8eb525d304dee1b5436" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-compat/zipball/3ae8fee75809ed2b621b5ea8f96cb72f5e6dfefc", + "reference": "3ae8fee75809ed2b621b5ea8f96cb72f5e6dfefc", + "shasum": "" }, "require": { "php": ">=7.2" }, "require-dev": { - "automattic/jetpack-changelogger": "^5.1.0" + "automattic/jetpack-changelogger": "^5.0.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-18T14:54:07+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-compat", "textdomain": "jetpack-compat", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-compat/compare/v${old}...v${new}" - }, + "mirror-repo": "Automattic/jetpack-compat", "branch-alias": { "dev-trunk": "4.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-compat/compare/v${old}...v${new}" } }, "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/v4.0.0" }, "install-path": "../automattic/jetpack-compat" }, { "name": "automattic/jetpack-config", - "version": "3.0.0", + "version": "v3.0.0", "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-config.git", + "reference": "fc719eff5073634b0c62793b05be913ca634e192" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "bc3882c62e50be7bb7803e41ef8b4704b8b39060" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/fc719eff5073634b0c62793b05be913ca634e192", + "reference": "fc719eff5073634b0c62793b05be913ca634e192", + "shasum": "" }, "require": { "php": ">=7.2" }, "require-dev": { - "automattic/jetpack-changelogger": "^5.1.0", + "automattic/jetpack-changelogger": "^5.0.0", "automattic/jetpack-connection": "@dev", "automattic/jetpack-import": "@dev", "automattic/jetpack-jitm": "@dev", @@ -632,17 +570,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-14T20:12:40+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-config", "textdomain": "jetpack-config", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-config/compare/v${old}...v${new}" - }, + "mirror-repo": "Automattic/jetpack-config", "branch-alias": { "dev-trunk": "3.0.x-dev" }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-config/compare/v${old}...v${new}" + }, "dependencies": { "test-only": [ "packages/connection", @@ -667,23 +606,30 @@ "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/v3.0.0" }, "install-path": "../automattic/jetpack-config" }, { "name": "automattic/jetpack-connection", - "version": "6.1.1-alpha.1733166700", - "version_normalized": "6.1.1.0-alpha1733166700", + "version": "v6.1.1", + "version_normalized": "6.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-connection.git", + "reference": "665b2f2ae20bc33245a4a28e2a48d365631c3f3e" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "ac239d4985242c27ec799ba07885e31612678e7b" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/665b2f2ae20bc33245a4a28e2a48d365631c3f3e", + "reference": "665b2f2ae20bc33245a4a28e2a48d365631c3f3e", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -704,25 +650,26 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:25+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-connection", "textdomain": "jetpack-connection", - "version-constants": { - "::PACKAGE_VERSION": "src/class-package-version.php" + "mirror-repo": "Automattic/jetpack-connection", + "branch-alias": { + "dev-trunk": "6.1.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}" }, - "branch-alias": { - "dev-trunk": "6.1.x-dev" - }, "dependencies": { "test-only": [ "packages/licensing", "packages/sync" ] + }, + "version-constants": { + "::PACKAGE_VERSION": "src/class-package-version.php" } }, "installation-source": "dist", @@ -737,46 +684,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-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v6.1.1" }, "install-path": "../automattic/jetpack-connection" }, { "name": "automattic/jetpack-constants", - "version": "3.0.1", + "version": "v3.0.1", "version_normalized": "3.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-constants.git", + "reference": "d4b7820defcdb40c1add88d5ebd722e4ba80a873" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "4565bdc86766998d0bd602cb5a3d0a67123e696a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/d4b7820defcdb40c1add88d5ebd722e4ba80a873", + "reference": "d4b7820defcdb40c1add88d5ebd722e4ba80a873", + "shasum": "" }, "require": { "php": ">=7.2" @@ -789,15 +720,16 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:27+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-constants", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-constants/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-constants/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -806,54 +738,51 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.1" }, "install-path": "../automattic/jetpack-constants" }, { "name": "automattic/jetpack-device-detection", - "version": "3.0.0", + "version": "v3.0.0", "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-device-detection.git", + "reference": "06b820c178b55a2befaf59588d5fcad7d4606d9a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "4f0910124a82ea080a2146e3a789011725511d9a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-device-detection/zipball/06b820c178b55a2befaf59588d5fcad7d4606d9a", + "reference": "06b820c178b55a2befaf59588d5fcad7d4606d9a", + "shasum": "" }, "require": { "php": ">=7.2" }, "require-dev": { - "automattic/jetpack-changelogger": "^5.1.0", + "automattic/jetpack-changelogger": "^5.0.0", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-14T20:13:03+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-device-detection", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-device-detection/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-device-detection/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -862,34 +791,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.0" }, "install-path": "../automattic/jetpack-device-detection" }, { "name": "automattic/jetpack-google-analytics", - "version": "0.3.0-alpha.1731518828", - "version_normalized": "0.3.0.0-alpha1731518828", + "version": "v0.3.0", + "version_normalized": "0.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-google-analytics.git", + "reference": "a0511ba9771f85ab04719098097b976c2964a3fb" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-google-analytics", - "reference": "3680241b384409d57a2b6c691e2717b000660851" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-google-analytics/zipball/a0511ba9771f85ab04719098097b976c2964a3fb", + "reference": "a0511ba9771f85ab04719098097b976c2964a3fb", + "shasum": "" }, "require": { "automattic/jetpack-status": "^5.0.1", @@ -903,17 +828,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:08+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-google-analytics", + "mirror-repo": "Automattic/jetpack-google-analytics", "branch-alias": { "dev-trunk": "0.3.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-google-analytics/compare/v${old}...v${new}" }, - "mirror-repo": "Automattic/jetpack-google-analytics", - "textdomain": "jetpack-google-analytics", "version-constants": { "::PACKAGE_VERSION": "src/class-ga-manager.php" } @@ -924,46 +850,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-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.3.0" }, "install-path": "../automattic/jetpack-google-analytics" }, { "name": "automattic/jetpack-ip", - "version": "0.4.1", + "version": "v0.4.1", "version_normalized": "0.4.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-ip.git", + "reference": "04d7deb2c16faa6c4a3e5074bf0e12c8a87d035a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "aa617fda0e6bb65252544553e63c6b508fb4f74b" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-ip/zipball/04d7deb2c16faa6c4a3e5074bf0e12c8a87d035a", + "reference": "04d7deb2c16faa6c4a3e5074bf0e12c8a87d035a", + "shasum": "" }, "require": { "php": ">=7.2" @@ -976,17 +886,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:22+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-ip", "mirror-repo": "Automattic/jetpack-ip", - "changelogger": { - "link-template": "https://github.com/automattic/jetpack-ip/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "0.4.x-dev" }, - "textdomain": "jetpack-ip", + "changelogger": { + "link-template": "https://github.com/automattic/jetpack-ip/compare/v${old}...v${new}" + }, "version-constants": { "::PACKAGE_VERSION": "src/class-utils.php" } @@ -997,39 +908,35 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.4.1" }, "install-path": "../automattic/jetpack-ip" }, { "name": "automattic/jetpack-jitm", - "version": "4.0.2-alpha.1733166700", - "version_normalized": "4.0.2.0-alpha1733166700", + "version": "v4.0.2", + "version_normalized": "4.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-jitm.git", + "reference": "f00645d9d70ea7f5385bd5bab9b7482407820689" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "bca4217930504a4a5731365b736c7ea60efa437a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-jitm/zipball/f00645d9d70ea7f5385bd5bab9b7482407820689", + "reference": "f00645d9d70ea7f5385bd5bab9b7482407820689", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^4.0.1", - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.1", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.1", @@ -1044,19 +951,20 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:38+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-jitm", "textdomain": "jetpack-jitm", - "version-constants": { - "::PACKAGE_VERSION": "src/class-jitm.php" + "mirror-repo": "Automattic/jetpack-jitm", + "branch-alias": { + "dev-trunk": "4.0.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-jitm/compare/v${old}...v${new}" }, - "branch-alias": { - "dev-trunk": "4.0.x-dev" + "version-constants": { + "::PACKAGE_VERSION": "src/class-jitm.php" } }, "installation-source": "dist", @@ -1065,64 +973,51 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v4.0.2" }, "install-path": "../automattic/jetpack-jitm" }, { "name": "automattic/jetpack-logo", - "version": "3.0.0", + "version": "v3.0.0", "version_normalized": "3.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-logo.git", + "reference": "ba35cdbfc401a43ab4e5cc4085048dfe6da3da1f" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "312dbf2d60f16c2a545b5efde50724984a65564a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/ba35cdbfc401a43ab4e5cc4085048dfe6da3da1f", + "reference": "ba35cdbfc401a43ab4e5cc4085048dfe6da3da1f", + "shasum": "" }, "require": { "php": ">=7.2" }, "require-dev": { - "automattic/jetpack-changelogger": "^5.1.0", + "automattic/jetpack-changelogger": "^5.0.0", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-14T20:12:55+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-logo", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-logo/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -1131,42 +1026,38 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.0" }, "install-path": "../automattic/jetpack-logo" }, { "name": "automattic/jetpack-masterbar", - "version": "0.10.2-alpha.1733166700", - "version_normalized": "0.10.2.0-alpha1733166700", + "version": "v0.10.2", + "version_normalized": "0.10.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-masterbar.git", + "reference": "ebeb118e639cf27182f23a828330a1ee1f7aa95e" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-masterbar", - "reference": "7f507db18e354cdc78d2d784678ea26a9c385ff2" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-masterbar/zipball/ebeb118e639cf27182f23a828330a1ee1f7aa95e", + "reference": "ebeb118e639cf27182f23a828330a1ee1f7aa95e", + "shasum": "" }, "require": { "automattic/jetpack-assets": "^4.0.1", - "automattic/jetpack-blaze": "^0.25.3-alpha", + "automattic/jetpack-blaze": "^0.25.3", "automattic/jetpack-compat": "^4.0.0", - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.1", "automattic/jetpack-device-detection": "^3.0.0", - "automattic/jetpack-jitm": "^4.0.2-alpha", + "automattic/jetpack-jitm": "^4.0.2", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-status": "^5.0.1", @@ -1182,17 +1073,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:49+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-masterbar", + "mirror-repo": "Automattic/jetpack-masterbar", "branch-alias": { "dev-trunk": "0.10.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-masterbar/compare/v${old}...v${new}" }, - "mirror-repo": "Automattic/jetpack-masterbar", - "textdomain": "jetpack-masterbar", "version-constants": { "::PACKAGE_VERSION": "src/class-main.php" } @@ -1203,62 +1095,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-coverage": [ - "pnpm run build-production", - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.10.2" }, "install-path": "../automattic/jetpack-masterbar" }, { "name": "automattic/jetpack-mu-wpcom", - "version": "6.0.0-alpha.1733261868", - "version_normalized": "6.0.0.0-alpha1733261868", + "version": "v6.0.0", + "version_normalized": "6.0.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-mu-wpcom.git", + "reference": "b5c3949adbe74372df0b499b02517c370a814c03" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-mu-wpcom", - "reference": "b83cd61e92d521d8ce520538f09fb97ae94ae1e4" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-mu-wpcom/zipball/b5c3949adbe74372df0b499b02517c370a814c03", + "reference": "b5c3949adbe74372df0b499b02517c370a814c03", + "shasum": "" }, "require": { "automattic/jetpack-assets": "^4.0.1", "automattic/jetpack-blocks": "^3.0.1", - "automattic/jetpack-calypsoify": "^0.2.0-alpha", - "automattic/jetpack-classic-theme-helper": "^0.7.3-alpha", + "automattic/jetpack-calypsoify": "^0.2.0", + "automattic/jetpack-classic-theme-helper": "^0.7.3", "automattic/jetpack-compat": "^4.0.0", - "automattic/jetpack-connection": "^6.1.1-alpha", - "automattic/jetpack-google-analytics": "^0.3.0-alpha", - "automattic/jetpack-masterbar": "^0.10.2-alpha", + "automattic/jetpack-connection": "^6.1.1", + "automattic/jetpack-google-analytics": "^0.3.0", + "automattic/jetpack-masterbar": "^0.10.2", "automattic/jetpack-redirect": "^3.0.1", "automattic/jetpack-stats-admin": "^0.23.1", "automattic/jetpack-status": "^5.0.1", - "automattic/scheduled-updates": "^0.14.0-alpha", + "automattic/scheduled-updates": "^0.14.0", "php": ">=7.2", "scssphp/scssphp": "1.12.0" }, @@ -1270,17 +1144,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:52+00:00", "type": "jetpack-library", "extra": { - "mirror-repo": "Automattic/jetpack-mu-wpcom", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-mu-wpcom/compare/v${old}...v${new}" - }, "autotagger": true, + "textdomain": "jetpack-mu-wpcom", + "mirror-repo": "Automattic/jetpack-mu-wpcom", "branch-alias": { "dev-trunk": "6.0.x-dev" }, - "textdomain": "jetpack-mu-wpcom", + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-mu-wpcom/compare/v${old}...v${new}" + }, "version-constants": { "::PACKAGE_VERSION": "src/class-jetpack-mu-wpcom.php" } @@ -1291,46 +1166,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v6.0.0" }, "install-path": "../automattic/jetpack-mu-wpcom" }, { "name": "automattic/jetpack-password-checker", - "version": "0.4.1", + "version": "v0.4.1", "version_normalized": "0.4.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-password-checker.git", + "reference": "e721e7659cc7a6a37152a4e96485e6c139f02d5f" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "01aa95f51a2f3c41ee0faaf836c17b6fc72c010b" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/e721e7659cc7a6a37152a4e96485e6c139f02d5f", + "reference": "e721e7659cc7a6a37152a4e96485e6c139f02d5f", + "shasum": "" }, "require": { "php": ">=7.2" @@ -1343,16 +1202,17 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:31+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-password-checker", "textdomain": "jetpack-password-checker", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-password-checker/compare/v${old}...v${new}" - }, + "mirror-repo": "Automattic/jetpack-password-checker", "branch-alias": { "dev-trunk": "0.4.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-password-checker/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -1361,43 +1221,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.4.1" }, "install-path": "../automattic/jetpack-password-checker" }, { "name": "automattic/jetpack-plans", - "version": "0.5.1", + "version": "v0.5.1", "version_normalized": "0.5.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plans.git", + "reference": "458c420da2e60e8127b4ad32f5fe31603fa92130" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "8c9f50a5e30b2647a01ab3d25f0455991e12a6bc" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plans/zipball/458c420da2e60e8127b4ad32f5fe31603fa92130", + "reference": "458c420da2e60e8127b4ad32f5fe31603fa92130", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.0", "php": ">=7.2" }, "require-dev": { @@ -1409,15 +1259,16 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:34:49+00:00", "type": "library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-plans", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-plans/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "0.5.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-plans/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -1426,49 +1277,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.5.1" }, "install-path": "../automattic/jetpack-plans" }, { "name": "automattic/jetpack-post-list", - "version": "0.7.1", + "version": "v0.7.1", "version_normalized": "0.7.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-post-list.git", + "reference": "501e72fd33d868454dfa092ad10d652c24dbe055" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-post-list", - "reference": "8cf469c6c0ff28195e4155e62ec9f2cafb98a44c" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-post-list/zipball/501e72fd33d868454dfa092ad10d652c24dbe055", + "reference": "501e72fd33d868454dfa092ad10d652c24dbe055", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^4.0.1", + "automattic/jetpack-assets": "^4.0.0", "php": ">=7.2" }, "require-dev": { @@ -1479,19 +1314,20 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:34:25+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-post-list", "textdomain": "jetpack-post-list", - "version-constants": { - "::PACKAGE_VERSION": "src/class-post-list.php" + "mirror-repo": "Automattic/jetpack-post-list", + "branch-alias": { + "dev-trunk": "0.7.x-dev" }, "changelogger": { "link-template": "https://github.com/automattic/jetpack-post-list/compare/v${old}...v${new}" }, - "branch-alias": { - "dev-trunk": "0.7.x-dev" + "version-constants": { + "::PACKAGE_VERSION": "src/class-post-list.php" } }, "installation-source": "dist", @@ -1500,40 +1336,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.7.1" }, "install-path": "../automattic/jetpack-post-list" }, { "name": "automattic/jetpack-redirect", - "version": "3.0.1", + "version": "v3.0.1", "version_normalized": "3.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-redirect.git", + "reference": "89732a3ba1c5eba8cfd948b7567823cd884102d5" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "8fb6cd0393f1b73c61f553dd6d0b2bd795b0a8c2" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/89732a3ba1c5eba8cfd948b7567823cd884102d5", + "reference": "89732a3ba1c5eba8cfd948b7567823cd884102d5", + "shasum": "" }, "require": { "automattic/jetpack-status": "^5.0.1", @@ -1547,15 +1373,16 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:34:01+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-redirect", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-redirect/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-redirect/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -1564,34 +1391,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.1" }, "install-path": "../automattic/jetpack-redirect" }, { "name": "automattic/jetpack-roles", - "version": "3.0.1", + "version": "v3.0.1", "version_normalized": "3.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-roles.git", + "reference": "fe5f2a45901ea14be00728119d097619615fb031" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "4553bd3d23625e7abae7f775998bec199923b070" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/fe5f2a45901ea14be00728119d097619615fb031", + "reference": "fe5f2a45901ea14be00728119d097619615fb031", + "shasum": "" }, "require": { "php": ">=7.2" @@ -1604,15 +1427,16 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:29+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-roles", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-roles/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "3.0.x-dev" + }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-roles/compare/v${old}...v${new}" } }, "installation-source": "dist", @@ -1621,37 +1445,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v3.0.1" }, "install-path": "../automattic/jetpack-roles" }, { "name": "automattic/jetpack-stats", - "version": "0.14.1", + "version": "v0.14.1", "version_normalized": "0.14.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-stats.git", + "reference": "1500f72eb135dbdc362d2d1cbb463d83ce826f74" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "dfacf1b0982fdb1735faa0edfc38c626871478c7" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-stats/zipball/1500f72eb135dbdc362d2d1cbb463d83ce826f74", + "reference": "1500f72eb135dbdc362d2d1cbb463d83ce826f74", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.0", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-status": "^5.0.1", "php": ">=7.2" @@ -1664,20 +1484,21 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:34:45+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-stats", "mirror-repo": "Automattic/jetpack-stats", - "version-constants": { - "::PACKAGE_VERSION": "src/class-package-version.php" + "branch-alias": { + "dev-trunk": "0.14.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-stats/compare/v${old}...v${new}" }, - "branch-alias": { - "dev-trunk": "0.14.x-dev" - }, - "textdomain": "jetpack-stats" + "version-constants": { + "::PACKAGE_VERSION": "src/class-package-version.php" + } }, "installation-source": "dist", "autoload": { @@ -1685,45 +1506,35 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.14.1" }, "install-path": "../automattic/jetpack-stats" }, { "name": "automattic/jetpack-stats-admin", - "version": "0.23.1", + "version": "v0.23.1", "version_normalized": "0.23.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-stats-admin.git", + "reference": "329e10c4f6cc5150138a84e5237926dbadf7b8fd" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-stats-admin", - "reference": "dbe90f43f1bb7602b1f5518aa1556ff2ca30ce48" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-stats-admin/zipball/329e10c4f6cc5150138a84e5237926dbadf7b8fd", + "reference": "329e10c4f6cc5150138a84e5237926dbadf7b8fd", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.0", "automattic/jetpack-constants": "^3.0.1", - "automattic/jetpack-jitm": "^4.0.2-alpha", + "automattic/jetpack-jitm": "^4.0.1", "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-stats": "^0.14.1", "automattic/jetpack-status": "^5.0.1", @@ -1737,14 +1548,15 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:35:00+00:00", "type": "jetpack-library", "extra": { "autotagger": true, + "textdomain": "jetpack-stats-admin", "mirror-repo": "Automattic/jetpack-stats-admin", "branch-alias": { "dev-trunk": "0.23.x-dev" }, - "textdomain": "jetpack-stats-admin", "version-constants": { "::VERSION": "src/class-main.php" } @@ -1755,46 +1567,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.23.1" }, "install-path": "../automattic/jetpack-stats-admin" }, { "name": "automattic/jetpack-status", - "version": "5.0.1", + "version": "v5.0.1", "version_normalized": "5.0.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-status.git", + "reference": "769f55b6327187a85c14ed21943eea430f63220d" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "12e1abd32fb4f6f40721d6254f3df5f63b153948" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/769f55b6327187a85c14ed21943eea430f63220d", + "reference": "769f55b6327187a85c14ed21943eea430f63220d", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -1811,16 +1607,17 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-25T16:33:53+00:00", "type": "jetpack-library", "extra": { "autotagger": true, "mirror-repo": "Automattic/jetpack-status", - "changelogger": { - "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}" - }, "branch-alias": { "dev-trunk": "5.0.x-dev" }, + "changelogger": { + "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}" + }, "dependencies": { "test-only": [ "packages/connection", @@ -1834,37 +1631,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v5.0.1" }, "install-path": "../automattic/jetpack-status" }, { "name": "automattic/jetpack-sync", - "version": "4.0.2", + "version": "v4.0.2", "version_normalized": "4.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-sync.git", + "reference": "7e2b0a0da99146d53efde2fb748bd4b9a1cf3659" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "4774f687559bc1401db3874e4137031860afd28c" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/7e2b0a0da99146d53efde2fb748bd4b9a1cf3659", + "reference": "7e2b0a0da99146d53efde2fb748bd4b9a1cf3659", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.0", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-ip": "^0.4.1", "automattic/jetpack-password-checker": "^0.4.1", @@ -1882,25 +1675,26 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-11-28T11:46:29+00:00", "type": "jetpack-library", "extra": { "autotagger": true, - "mirror-repo": "Automattic/jetpack-sync", "textdomain": "jetpack-sync", - "version-constants": { - "::PACKAGE_VERSION": "src/class-package-version.php" + "mirror-repo": "Automattic/jetpack-sync", + "branch-alias": { + "dev-trunk": "4.0.x-dev" }, "changelogger": { "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, - "branch-alias": { - "dev-trunk": "4.0.x-dev" - }, "dependencies": { "test-only": [ "packages/search", "packages/waf" ] + }, + "version-constants": { + "::PACKAGE_VERSION": "src/class-package-version.php" } }, "installation-source": "dist", @@ -1909,43 +1703,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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/v4.0.2" }, "install-path": "../automattic/jetpack-sync" }, { "name": "automattic/scheduled-updates", - "version": "0.14.0-alpha.1732217150", - "version_normalized": "0.14.0.0-alpha1732217150", + "version": "v0.14.0", + "version_normalized": "0.14.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/scheduled-updates.git", + "reference": "6e534926981fc4f826beb0e1dc595ceebc454c62" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/scheduled-updates", - "reference": "04cb499708c8b9a6969f7e279b5c1fd044651afa" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/scheduled-updates/zipball/6e534926981fc4f826beb0e1dc595ceebc454c62", + "reference": "6e534926981fc4f826beb0e1dc595ceebc454c62", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^6.1.1-alpha", + "automattic/jetpack-connection": "^6.1.1", "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-status": "^5.0.1", @@ -1961,17 +1745,18 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-12-04T20:52:33+00:00", "type": "jetpack-library", "extra": { - "mirror-repo": "Automattic/scheduled-updates", - "changelogger": { - "link-template": "https://github.com/Automattic/scheduled-updates/compare/v${old}...v${new}" - }, "autotagger": true, + "textdomain": "jetpack-scheduled-updates", + "mirror-repo": "Automattic/scheduled-updates", "branch-alias": { "dev-trunk": "0.14.x-dev" }, - "textdomain": "jetpack-scheduled-updates", + "changelogger": { + "link-template": "https://github.com/Automattic/scheduled-updates/compare/v${old}...v${new}" + }, "version-constants": { "::PACKAGE_VERSION": "src/class-scheduled-updates.php" } @@ -1982,29 +1767,13 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-coverage": [ - "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-php \"$COVERAGE_DIR/php.cov\"" - ], - "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.14.0" }, "install-path": "../automattic/scheduled-updates" }, diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index b36bd6c7..f8ccfe19 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' => '3.0.0', + 'pretty_version' => 'v3.0.0', 'version' => '3.0.0.0', - 'reference' => '18da9f4111ce057e9be145c48078e344eea034dc', + 'reference' => 'd6bdf2f1d1941e0a22d17c6f3152097d8e0a30e6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-a8c-mc-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-admin-ui' => array( - 'pretty_version' => '0.5.1', + 'pretty_version' => 'v0.5.1', 'version' => '0.5.1.0', - 'reference' => '45d330cc900875a4b6276f900c88eb865fcbf4f5', + 'reference' => 'a0894d34333451089add7b20f70e73b6509d6b6d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-admin-ui', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-assets' => array( - 'pretty_version' => '4.0.1', + 'pretty_version' => 'v4.0.1', 'version' => '4.0.1.0', - 'reference' => 'd67996f5fe8e93ada6567a651179497468232931', + 'reference' => 'ca1ebeceeeafb31876a234fa68ea3065b3eab2c3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-assets', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-blaze' => array( - 'pretty_version' => '0.25.3-alpha.1733166700', - 'version' => '0.25.3.0-alpha1733166700', - 'reference' => '476ff6df181dfb6dacffcda57b0bde3661bece7e', + 'pretty_version' => 'v0.25.3', + 'version' => '0.25.3.0', + 'reference' => '3e1e97881a27a167fd728ef28058806168c606bf', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-blaze', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-blocks' => array( - 'pretty_version' => '3.0.1', + 'pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', - 'reference' => 'f638d59ae208fd64cfe438282aed1c1dc8ba214c', + 'reference' => '2fe562d59ea3771ac791c55e6eb3c9c1bb703f35', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-blocks', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-calypsoify' => array( - 'pretty_version' => '0.2.0-alpha.1733166700', - 'version' => '0.2.0.0-alpha1733166700', - 'reference' => '3c979761b9c994d30403039be9f3804c7c939037', + 'pretty_version' => 'v0.2.0', + 'version' => '0.2.0.0', + 'reference' => '383ca53fa0dc9ae60a0cec3c1d7073059da55f52', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-calypsoify', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-classic-theme-helper' => array( - 'pretty_version' => '0.7.3-alpha.1733166700', - 'version' => '0.7.3.0-alpha1733166700', - 'reference' => 'cb9d11534b3efaa7889e55ede35b56a4cc54f833', + 'pretty_version' => 'v0.7.3', + 'version' => '0.7.3.0', + 'reference' => 'ff85d4e0e86ee1784ada61e87e7d5a8fdedf9214', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-classic-theme-helper', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-compat' => array( - 'pretty_version' => '4.0.0', + 'pretty_version' => 'v4.0.0', 'version' => '4.0.0.0', - 'reference' => '2f2575e757fe38dbcc0ca8eb525d304dee1b5436', + 'reference' => '3ae8fee75809ed2b621b5ea8f96cb72f5e6dfefc', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-compat', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-config' => array( - 'pretty_version' => '3.0.0', + 'pretty_version' => 'v3.0.0', 'version' => '3.0.0.0', - 'reference' => 'bc3882c62e50be7bb7803e41ef8b4704b8b39060', + 'reference' => 'fc719eff5073634b0c62793b05be913ca634e192', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '6.1.1-alpha.1733166700', - 'version' => '6.1.1.0-alpha1733166700', - 'reference' => 'ac239d4985242c27ec799ba07885e31612678e7b', + 'pretty_version' => 'v6.1.1', + 'version' => '6.1.1.0', + 'reference' => '665b2f2ae20bc33245a4a28e2a48d365631c3f3e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-connection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-constants' => array( - 'pretty_version' => '3.0.1', + 'pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', - 'reference' => '4565bdc86766998d0bd602cb5a3d0a67123e696a', + 'reference' => 'd4b7820defcdb40c1add88d5ebd722e4ba80a873', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-constants', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-device-detection' => array( - 'pretty_version' => '3.0.0', + 'pretty_version' => 'v3.0.0', 'version' => '3.0.0.0', - 'reference' => '4f0910124a82ea080a2146e3a789011725511d9a', + 'reference' => '06b820c178b55a2befaf59588d5fcad7d4606d9a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-device-detection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-google-analytics' => array( - 'pretty_version' => '0.3.0-alpha.1731518828', - 'version' => '0.3.0.0-alpha1731518828', - 'reference' => '3680241b384409d57a2b6c691e2717b000660851', + 'pretty_version' => 'v0.3.0', + 'version' => '0.3.0.0', + 'reference' => 'a0511ba9771f85ab04719098097b976c2964a3fb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-google-analytics', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-ip' => array( - 'pretty_version' => '0.4.1', + 'pretty_version' => 'v0.4.1', 'version' => '0.4.1.0', - 'reference' => 'aa617fda0e6bb65252544553e63c6b508fb4f74b', + 'reference' => '04d7deb2c16faa6c4a3e5074bf0e12c8a87d035a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-ip', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-jitm' => array( - 'pretty_version' => '4.0.2-alpha.1733166700', - 'version' => '4.0.2.0-alpha1733166700', - 'reference' => 'bca4217930504a4a5731365b736c7ea60efa437a', + 'pretty_version' => 'v4.0.2', + 'version' => '4.0.2.0', + 'reference' => 'f00645d9d70ea7f5385bd5bab9b7482407820689', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-jitm', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-logo' => array( - 'pretty_version' => '3.0.0', + 'pretty_version' => 'v3.0.0', 'version' => '3.0.0.0', - 'reference' => '312dbf2d60f16c2a545b5efde50724984a65564a', + 'reference' => 'ba35cdbfc401a43ab4e5cc4085048dfe6da3da1f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-masterbar' => array( - 'pretty_version' => '0.10.2-alpha.1733166700', - 'version' => '0.10.2.0-alpha1733166700', - 'reference' => '7f507db18e354cdc78d2d784678ea26a9c385ff2', + 'pretty_version' => 'v0.10.2', + 'version' => '0.10.2.0', + 'reference' => 'ebeb118e639cf27182f23a828330a1ee1f7aa95e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-masterbar', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-mu-wpcom' => array( - 'pretty_version' => '6.0.0-alpha.1733261868', - 'version' => '6.0.0.0-alpha1733261868', - 'reference' => 'b83cd61e92d521d8ce520538f09fb97ae94ae1e4', + 'pretty_version' => 'v6.0.0', + 'version' => '6.0.0.0', + 'reference' => 'b5c3949adbe74372df0b499b02517c370a814c03', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-mu-wpcom', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-password-checker' => array( - 'pretty_version' => '0.4.1', + 'pretty_version' => 'v0.4.1', 'version' => '0.4.1.0', - 'reference' => '01aa95f51a2f3c41ee0faaf836c17b6fc72c010b', + 'reference' => 'e721e7659cc7a6a37152a4e96485e6c139f02d5f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-password-checker', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plans' => array( - 'pretty_version' => '0.5.1', + 'pretty_version' => 'v0.5.1', 'version' => '0.5.1.0', - 'reference' => '8c9f50a5e30b2647a01ab3d25f0455991e12a6bc', + 'reference' => '458c420da2e60e8127b4ad32f5fe31603fa92130', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-post-list' => array( - 'pretty_version' => '0.7.1', + 'pretty_version' => 'v0.7.1', 'version' => '0.7.1.0', - 'reference' => '8cf469c6c0ff28195e4155e62ec9f2cafb98a44c', + 'reference' => '501e72fd33d868454dfa092ad10d652c24dbe055', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-post-list', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-redirect' => array( - 'pretty_version' => '3.0.1', + 'pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', - 'reference' => '8fb6cd0393f1b73c61f553dd6d0b2bd795b0a8c2', + 'reference' => '89732a3ba1c5eba8cfd948b7567823cd884102d5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-redirect', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-roles' => array( - 'pretty_version' => '3.0.1', + 'pretty_version' => 'v3.0.1', 'version' => '3.0.1.0', - 'reference' => '4553bd3d23625e7abae7f775998bec199923b070', + 'reference' => 'fe5f2a45901ea14be00728119d097619615fb031', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-roles', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-stats' => array( - 'pretty_version' => '0.14.1', + 'pretty_version' => 'v0.14.1', 'version' => '0.14.1.0', - 'reference' => 'dfacf1b0982fdb1735faa0edfc38c626871478c7', + 'reference' => '1500f72eb135dbdc362d2d1cbb463d83ce826f74', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-stats-admin' => array( - 'pretty_version' => '0.23.1', + 'pretty_version' => 'v0.23.1', 'version' => '0.23.1.0', - 'reference' => 'dbe90f43f1bb7602b1f5518aa1556ff2ca30ce48', + 'reference' => '329e10c4f6cc5150138a84e5237926dbadf7b8fd', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-stats-admin', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-status' => array( - 'pretty_version' => '5.0.1', + 'pretty_version' => 'v5.0.1', 'version' => '5.0.1.0', - 'reference' => '12e1abd32fb4f6f40721d6254f3df5f63b153948', + 'reference' => '769f55b6327187a85c14ed21943eea430f63220d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '4.0.2', + 'pretty_version' => 'v4.0.2', 'version' => '4.0.2.0', - 'reference' => '4774f687559bc1401db3874e4137031860afd28c', + 'reference' => '7e2b0a0da99146d53efde2fb748bd4b9a1cf3659', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/jetpack-sync', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/scheduled-updates' => array( - 'pretty_version' => '0.14.0-alpha.1732217150', - 'version' => '0.14.0.0-alpha1732217150', - 'reference' => '04cb499708c8b9a6969f7e279b5c1fd044651afa', + 'pretty_version' => 'v0.14.0', + 'version' => '0.14.0.0', + 'reference' => '6e534926981fc4f826beb0e1dc595ceebc454c62', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../automattic/scheduled-updates', 'aliases' => array(), diff --git a/wpcomsh.php b/wpcomsh.php index 79b4b19d..7500350e 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: 6.0.0-alpha + * Version: 6.0.0 * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '6.0.0-alpha' ); +define( 'WPCOMSH_VERSION', '6.0.0' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' );