diff --git a/projects/packages/admin-ui/changelog/fix-bump_composer_versions b/projects/packages/admin-ui/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/admin-ui/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/admin-ui/composer.json b/projects/packages/admin-ui/composer.json index 0d6827c29f080..5b05f0fd12d46 100644 --- a/projects/packages/admin-ui/composer.json +++ b/projects/packages/admin-ui/composer.json @@ -10,7 +10,7 @@ "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/analyzer/changelog/fix-bump_composer_versions b/projects/packages/analyzer/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/analyzer/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/analyzer/composer.json b/projects/packages/analyzer/composer.json index 025c69c8ecb13..95ccd2c8a6f49 100644 --- a/projects/packages/analyzer/composer.json +++ b/projects/packages/analyzer/composer.json @@ -9,7 +9,7 @@ ], "require": { "php": ">=7.2", - "nikic/php-parser": "4.13.2" + "nikic/php-parser": "^4.19" }, "require-dev": { "php": "^7.4 || ^8.0", diff --git a/projects/packages/analyzer/src/Declarations/class-visitor.php b/projects/packages/analyzer/src/Declarations/class-visitor.php index d5d29078fdeb8..a336ef385f482 100644 --- a/projects/packages/analyzer/src/Declarations/class-visitor.php +++ b/projects/packages/analyzer/src/Declarations/class-visitor.php @@ -20,7 +20,7 @@ public function __construct( $current_relative_path, $declarations ) { public function enterNode( Node $node ) { if ( $node instanceof Node\Stmt\Class_ ) { - $namespaced_name = '\\' . implode( '\\', $node->namespacedName->parts ); + $namespaced_name = '\\' . implode( '\\', $node->namespacedName->getParts() ); $this->current_class = $namespaced_name; $this->declarations->add( new Class_( $this->current_relative_path, $node->getLine(), $namespaced_name ) ); diff --git a/projects/packages/analyzer/src/Invocations/class-visitor.php b/projects/packages/analyzer/src/Invocations/class-visitor.php index 136ccd95995d6..d0bfa42ecf405 100644 --- a/projects/packages/analyzer/src/Invocations/class-visitor.php +++ b/projects/packages/analyzer/src/Invocations/class-visitor.php @@ -56,7 +56,7 @@ public function enterNode( Node $node ) { // calls like this: ( require "$root_dir/modules.php" )( $root_dir ). $function_name = ''; // do nothing :shrug:. } else { - $function_name = implode( '\\', $node->name->parts ); + $function_name = implode( '\\', $node->name->getParts() ); } $out = new Function_Call( $this->file_path, $node->getLine(), $function_name ); diff --git a/projects/packages/analyzer/src/class-utils.php b/projects/packages/analyzer/src/class-utils.php index aba34f14c3a43..7bb4123fecbaa 100644 --- a/projects/packages/analyzer/src/class-utils.php +++ b/projects/packages/analyzer/src/class-utils.php @@ -43,7 +43,7 @@ public static function node_to_class_name( $node, $class_for_self = null ) { || $node instanceof Node\Stmt\Class_ ) { $class_name = $node->name; } elseif ( $node instanceof Node\Name ) { - $class_name = '\\' . implode( '\\', $node->parts ); + $class_name = '\\' . implode( '\\', $node->getParts() ); } elseif ( $node instanceof Node\Expr\PropertyFetch ) { $class_name = '$' diff --git a/projects/packages/backup-helper-script-manager/changelog/fix-bump_composer_versions b/projects/packages/backup-helper-script-manager/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/backup-helper-script-manager/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/backup-helper-script-manager/composer.json b/projects/packages/backup-helper-script-manager/composer.json index 44d9f578f8076..32d96cf56b28d 100644 --- a/projects/packages/backup-helper-script-manager/composer.json +++ b/projects/packages/backup-helper-script-manager/composer.json @@ -9,7 +9,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/backup/changelog/fix-bump_composer_versions b/projects/packages/backup/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/backup/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/backup/composer.json b/projects/packages/backup/composer.json index 9b71d9ade289f..8fb20e1f1847e 100644 --- a/projects/packages/backup/composer.json +++ b/projects/packages/backup/composer.json @@ -19,7 +19,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "yoast/phpunit-polyfills": "^1.1.1", - "automattic/wordbless": "@dev" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/blaze/changelog/fix-bump_composer_versions b/projects/packages/blaze/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/blaze/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/blaze/composer.json b/projects/packages/blaze/composer.json index 362666a0ff33a..7ca3fc0bfe543 100644 --- a/projects/packages/blaze/composer.json +++ b/projects/packages/blaze/composer.json @@ -16,7 +16,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/blocks/changelog/fix-bump_composer_versions b/projects/packages/blocks/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/blocks/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/blocks/composer.json b/projects/packages/blocks/composer.json index e7809ddd76f6c..d50ab3b95fc13 100644 --- a/projects/packages/blocks/composer.json +++ b/projects/packages/blocks/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-constants": "@dev" }, "require-dev": { - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev" diff --git a/projects/packages/boost-core/changelog/fix-bump_composer_versions b/projects/packages/boost-core/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/boost-core/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/boost-core/composer.json b/projects/packages/boost-core/composer.json index 564a325055658..e50f5bb5b0b03 100644 --- a/projects/packages/boost-core/composer.json +++ b/projects/packages/boost-core/composer.json @@ -10,7 +10,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/chatbot/changelog/fix-bump_composer_versions b/projects/packages/chatbot/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/chatbot/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/chatbot/composer.json b/projects/packages/chatbot/composer.json index bcc49a83b367e..63fe06d9817e7 100644 --- a/projects/packages/chatbot/composer.json +++ b/projects/packages/chatbot/composer.json @@ -9,7 +9,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/classic-theme-helper/changelog/fix-bump_composer_versions b/projects/packages/classic-theme-helper/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/classic-theme-helper/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/classic-theme-helper/composer.json b/projects/packages/classic-theme-helper/composer.json index c432bb7e6efbf..81ce4ccd47f30 100644 --- a/projects/packages/classic-theme-helper/composer.json +++ b/projects/packages/classic-theme-helper/composer.json @@ -10,7 +10,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/connection/changelog/fix-bump_composer_versions b/projects/packages/connection/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/connection/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/connection/composer.json b/projects/packages/connection/composer.json index 50367c81e0ac9..e3b0986165808 100644 --- a/projects/packages/connection/composer.json +++ b/projects/packages/connection/composer.json @@ -14,7 +14,7 @@ "automattic/jetpack-redirect": "@dev" }, "require-dev": { - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1", "brain/monkey": "^2.6.2", "automattic/jetpack-changelogger": "@dev", diff --git a/projects/packages/forms/changelog/fix-bump_composer_versions b/projects/packages/forms/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/forms/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/forms/composer.json b/projects/packages/forms/composer.json index 41f7fdb8ea2be..f66c867f53767 100644 --- a/projects/packages/forms/composer.json +++ b/projects/packages/forms/composer.json @@ -16,7 +16,7 @@ "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-connection": "@dev", - "automattic/wordbless": "^0.4.1" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/image-cdn/changelog/fix-bump_composer_versions b/projects/packages/image-cdn/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/image-cdn/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/image-cdn/composer.json b/projects/packages/image-cdn/composer.json index 339b0131e82c9..4a0cf1dee935a 100644 --- a/projects/packages/image-cdn/composer.json +++ b/projects/packages/image-cdn/composer.json @@ -9,7 +9,7 @@ "automattic/jetpack-status": "@dev" }, "require-dev": { - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev" }, diff --git a/projects/packages/import/changelog/fix-bump_composer_versions b/projects/packages/import/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/import/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/import/composer.json b/projects/packages/import/composer.json index b7509366619d7..1078a69cb70d2 100644 --- a/projects/packages/import/composer.json +++ b/projects/packages/import/composer.json @@ -11,7 +11,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-bump_composer_versions b/projects/packages/jetpack-mu-wpcom/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/jetpack-mu-wpcom/composer.json b/projects/packages/jetpack-mu-wpcom/composer.json index 6055fc30067d3..147981e1a1ff5 100644 --- a/projects/packages/jetpack-mu-wpcom/composer.json +++ b/projects/packages/jetpack-mu-wpcom/composer.json @@ -22,7 +22,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/licensing/changelog/fix-bump_composer_versions b/projects/packages/licensing/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/licensing/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/licensing/composer.json b/projects/packages/licensing/composer.json index 76ab906496baf..a935cd4fd23f2 100644 --- a/projects/packages/licensing/composer.json +++ b/projects/packages/licensing/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-connection": "@dev" }, "require-dev": { - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev" }, diff --git a/projects/packages/masterbar/changelog/fix-bump_composer_versions b/projects/packages/masterbar/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/masterbar/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/masterbar/composer.json b/projects/packages/masterbar/composer.json index dbdc8b7a0427b..d2b33c4d35ead 100644 --- a/projects/packages/masterbar/composer.json +++ b/projects/packages/masterbar/composer.json @@ -20,7 +20,7 @@ "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", "automattic/patchwork-redefine-exit": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/my-jetpack/changelog/fix-bump_composer_versions b/projects/packages/my-jetpack/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/my-jetpack/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/my-jetpack/composer.json b/projects/packages/my-jetpack/composer.json index f330d47bd379e..4b80a45936ce7 100644 --- a/projects/packages/my-jetpack/composer.json +++ b/projects/packages/my-jetpack/composer.json @@ -23,7 +23,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev" }, diff --git a/projects/packages/password-checker/changelog/fix-bump_composer_versions b/projects/packages/password-checker/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/password-checker/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/password-checker/composer.json b/projects/packages/password-checker/composer.json index c846a225d3333..8399e0e244c0c 100644 --- a/projects/packages/password-checker/composer.json +++ b/projects/packages/password-checker/composer.json @@ -8,7 +8,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/packages/patchwork-redefine-exit/changelog/fix-bump_composer_versions b/projects/packages/patchwork-redefine-exit/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/patchwork-redefine-exit/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/patchwork-redefine-exit/composer.json b/projects/packages/patchwork-redefine-exit/composer.json index 200b4f025f125..1247774ea6451 100644 --- a/projects/packages/patchwork-redefine-exit/composer.json +++ b/projects/packages/patchwork-redefine-exit/composer.json @@ -12,7 +12,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "antecedent/patchwork": "^2.1" + "antecedent/patchwork": "^2.2" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/projects/packages/plans/changelog/fix-bump_composer_versions b/projects/packages/plans/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/plans/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/plans/composer.json b/projects/packages/plans/composer.json index ca7e7a00874d2..904128f8c3c4f 100644 --- a/projects/packages/plans/composer.json +++ b/projects/packages/plans/composer.json @@ -11,7 +11,7 @@ "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/post-list/changelog/fix-bump_composer_versions b/projects/packages/post-list/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/post-list/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/post-list/composer.json b/projects/packages/post-list/composer.json index 9e3741d7b10ae..f6f64845ddf6c 100644 --- a/projects/packages/post-list/composer.json +++ b/projects/packages/post-list/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-assets": "@dev" }, "require-dev": { - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "automattic/jetpack-changelogger": "@dev", "yoast/phpunit-polyfills": "^1.1.1" }, diff --git a/projects/packages/protect-models/changelog/fix-bump_composer_versions b/projects/packages/protect-models/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/protect-models/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/protect-models/composer.json b/projects/packages/protect-models/composer.json index 4a3a91bb98e34..c8a005ad7648c 100644 --- a/projects/packages/protect-models/composer.json +++ b/projects/packages/protect-models/composer.json @@ -9,7 +9,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/protect-status/changelog/fix-bump_composer_versions b/projects/packages/protect-status/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/protect-status/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/protect-status/composer.json b/projects/packages/protect-status/composer.json index bbd97818917ca..f6b49538444e7 100644 --- a/projects/packages/protect-status/composer.json +++ b/projects/packages/protect-status/composer.json @@ -14,7 +14,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/publicize/changelog/fix-bump_composer_versions b/projects/packages/publicize/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/publicize/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/publicize/composer.json b/projects/packages/publicize/composer.json index 2bd27892b8649..14564ed67db02 100644 --- a/projects/packages/publicize/composer.json +++ b/projects/packages/publicize/composer.json @@ -16,7 +16,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/scheduled-updates/changelog/fix-bump_composer_versions b/projects/packages/scheduled-updates/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/scheduled-updates/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/scheduled-updates/composer.json b/projects/packages/scheduled-updates/composer.json index 4b0eb0b695ca9..8ba41c0621577 100644 --- a/projects/packages/scheduled-updates/composer.json +++ b/projects/packages/scheduled-updates/composer.json @@ -14,7 +14,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "php-mock/php-mock-phpunit": "^2.10" }, "suggest": { diff --git a/projects/packages/schema/changelog/fix-bump_composer_versions b/projects/packages/schema/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/schema/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/schema/composer.json b/projects/packages/schema/composer.json index e5440b632e735..fa704c4425019 100644 --- a/projects/packages/schema/composer.json +++ b/projects/packages/schema/composer.json @@ -9,7 +9,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "autoload": { "classmap": [ diff --git a/projects/packages/search/changelog/fix-bump_composer_versions b/projects/packages/search/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/search/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/search/composer.json b/projects/packages/search/composer.json index 06209b42a9e3b..f6f1622eaae11 100644 --- a/projects/packages/search/composer.json +++ b/projects/packages/search/composer.json @@ -16,7 +16,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "yoast/phpunit-polyfills": "^1.1.1", - "automattic/wordbless": "0.4.2" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/stats-admin/changelog/fix-bump_composer_versions b/projects/packages/stats-admin/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/stats-admin/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/stats-admin/composer.json b/projects/packages/stats-admin/composer.json index 155987e4b25a4..28b46f5ba614e 100644 --- a/projects/packages/stats-admin/composer.json +++ b/projects/packages/stats-admin/composer.json @@ -15,7 +15,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/stats/changelog/fix-bump_composer_versions b/projects/packages/stats/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/stats/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/stats/composer.json b/projects/packages/stats/composer.json index 4da8ca5f45c94..c89124b0fdac1 100644 --- a/projects/packages/stats/composer.json +++ b/projects/packages/stats/composer.json @@ -12,7 +12,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/stub-generator/changelog/fix-bump_composer_versions b/projects/packages/stub-generator/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/stub-generator/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/stub-generator/composer.json b/projects/packages/stub-generator/composer.json index 5ec3e5f0d8688..c3f753792d305 100644 --- a/projects/packages/stub-generator/composer.json +++ b/projects/packages/stub-generator/composer.json @@ -12,9 +12,9 @@ "require": { "php": ">=7.4", "composer/xdebug-handler": "^3.0.4", - "nikic/php-parser": "^5.0.2", - "phpstan/phpdoc-parser": "^1.28.0", - "symfony/console": "^5.3 || ^6.0 || ^7.0" + "nikic/php-parser": "^5.3", + "phpstan/phpdoc-parser": "^2.0", + "symfony/console": "^5.4 || ^6.4 || ^7.1" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/projects/packages/stub-generator/src/PhpParser/PhpDocNameResolver.php b/projects/packages/stub-generator/src/PhpParser/PhpDocNameResolver.php index 6750db987eed0..473dbbb8efa4b 100644 --- a/projects/packages/stub-generator/src/PhpParser/PhpDocNameResolver.php +++ b/projects/packages/stub-generator/src/PhpParser/PhpDocNameResolver.php @@ -19,6 +19,7 @@ use PHPStan\PhpDocParser\Parser\PhpDocParser; use PHPStan\PhpDocParser\Parser\TokenIterator; use PHPStan\PhpDocParser\Parser\TypeParser; +use PHPStan\PhpDocParser\ParserConfig; use PHPStan\PhpDocParser\Printer\Printer; use Symfony\Component\Console\Output\OutputInterface; @@ -72,14 +73,16 @@ class PhpDocNameResolver extends NodeVisitorAbstract { */ public function __construct( NameContext $nameContext, OutputInterface $output ) { $this->output = $output; - $usedAttributes = array( - 'lines' => true, - 'indexes' => true, + $config = new ParserConfig( + array( + 'lines' => true, + 'indexes' => true, + ) ); - $this->lexer = new Lexer(); - $constExprParser = new ConstExprParser( true, true, $usedAttributes ); - $typeParser = new TypeParser( $constExprParser, true, $usedAttributes ); - $this->parser = new PhpDocParser( $typeParser, $constExprParser, true, true, $usedAttributes ); + $this->lexer = new Lexer( $config ); + $constExprParser = new ConstExprParser( $config ); + $typeParser = new TypeParser( $config, $constExprParser ); + $this->parser = new PhpDocParser( $config, $typeParser, $constExprParser ); $this->traverser = new NodeTraverser( array( new CloningVisitor(), new PhpDocParser_NameResolver( $nameContext, $output ) ) ); $this->printer = new Printer(); } diff --git a/projects/packages/stub-generator/src/PhpParser/StripDocsNodeVisitor.php b/projects/packages/stub-generator/src/PhpParser/StripDocsNodeVisitor.php index bd700f33383dc..35377064fbae5 100644 --- a/projects/packages/stub-generator/src/PhpParser/StripDocsNodeVisitor.php +++ b/projects/packages/stub-generator/src/PhpParser/StripDocsNodeVisitor.php @@ -18,6 +18,7 @@ use PHPStan\PhpDocParser\Parser\PhpDocParser; use PHPStan\PhpDocParser\Parser\TokenIterator; use PHPStan\PhpDocParser\Parser\TypeParser; +use PHPStan\PhpDocParser\ParserConfig; use PHPStan\PhpDocParser\Printer\Printer; use Symfony\Component\Console\Output\OutputInterface; @@ -68,14 +69,16 @@ class StripDocsNodeVisitor extends NodeVisitorAbstract { */ public function __construct( OutputInterface $output ) { $this->output = $output; - $usedAttributes = array( - 'lines' => true, - 'indexes' => true, + $config = new ParserConfig( + array( + 'lines' => true, + 'indexes' => true, + ) ); - $this->lexer = new Lexer(); - $constExprParser = new ConstExprParser( true, true, $usedAttributes ); - $typeParser = new TypeParser( $constExprParser, true, $usedAttributes ); - $this->parser = new PhpDocParser( $typeParser, $constExprParser, true, true, $usedAttributes ); + $this->lexer = new Lexer( $config ); + $constExprParser = new ConstExprParser( $config ); + $typeParser = new TypeParser( $config, $constExprParser ); + $this->parser = new PhpDocParser( $config, $typeParser, $constExprParser ); $this->traverser = new NodeTraverser( array( new CloningVisitor(), new PhpDocParser_StripDocsNodeVisitor( $output ) ) ); $this->printer = new Printer(); } diff --git a/projects/packages/stub-generator/tests/php/PhpDocParser/StripDocsNodeVisitorTest.php b/projects/packages/stub-generator/tests/php/PhpDocParser/StripDocsNodeVisitorTest.php index 0b48e2cdb68d6..182d6bf25415b 100644 --- a/projects/packages/stub-generator/tests/php/PhpDocParser/StripDocsNodeVisitorTest.php +++ b/projects/packages/stub-generator/tests/php/PhpDocParser/StripDocsNodeVisitorTest.php @@ -17,6 +17,7 @@ use PHPStan\PhpDocParser\Parser\PhpDocParser; use PHPStan\PhpDocParser\Parser\TokenIterator; use PHPStan\PhpDocParser\Parser\TypeParser; +use PHPStan\PhpDocParser\ParserConfig; use PHPStan\PhpDocParser\Printer\Printer; use PHPUnit\Framework\TestCase; use Symfony\Component\Console\Output\BufferedOutput; @@ -40,14 +41,16 @@ class StripDocsNodeVisitorTest extends TestCase { public function testIntegration( string $input, string $expect, int $verbosity = BufferedOutput::VERBOSITY_NORMAL, string $expectOutput = '' ) { $output = new BufferedOutput( $verbosity ); - $usedAttributes = array( - 'lines' => true, - 'indexes' => true, + $config = new ParserConfig( + array( + 'lines' => true, + 'indexes' => true, + ) ); - $lexer = new Lexer(); - $constExprParser = new ConstExprParser( true, true, $usedAttributes ); - $typeParser = new TypeParser( $constExprParser, true, $usedAttributes ); - $parser = new PhpDocParser( $typeParser, $constExprParser, true, true, $usedAttributes ); + $lexer = new Lexer( $config ); + $constExprParser = new ConstExprParser( $config ); + $typeParser = new TypeParser( $config, $constExprParser ); + $parser = new PhpDocParser( $config, $typeParser, $constExprParser ); $traverser = new NodeTraverser( array( new CloningVisitor(), new StripDocsNodeVisitor( $output ) ) ); $printer = new Printer(); diff --git a/projects/packages/sync/changelog/fix-bump_composer_versions b/projects/packages/sync/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/sync/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index ae52db07f673f..ecf9326a22250 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -17,7 +17,7 @@ "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/transport-helper/changelog/fix-bump_composer_versions b/projects/packages/transport-helper/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/transport-helper/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/transport-helper/composer.json b/projects/packages/transport-helper/composer.json index 22b1e8e5838d6..a3a313859aaaf 100644 --- a/projects/packages/transport-helper/composer.json +++ b/projects/packages/transport-helper/composer.json @@ -11,7 +11,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/videopress/changelog/fix-bump_composer_versions b/projects/packages/videopress/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/videopress/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/videopress/composer.json b/projects/packages/videopress/composer.json index 2076358f7c46e..2ef0f599104cc 100644 --- a/projects/packages/videopress/composer.json +++ b/projects/packages/videopress/composer.json @@ -14,7 +14,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2" }, "suggest": { diff --git a/projects/packages/waf/changelog/fix-bump_composer_versions b/projects/packages/waf/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/waf/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/waf/composer.json b/projects/packages/waf/composer.json index 05c3a590b185b..40b15b5c7ebdc 100644 --- a/projects/packages/waf/composer.json +++ b/projects/packages/waf/composer.json @@ -14,7 +14,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/packages/wp-js-data-sync/changelog/fix-bump_composer_versions b/projects/packages/wp-js-data-sync/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/packages/wp-js-data-sync/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/packages/wp-js-data-sync/composer.json b/projects/packages/wp-js-data-sync/composer.json index b40a0374faed9..a1dad33e5ad0d 100644 --- a/projects/packages/wp-js-data-sync/composer.json +++ b/projects/packages/wp-js-data-sync/composer.json @@ -10,7 +10,7 @@ "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master" + "automattic/wordbless": "^0.4.2" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/projects/plugins/automattic-for-agencies-client/changelog/fix-bump_composer_versions b/projects/plugins/automattic-for-agencies-client/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index 591226b189324..f8e83b03c4ee5 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -399,7 +399,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -415,7 +415,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -603,14 +603,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -905,7 +905,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -920,7 +920,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/backup/changelog/fix-bump_composer_versions b/projects/plugins/backup/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/backup/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index 34681f18ede2b..89130017f0e05 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/backup", - "reference": "655198fdc55925ac217e7351defbf37141cfad16" + "reference": "21810e1f0840dc4af96874d247c87593aca69a83" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -284,7 +284,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -357,14 +357,14 @@ "dist": { "type": "path", "url": "../../packages/backup-helper-script-manager", - "reference": "d7347b2fb795402fab841b896683e1bf26fc4060" + "reference": "68ce67725be5f49e32f5a3aab1decf03d9974f0c" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -417,7 +417,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -425,7 +425,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -693,7 +693,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -709,7 +709,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1100,7 +1100,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1108,7 +1108,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1215,7 +1215,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1238,7 +1238,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1319,14 +1319,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1380,7 +1380,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1389,7 +1389,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1504,14 +1504,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1574,7 +1574,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1586,7 +1586,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1822,7 +1822,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1837,7 +1837,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/beta/changelog/fix-bump_composer_versions b/projects/plugins/beta/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/beta/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/beta/composer.lock b/projects/plugins/beta/composer.lock index d4816c55787c8..bc86fd3b0bc5d 100644 --- a/projects/plugins/beta/composer.lock +++ b/projects/plugins/beta/composer.lock @@ -12,7 +12,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -20,7 +20,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/boost/changelog/fix-bump_composer_versions b/projects/plugins/boost/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/boost/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 09efdd5ca892c..15a7be746907b 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -275,7 +275,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -543,7 +543,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -559,7 +559,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -817,7 +817,7 @@ "dist": { "type": "path", "url": "../../packages/image-cdn", - "reference": "679072fe9bb7af143d368c171e0517767d448552" + "reference": "2f3892617ef6b03c12519faeab0384e4e146817d" }, "require": { "automattic/jetpack-assets": "@dev", @@ -826,7 +826,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1016,7 +1016,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1024,7 +1024,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1131,7 +1131,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1154,7 +1154,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1235,14 +1235,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1296,7 +1296,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1305,7 +1305,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1488,14 +1488,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1558,7 +1558,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1570,7 +1570,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1742,14 +1742,14 @@ "dist": { "type": "path", "url": "../../packages/schema", - "reference": "c738408606a189bafdf15bd688234bc576905d93" + "reference": "49eadc9d6e304921facada515f1165c1131a0bf6" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1876,7 +1876,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1891,7 +1891,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1954,7 +1954,7 @@ "dist": { "type": "path", "url": "../../packages/wp-js-data-sync", - "reference": "259a547b786475efdab1fb4da8d5e216590ae2bc" + "reference": "64d7033777738ec3c1df9002b5921646d52b4ba6" }, "require": { "automattic/jetpack-schema": "@dev", @@ -1962,7 +1962,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/classic-theme-helper-plugin/changelog/fix-bump_composer_versions b/projects/plugins/classic-theme-helper-plugin/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/classic-theme-helper-plugin/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/classic-theme-helper-plugin/composer.lock b/projects/plugins/classic-theme-helper-plugin/composer.lock index cd9796d54eeed..d42c5cd4f1715 100644 --- a/projects/plugins/classic-theme-helper-plugin/composer.lock +++ b/projects/plugins/classic-theme-helper-plugin/composer.lock @@ -202,7 +202,7 @@ "dist": { "type": "path", "url": "../../packages/classic-theme-helper", - "reference": "9e2bc32f32e57572a4807dee16ad5d0b3b2e730b" + "reference": "313ac02e74dbf44eec1ddbf485af492b66d96a9a" }, "require": { "automattic/jetpack-assets": "@dev", @@ -210,7 +210,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/crm/changelog/fix-bump_composer_versions b/projects/plugins/crm/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/crm/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/crm/composer.json b/projects/plugins/crm/composer.json index 978cf23064c09..de79afc121a6f 100644 --- a/projects/plugins/crm/composer.json +++ b/projects/plugins/crm/composer.json @@ -57,8 +57,8 @@ "automattic/jetpack-assets": "@dev", "automattic/jetpack-autoloader": "@dev", "automattic/jetpack-composer-plugin": "@dev", - "automattic/woocommerce": "^3.0", - "dompdf/dompdf": "2.0.4" + "automattic/woocommerce": "^3.1", + "dompdf/dompdf": "^2.0" }, "repositories": [ { diff --git a/projects/plugins/crm/composer.lock b/projects/plugins/crm/composer.lock index 1070e7ec5b9d2..36f1667e4565a 100644 --- a/projects/plugins/crm/composer.lock +++ b/projects/plugins/crm/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bfd4738d720476b4bef81b56eb5817cb", + "content-hash": "aded1a2522c87b6342a26d0190d55e66", "packages": [ { "name": "automattic/jetpack-assets", @@ -312,16 +312,16 @@ }, { "name": "dompdf/dompdf", - "version": "v2.0.4", + "version": "v2.0.8", "source": { "type": "git", "url": "https://github.com/dompdf/dompdf.git", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f" + "reference": "c20247574601700e1f7c8dab39310fca1964dc52" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dompdf/dompdf/zipball/093f2d9739cec57428e39ddadedfd4f3ae862c0f", - "reference": "093f2d9739cec57428e39ddadedfd4f3ae862c0f", + "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52", + "reference": "c20247574601700e1f7c8dab39310fca1964dc52", "shasum": "" }, "require": { @@ -329,7 +329,7 @@ "ext-mbstring": "*", "masterminds/html5": "^2.0", "phenx/php-font-lib": ">=0.5.4 <1.0.0", - "phenx/php-svg-lib": ">=0.3.3 <1.0.0", + "phenx/php-svg-lib": ">=0.5.2 <1.0.0", "php": "^7.1 || ^8.0" }, "require-dev": { @@ -368,9 +368,9 @@ "homepage": "https://github.com/dompdf/dompdf", "support": { "issues": "https://github.com/dompdf/dompdf/issues", - "source": "https://github.com/dompdf/dompdf/tree/v2.0.4" + "source": "https://github.com/dompdf/dompdf/tree/v2.0.8" }, - "time": "2023-12-12T20:19:39+00:00" + "time": "2024-04-29T13:06:17+00:00" }, { "name": "masterminds/html5", @@ -3927,16 +3927,16 @@ }, { "name": "symfony/console", - "version": "v7.1.7", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a" + "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/3284aafcac338b6e86fd955ee4d794cbe434151a", - "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a", + "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5", + "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5", "shasum": "" }, "require": { @@ -4000,7 +4000,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.1.7" + "source": "https://github.com/symfony/console/tree/v7.1.8" }, "funding": [ { @@ -4016,7 +4016,7 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:55+00:00" + "time": "2024-11-06T14:23:19+00:00" }, { "name": "symfony/css-selector", @@ -4757,16 +4757,16 @@ }, { "name": "symfony/process", - "version": "v7.1.7", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "9b8a40b7289767aa7117e957573c2a535efe6585" + "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/9b8a40b7289767aa7117e957573c2a535efe6585", - "reference": "9b8a40b7289767aa7117e957573c2a535efe6585", + "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892", + "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892", "shasum": "" }, "require": { @@ -4798,7 +4798,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.1.7" + "source": "https://github.com/symfony/process/tree/v7.1.8" }, "funding": [ { @@ -4814,7 +4814,7 @@ "type": "tidelift" } ], - "time": "2024-11-06T09:25:12+00:00" + "time": "2024-11-06T14:23:19+00:00" }, { "name": "symfony/service-contracts", @@ -4901,16 +4901,16 @@ }, { "name": "symfony/string", - "version": "v7.1.6", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626" + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/61b72d66bf96c360a727ae6232df5ac83c71f626", - "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626", + "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281", + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281", "shasum": "" }, "require": { @@ -4968,7 +4968,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.1.6" + "source": "https://github.com/symfony/string/tree/v7.1.8" }, "funding": [ { @@ -4984,20 +4984,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-11-13T13:31:21+00:00" }, { "name": "symfony/var-dumper", - "version": "v7.1.7", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "f6ea51f669760cacd7464bf7eaa0be87b8072db1" + "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/f6ea51f669760cacd7464bf7eaa0be87b8072db1", - "reference": "f6ea51f669760cacd7464bf7eaa0be87b8072db1", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8", + "reference": "7bb01a47b1b00428d32b5e7b4d3b2d1aa58d3db8", "shasum": "" }, "require": { @@ -5051,7 +5051,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.1.7" + "source": "https://github.com/symfony/var-dumper/tree/v7.1.8" }, "funding": [ { @@ -5067,7 +5067,7 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:55+00:00" + "time": "2024-11-08T15:46:42+00:00" }, { "name": "symfony/yaml", diff --git a/projects/plugins/inspect/changelog/fix-bump_composer_versions b/projects/plugins/inspect/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/inspect/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/inspect/composer.lock b/projects/plugins/inspect/composer.lock index b6aecd9caf604..d2df94e5fe376 100644 --- a/projects/plugins/inspect/composer.lock +++ b/projects/plugins/inspect/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -399,7 +399,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -415,7 +415,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, diff --git a/projects/plugins/jetpack/changelog/fix-bump_composer_versions b/projects/plugins/jetpack/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..aa5f62eedbb49 --- /dev/null +++ b/projects/plugins/jetpack/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Updated dependencies. diff --git a/projects/plugins/jetpack/composer.json b/projects/plugins/jetpack/composer.json index 197b7abd9c85b..785b98a0c1604 100644 --- a/projects/plugins/jetpack/composer.json +++ b/projects/plugins/jetpack/composer.json @@ -53,10 +53,10 @@ "scssphp/scssphp": "1.12.0" }, "require-dev": { - "antecedent/patchwork": "^2.1.28", + "antecedent/patchwork": "^2.2", "automattic/jetpack-changelogger": "@dev", "automattic/patchwork-redefine-exit": "@dev", - "johnkary/phpunit-speedtrap": "^4.0.0 || ^2.0.0", + "johnkary/phpunit-speedtrap": "^4.0.0", "yoast/phpunit-polyfills": "^1.1.1" }, "scripts": { diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 69aaea709cb00..08f89faa82962 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "123885af37389b4c687c46a31399b7d6", + "content-hash": "7b6c53f88fcb9c7098d80137fd6d13c1", "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/backup", - "reference": "655198fdc55925ac217e7351defbf37141cfad16" + "reference": "21810e1f0840dc4af96874d247c87593aca69a83" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -284,7 +284,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -357,14 +357,14 @@ "dist": { "type": "path", "url": "../../packages/backup-helper-script-manager", - "reference": "d7347b2fb795402fab841b896683e1bf26fc4060" + "reference": "68ce67725be5f49e32f5a3aab1decf03d9974f0c" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -417,7 +417,7 @@ "dist": { "type": "path", "url": "../../packages/blaze", - "reference": "f214ac58ad1f8840165fda6bda0a069f7d28f597" + "reference": "8a993aa3a4e8249106ffcd487133ce9d2080ab54" }, "require": { "automattic/jetpack-assets": "@dev", @@ -431,7 +431,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -498,7 +498,7 @@ "dist": { "type": "path", "url": "../../packages/blocks", - "reference": "e817f660cad04dafee869691cc7dbea18e4fc8f9" + "reference": "0e645820fdadb26bea58ce5e26b75d396452fffa" }, "require": { "automattic/jetpack-constants": "@dev", @@ -506,7 +506,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -560,7 +560,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -568,7 +568,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -704,7 +704,7 @@ "dist": { "type": "path", "url": "../../packages/classic-theme-helper", - "reference": "9e2bc32f32e57572a4807dee16ad5d0b3b2e730b" + "reference": "313ac02e74dbf44eec1ddbf485af492b66d96a9a" }, "require": { "automattic/jetpack-assets": "@dev", @@ -712,7 +712,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -944,7 +944,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -960,7 +960,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1271,7 +1271,7 @@ "dist": { "type": "path", "url": "../../packages/forms", - "reference": "90b2580938cafb2a1c5d8cb25b0a09f89998a844" + "reference": "fd4c0bda2ac5982e1bbd59d6fbad3528b33f931d" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1285,7 +1285,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-connection": "@dev", - "automattic/wordbless": "^0.4.1", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1355,7 +1355,7 @@ "dist": { "type": "path", "url": "../../packages/image-cdn", - "reference": "679072fe9bb7af143d368c171e0517767d448552" + "reference": "2f3892617ef6b03c12519faeab0384e4e146817d" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1364,7 +1364,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1421,7 +1421,7 @@ "dist": { "type": "path", "url": "../../packages/import", - "reference": "1259c0f4e43174d7fa062f85c46b6ff8dfbe0302" + "reference": "ce1f897e2725e7fdb0b0c394952c9941b5911ae5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1430,7 +1430,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1626,7 +1626,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1634,7 +1634,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "241190f98185b67e7591d35e4befa146871c6502" + "reference": "dfb426192c3dd1e3da2e651f4d425bd1b19342c6" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1758,7 +1758,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/patchwork-redefine-exit": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1824,7 +1824,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1847,7 +1847,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1928,14 +1928,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1989,7 +1989,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1998,7 +1998,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2113,7 +2113,7 @@ "dist": { "type": "path", "url": "../../packages/post-list", - "reference": "5342429a12c629993d0aff87d172ef41ba41390c" + "reference": "b81597583148862524bfa0cc33ff7c82f046c870" }, "require": { "automattic/jetpack-assets": "@dev", @@ -2121,7 +2121,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2178,14 +2178,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2248,7 +2248,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2260,7 +2260,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2323,7 +2323,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "eb9c6707498896cba6ef98f4f4f1d981161f772e" + "reference": "ab76db662348ffb061c122ec58fb2b5f34c68bbc" }, "require": { "automattic/jetpack-assets": "@dev", @@ -2337,7 +2337,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2514,7 +2514,7 @@ "dist": { "type": "path", "url": "../../packages/search", - "reference": "43224f9705a4b5a49f7c49509576bcdc5accc4c8" + "reference": "0d9a54af6c58ab28a052ca15709e92fb96c85852" }, "require": { "automattic/jetpack-assets": "@dev", @@ -2528,7 +2528,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2602,7 +2602,7 @@ "dist": { "type": "path", "url": "../../packages/stats", - "reference": "51e221485dd617c66fa2c6b6c36a0e77903bfc3d" + "reference": "81b274e63676b0387a26b3982e70fa12a7a9168b" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2612,7 +2612,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2669,7 +2669,7 @@ "dist": { "type": "path", "url": "../../packages/stats-admin", - "reference": "e690e290d4895e741483a5f864a15a3e21b9deed" + "reference": "e332c4c9c56ee97ecaac7cd6334764be889eae86" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2682,7 +2682,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2806,7 +2806,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2821,7 +2821,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -2884,7 +2884,7 @@ "dist": { "type": "path", "url": "../../packages/videopress", - "reference": "41394c8cfa5152cec1fa087f522904c542f97d7f" + "reference": "f3f2453671e1f9f6befd93a8204556d1f0eb5dff" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -2896,7 +2896,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -2967,7 +2967,7 @@ "dist": { "type": "path", "url": "../../packages/waf", - "reference": "f76505fdb68f108aded02c23ac8d51584c332fc5" + "reference": "87b4ed21764373cc765141ca1c69314513b65c0a" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2979,7 +2979,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -3443,10 +3443,10 @@ "dist": { "type": "path", "url": "../../packages/patchwork-redefine-exit", - "reference": "108aa5fc130f7b384231cc8ba658a9137ff188ea" + "reference": "a889461491a0e50272ec460ffb3fd6fa2fefde3a" }, "require": { - "antecedent/patchwork": "^2.1", + "antecedent/patchwork": "^2.2", "php": ">=7.2" }, "require-dev": { @@ -5294,16 +5294,16 @@ }, { "name": "symfony/console", - "version": "v7.1.7", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a" + "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/3284aafcac338b6e86fd955ee4d794cbe434151a", - "reference": "3284aafcac338b6e86fd955ee4d794cbe434151a", + "url": "https://api.github.com/repos/symfony/console/zipball/ff04e5b5ba043d2badfb308197b9e6b42883fcd5", + "reference": "ff04e5b5ba043d2badfb308197b9e6b42883fcd5", "shasum": "" }, "require": { @@ -5367,7 +5367,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.1.7" + "source": "https://github.com/symfony/console/tree/v7.1.8" }, "funding": [ { @@ -5383,7 +5383,7 @@ "type": "tidelift" } ], - "time": "2024-11-05T15:34:55+00:00" + "time": "2024-11-06T14:23:19+00:00" }, { "name": "symfony/deprecation-contracts", @@ -5772,16 +5772,16 @@ }, { "name": "symfony/process", - "version": "v7.1.7", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "9b8a40b7289767aa7117e957573c2a535efe6585" + "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/9b8a40b7289767aa7117e957573c2a535efe6585", - "reference": "9b8a40b7289767aa7117e957573c2a535efe6585", + "url": "https://api.github.com/repos/symfony/process/zipball/42783370fda6e538771f7c7a36e9fa2ee3a84892", + "reference": "42783370fda6e538771f7c7a36e9fa2ee3a84892", "shasum": "" }, "require": { @@ -5813,7 +5813,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.1.7" + "source": "https://github.com/symfony/process/tree/v7.1.8" }, "funding": [ { @@ -5829,7 +5829,7 @@ "type": "tidelift" } ], - "time": "2024-11-06T09:25:12+00:00" + "time": "2024-11-06T14:23:19+00:00" }, { "name": "symfony/service-contracts", @@ -5916,16 +5916,16 @@ }, { "name": "symfony/string", - "version": "v7.1.6", + "version": "v7.1.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626" + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/61b72d66bf96c360a727ae6232df5ac83c71f626", - "reference": "61b72d66bf96c360a727ae6232df5ac83c71f626", + "url": "https://api.github.com/repos/symfony/string/zipball/591ebd41565f356fcd8b090fe64dbb5878f50281", + "reference": "591ebd41565f356fcd8b090fe64dbb5878f50281", "shasum": "" }, "require": { @@ -5983,7 +5983,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.1.6" + "source": "https://github.com/symfony/string/tree/v7.1.8" }, "funding": [ { @@ -5999,7 +5999,7 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-11-13T13:31:21+00:00" }, { "name": "theseer/tokenizer", diff --git a/projects/plugins/mu-wpcom-plugin/changelog/fix-bump_composer_versions b/projects/plugins/mu-wpcom-plugin/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index a22f76e5b12ed..569b67ae33919 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -199,7 +199,7 @@ "dist": { "type": "path", "url": "../../packages/blaze", - "reference": "f214ac58ad1f8840165fda6bda0a069f7d28f597" + "reference": "8a993aa3a4e8249106ffcd487133ce9d2080ab54" }, "require": { "automattic/jetpack-assets": "@dev", @@ -213,7 +213,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -280,7 +280,7 @@ "dist": { "type": "path", "url": "../../packages/blocks", - "reference": "e817f660cad04dafee869691cc7dbea18e4fc8f9" + "reference": "0e645820fdadb26bea58ce5e26b75d396452fffa" }, "require": { "automattic/jetpack-constants": "@dev", @@ -288,7 +288,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -407,7 +407,7 @@ "dist": { "type": "path", "url": "../../packages/classic-theme-helper", - "reference": "9e2bc32f32e57572a4807dee16ad5d0b3b2e730b" + "reference": "313ac02e74dbf44eec1ddbf485af492b66d96a9a" }, "require": { "automattic/jetpack-assets": "@dev", @@ -415,7 +415,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -515,7 +515,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -531,7 +531,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -971,7 +971,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "241190f98185b67e7591d35e4befa146871c6502" + "reference": "dfb426192c3dd1e3da2e651f4d425bd1b19342c6" }, "require": { "automattic/jetpack-assets": "@dev", @@ -988,7 +988,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/patchwork-redefine-exit": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1054,7 +1054,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "8db7c8f2989a1f273fc1d562488cb78dce205dd1" + "reference": "3cca664b3c3febb0b897d5df45e1f301fdd6df3f" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1074,7 +1074,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1137,14 +1137,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1198,7 +1198,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1207,7 +1207,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1375,7 +1375,7 @@ "dist": { "type": "path", "url": "../../packages/stats", - "reference": "51e221485dd617c66fa2c6b6c36a0e77903bfc3d" + "reference": "81b274e63676b0387a26b3982e70fa12a7a9168b" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1385,7 +1385,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1442,7 +1442,7 @@ "dist": { "type": "path", "url": "../../packages/stats-admin", - "reference": "e690e290d4895e741483a5f864a15a3e21b9deed" + "reference": "e332c4c9c56ee97ecaac7cd6334764be889eae86" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1455,7 +1455,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1579,7 +1579,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1594,7 +1594,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1657,7 +1657,7 @@ "dist": { "type": "path", "url": "../../packages/scheduled-updates", - "reference": "29536a1601f0fd38fa5dd80a08276f04198b13e8" + "reference": "e497581136745408a6b8638b999157159dad634b" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1669,7 +1669,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "php-mock/php-mock-phpunit": "^2.10", "yoast/phpunit-polyfills": "^1.1.1" }, diff --git a/projects/plugins/protect/changelog/fix-bump_composer_versions b/projects/plugins/protect/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/protect/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index c3950ffde549b..8154c7b34f831 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,14 +267,14 @@ "dist": { "type": "path", "url": "../../packages/backup-helper-script-manager", - "reference": "d7347b2fb795402fab841b896683e1bf26fc4060" + "reference": "68ce67725be5f49e32f5a3aab1decf03d9974f0c" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -327,7 +327,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -335,7 +335,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -603,7 +603,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -619,7 +619,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1010,7 +1010,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1018,7 +1018,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1125,7 +1125,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1148,7 +1148,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1229,14 +1229,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1290,7 +1290,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1299,7 +1299,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1414,14 +1414,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1484,7 +1484,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1496,7 +1496,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1732,7 +1732,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1747,7 +1747,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1810,7 +1810,7 @@ "dist": { "type": "path", "url": "../../packages/transport-helper", - "reference": "a45c81feeb0fc863bff720e66c92609fc9d6ddf4" + "reference": "4353e72d5e1254cfd1f61e4cd2b81e415550c841" }, "require": { "automattic/jetpack-backup-helper-script-manager": "@dev", @@ -1819,7 +1819,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1885,7 +1885,7 @@ "dist": { "type": "path", "url": "../../packages/waf", - "reference": "f76505fdb68f108aded02c23ac8d51584c332fc5" + "reference": "87b4ed21764373cc765141ca1c69314513b65c0a" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1897,7 +1897,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/search/changelog/fix-bump_composer_versions b/projects/plugins/search/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/search/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index f80ff49f60d9d..d6f52f638d274 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -275,7 +275,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -543,7 +543,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -559,7 +559,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -950,7 +950,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -958,7 +958,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1065,7 +1065,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1088,7 +1088,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1169,14 +1169,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1230,7 +1230,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1239,7 +1239,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1354,14 +1354,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1424,7 +1424,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1436,7 +1436,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1608,7 +1608,7 @@ "dist": { "type": "path", "url": "../../packages/search", - "reference": "43224f9705a4b5a49f7c49509576bcdc5accc4c8" + "reference": "0d9a54af6c58ab28a052ca15709e92fb96c85852" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1622,7 +1622,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1696,7 +1696,7 @@ "dist": { "type": "path", "url": "../../packages/stats", - "reference": "51e221485dd617c66fa2c6b6c36a0e77903bfc3d" + "reference": "81b274e63676b0387a26b3982e70fa12a7a9168b" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1706,7 +1706,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1827,7 +1827,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1842,7 +1842,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/social/changelog/fix-bump_composer_versions b/projects/plugins/social/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/social/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 102ce40c3f87c..3aca90ff44edd 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -275,7 +275,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -543,7 +543,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -559,7 +559,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -950,7 +950,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -958,7 +958,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1065,7 +1065,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1088,7 +1088,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1169,14 +1169,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1230,7 +1230,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1239,7 +1239,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1354,7 +1354,7 @@ "dist": { "type": "path", "url": "../../packages/post-list", - "reference": "5342429a12c629993d0aff87d172ef41ba41390c" + "reference": "b81597583148862524bfa0cc33ff7c82f046c870" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1362,7 +1362,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1419,14 +1419,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1489,7 +1489,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1501,7 +1501,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1564,7 +1564,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "eb9c6707498896cba6ef98f4f4f1d981161f772e" + "reference": "ab76db662348ffb061c122ec58fb2b5f34c68bbc" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1578,7 +1578,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1819,7 +1819,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1834,7 +1834,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/starter-plugin/changelog/fix-bump_composer_versions b/projects/plugins/starter-plugin/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 279fbfab06f7c..b49d2bfe0ddd9 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -275,7 +275,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -543,7 +543,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -559,7 +559,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -950,7 +950,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -958,7 +958,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1065,7 +1065,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1088,7 +1088,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1169,14 +1169,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1230,7 +1230,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1239,7 +1239,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1354,14 +1354,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1424,7 +1424,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1436,7 +1436,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1672,7 +1672,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1687,7 +1687,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { diff --git a/projects/plugins/videopress/changelog/fix-bump_composer_versions b/projects/plugins/videopress/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..13cbf3392f78d --- /dev/null +++ b/projects/plugins/videopress/changelog/fix-bump_composer_versions @@ -0,0 +1,4 @@ +Significance: patch +Type: changed + +Updated dependencies. diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index a777d4fcb2bcb..b474d19b5302c 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -65,7 +65,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -73,7 +73,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -267,7 +267,7 @@ "dist": { "type": "path", "url": "../../packages/boost-core", - "reference": "247ce714fd90e543e667f1e5b807aec9c5ba1435" + "reference": "d39cf9555e3edd6cd71349c9e828a9006f41b6fc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -275,7 +275,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -543,7 +543,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -559,7 +559,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -950,7 +950,7 @@ "dist": { "type": "path", "url": "../../packages/licensing", - "reference": "022078950e81c2c1690da2780ec0f77b9fa8f912" + "reference": "bd5441656166329a7c482fead6b006c74a20bd50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -958,7 +958,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1065,7 +1065,7 @@ "dist": { "type": "path", "url": "../../packages/my-jetpack", - "reference": "85672ec1cb234145626fc205df75b640bc041f0e" + "reference": "31ee23bfd8834f109e926269260327d921138815" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1088,7 +1088,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-videopress": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1169,14 +1169,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1230,7 +1230,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1239,7 +1239,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1354,14 +1354,14 @@ "dist": { "type": "path", "url": "../../packages/protect-models", - "reference": "a5fdeef7404d6547fcb5e9c6fa6e14a5986c7cb3" + "reference": "458fbc6b08d3eab1ea9c3a4096d9b2e7d883cdae" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1424,7 +1424,7 @@ "dist": { "type": "path", "url": "../../packages/protect-status", - "reference": "0703d9b2ca05b9b98bf97cd23e88436ecd9dbadb" + "reference": "d9138b7f2cdf0651db3a8d34afb3c87cde2848ce" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1436,7 +1436,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1672,7 +1672,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1687,7 +1687,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1750,7 +1750,7 @@ "dist": { "type": "path", "url": "../../packages/videopress", - "reference": "41394c8cfa5152cec1fa087f522904c542f97d7f" + "reference": "f3f2453671e1f9f6befd93a8204556d1f0eb5dff" }, "require": { "automattic/jetpack-admin-ui": "@dev", @@ -1762,7 +1762,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, diff --git a/projects/plugins/wpcomsh/changelog/fix-bump_composer_versions b/projects/plugins/wpcomsh/changelog/fix-bump_composer_versions new file mode 100644 index 0000000000000..47f5577b92146 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/fix-bump_composer_versions @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Update composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 0803e22af3189..6f2cd906a096e 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -130,7 +130,7 @@ "dist": { "type": "path", "url": "../../packages/admin-ui", - "reference": "086703a641cc91a499c0208954756acaaf9f34cf" + "reference": "addc5bfbcc23f704c0a426fb480c1f402131e952" }, "require": { "php": ">=7.2" @@ -138,7 +138,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-logo": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -264,7 +264,7 @@ "dist": { "type": "path", "url": "../../packages/blaze", - "reference": "f214ac58ad1f8840165fda6bda0a069f7d28f597" + "reference": "8a993aa3a4e8249106ffcd487133ce9d2080ab54" }, "require": { "automattic/jetpack-assets": "@dev", @@ -278,7 +278,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -345,7 +345,7 @@ "dist": { "type": "path", "url": "../../packages/blocks", - "reference": "e817f660cad04dafee869691cc7dbea18e4fc8f9" + "reference": "0e645820fdadb26bea58ce5e26b75d396452fffa" }, "require": { "automattic/jetpack-constants": "@dev", @@ -353,7 +353,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -472,7 +472,7 @@ "dist": { "type": "path", "url": "../../packages/classic-theme-helper", - "reference": "9e2bc32f32e57572a4807dee16ad5d0b3b2e730b" + "reference": "313ac02e74dbf44eec1ddbf485af492b66d96a9a" }, "require": { "automattic/jetpack-assets": "@dev", @@ -480,7 +480,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -652,7 +652,7 @@ "dist": { "type": "path", "url": "../../packages/connection", - "reference": "39940d00321ffb2730bdef3408636788340c0443" + "reference": "98861ba304afa0fb038a0a38bc0d599aa11ebb5a" }, "require": { "automattic/jetpack-a8c-mc-stats": "@dev", @@ -668,7 +668,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-licensing": "@dev", "automattic/jetpack-sync": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1108,7 +1108,7 @@ "dist": { "type": "path", "url": "../../packages/masterbar", - "reference": "241190f98185b67e7591d35e4befa146871c6502" + "reference": "dfb426192c3dd1e3da2e651f4d425bd1b19342c6" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1125,7 +1125,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/patchwork-redefine-exit": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "brain/monkey": "^2.6.2", "yoast/phpunit-polyfills": "^1.1.1" }, @@ -1191,7 +1191,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "8db7c8f2989a1f273fc1d562488cb78dce205dd1" + "reference": "3cca664b3c3febb0b897d5df45e1f301fdd6df3f" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1211,7 +1211,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "0.4.2", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1274,14 +1274,14 @@ "dist": { "type": "path", "url": "../../packages/password-checker", - "reference": "8a40be9991f13e2eef9f14984e2d6e6e207c96f8" + "reference": "7ba6a723317eeb42a1ff22a8dbd95587bab0f5a8" }, "require": { "php": ">=7.2" }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1335,7 +1335,7 @@ "dist": { "type": "path", "url": "../../packages/plans", - "reference": "613d04996bb28fcc4ee433c204919e252eaf75f7" + "reference": "a9a751ff40e8d75b6b598a9916737de2faef1792" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1344,7 +1344,7 @@ "require-dev": { "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-status": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1403,7 +1403,7 @@ "dist": { "type": "path", "url": "../../packages/post-list", - "reference": "5342429a12c629993d0aff87d172ef41ba41390c" + "reference": "b81597583148862524bfa0cc33ff7c82f046c870" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1411,7 +1411,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1577,7 +1577,7 @@ "dist": { "type": "path", "url": "../../packages/stats", - "reference": "51e221485dd617c66fa2c6b6c36a0e77903bfc3d" + "reference": "81b274e63676b0387a26b3982e70fa12a7a9168b" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1587,7 +1587,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1644,7 +1644,7 @@ "dist": { "type": "path", "url": "../../packages/stats-admin", - "reference": "e690e290d4895e741483a5f864a15a3e21b9deed" + "reference": "e332c4c9c56ee97ecaac7cd6334764be889eae86" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1657,7 +1657,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "dev-master", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1781,7 +1781,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "9d13af509bc0ebe0c65baa393d4033471be0e0ae" + "reference": "c01241d47a4961a862bc7bfe26fff8d16cf7cbcf" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1796,7 +1796,7 @@ "automattic/jetpack-changelogger": "@dev", "automattic/jetpack-search": "@dev", "automattic/jetpack-waf": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { @@ -1859,7 +1859,7 @@ "dist": { "type": "path", "url": "../../packages/scheduled-updates", - "reference": "29536a1601f0fd38fa5dd80a08276f04198b13e8" + "reference": "e497581136745408a6b8638b999157159dad634b" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1871,7 +1871,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "@dev", - "automattic/wordbless": "@dev", + "automattic/wordbless": "^0.4.2", "php-mock/php-mock-phpunit": "^2.10", "yoast/phpunit-polyfills": "^1.1.1" },