From f52d06f9caa0ca538b2300617078f57dcf740850 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Mon, 29 Jul 2024 18:32:27 +0530 Subject: [PATCH 01/19] Social: Clean up media auto-conversion backend logic --- .../packages/publicize/.phan/baseline.php | 2 - .../class-rest-settings-controller.php | 138 ------------------ .../class-settings.php | 76 ---------- .../publicize/src/class-publicize-base.php | 2 + .../publicize/src/class-publicize-setup.php | 4 - .../publicize/src/class-rest-controller.php | 2 +- .../class-dismissed-notices.php | 1 - .../class-settings.php | 91 +----------- .../test-auto-conversion.php | 98 ------------- .../test-jetpack-social-settings.php | 23 +-- projects/packages/sync/src/class-defaults.php | 1 - .../jetpack/class.jetpack-gutenberg.php | 1 - .../social/src/class-jetpack-social.php | 1 - 13 files changed, 10 insertions(+), 430 deletions(-) delete mode 100644 projects/packages/publicize/src/auto-conversion-settings/class-rest-settings-controller.php delete mode 100644 projects/packages/publicize/src/auto-conversion-settings/class-settings.php delete mode 100644 projects/packages/publicize/tests/php/jetpack-social-settings/test-auto-conversion.php diff --git a/projects/packages/publicize/.phan/baseline.php b/projects/packages/publicize/.phan/baseline.php index 9de3f4af616bf..b3e516345e315 100644 --- a/projects/packages/publicize/.phan/baseline.php +++ b/projects/packages/publicize/.phan/baseline.php @@ -30,7 +30,6 @@ // Currently, file_suppressions and directory_suppressions are the only supported suppressions 'file_suppressions' => [ - 'src/auto-conversion-settings/class-rest-settings-controller.php' => ['PhanPluginMixedKeyNoKey'], 'src/class-connections-post-field.php' => ['PhanPluginDuplicateConditionalNullCoalescing'], 'src/class-keyring-helper.php' => ['PhanTypeMismatchArgumentProbablyReal', 'PhanTypeMismatchDefault'], 'src/class-publicize-base.php' => ['PhanImpossibleCondition', 'PhanPluginDuplicateConditionalNullCoalescing', 'PhanPluginSimplifyExpressionBool', 'PhanSuspiciousMagicConstant', 'PhanTypeMismatchArgument', 'PhanTypeMismatchArgumentNullable', 'PhanTypeMismatchArgumentNullableInternal', 'PhanTypeMismatchDimFetch', 'PhanTypeMismatchReturn'], @@ -42,7 +41,6 @@ 'src/social-image-generator/class-rest-settings-controller.php' => ['PhanPluginMixedKeyNoKey'], 'src/social-image-generator/class-settings.php' => ['PhanPluginDuplicateConditionalNullCoalescing'], 'src/social-image-generator/class-setup.php' => ['PhanTypeMismatchArgumentNullable'], - 'tests/php/jetpack-social-settings/test-auto-conversion.php' => ['PhanDeprecatedFunction', 'PhanPluginDuplicateConditionalNullCoalescing'], 'tests/php/jetpack-social-settings/test-jetpack-social-settings.php' => ['PhanDeprecatedFunction'], 'tests/php/test-connections-post-field.php' => ['PhanDeprecatedFunction', 'PhanTypeMismatchArgument'], 'tests/php/test-publicize-og-optimization.php' => ['PhanDeprecatedFunction'], diff --git a/projects/packages/publicize/src/auto-conversion-settings/class-rest-settings-controller.php b/projects/packages/publicize/src/auto-conversion-settings/class-rest-settings-controller.php deleted file mode 100644 index f9c352b0eca7c..0000000000000 --- a/projects/packages/publicize/src/auto-conversion-settings/class-rest-settings-controller.php +++ /dev/null @@ -1,138 +0,0 @@ - WP_REST_Server::READABLE, - 'callback' => array( $this, 'get_auto_coversion_settings' ), - 'permission_callback' => array( $this, 'settings_permissions_callback' ), - ), - array( - 'methods' => WP_REST_Server::CREATABLE, - 'callback' => array( $this, 'update_auto_coversion_settings' ), - 'permission_callback' => array( $this, 'settings_permissions_callback' ), - 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ), - ), - 'schema' => array( $this, 'get_public_item_schema' ), - ) - ); - } - - /** - * GET `/jetpack/v4/auto-conversion/settings` - * - * @return WP_REST_Response - */ - public function get_auto_coversion_settings() { - $settings = ( new Jetpack_Social_Settings() )->get_settings(); - $response = array(); - $schema = $this->get_item_schema(); - $properties = array_keys( $schema['properties'] ); - - if ( in_array( 'image', $properties, true ) ) { - $response['image'] = $settings['autoConversionSettings']['enabled']; - } - - if ( in_array( 'auto-conversion', $properties, true ) ) { - $response['auto-conversion'] = $settings['autoConversionSettings']['enabled']; - } - - return rest_ensure_response( $response ); - } - - /** - * POST `/jetpack/v4/auto-conversion/settings` - * - * @param WP_REST_Request $request The API request. - * - * @return WP_REST_Response|WP_Error - */ - public function update_auto_coversion_settings( $request ) { - $settings = new Jetpack_Social_Settings(); - - if ( isset( $request['image'] ) ) { - $settings->update_auto_conversion_setting( array( 'enabled' => $request['image'] ) ); - } - - return rest_ensure_response( $this->get_auto_coversion_settings() ); - } - - /** - * Check the permissions for accessing and updating the settings endpoint. - * - * @return bool|WP_Error True if user can manage options. - */ - public function settings_permissions_callback() { - if ( ! current_user_can( 'edit_posts' ) ) { - return new WP_Error( - 'rest_forbidden_context', - __( 'Sorry, you are not allowed to access this endpoint.', 'jetpack-publicize-pkg' ), - array( 'status' => rest_authorization_required_code() ) - ); - } - - return true; - } - - /** - * Retrieves the settings schema, conforming to JSON Schema. - * - * @return array Schema data. - */ - public function get_item_schema() { - $schema = array( - '$schema' => 'http://json-schema.org/draft-04/schema#', - 'title' => 'auto-conversion-settings', - 'type' => 'object', - 'properties' => array( - 'image' => array( - 'description' => __( 'Whether or not auto-conversion for images is enabled.', 'jetpack-publicize-pkg' ), - 'type' => 'boolean', - 'context' => array( 'view', 'edit' ), - ), - 'video' => array( - 'description' => __( 'Whether or not auto-conversion for videos is enabled.', 'jetpack-publicize-pkg' ), - 'type' => 'boolean', - 'context' => array( 'view', 'edit' ), - ), - 'auto-conversion' => array( - 'description' => __( 'Whether or not auto-conversion is enabled.', 'jetpack-publicize-pkg' ), - 'type' => 'boolean', - 'context' => array( 'view', 'edit' ), - ), - ), - ); - - return rest_default_additional_properties_to_false( $schema ); - } -} diff --git a/projects/packages/publicize/src/auto-conversion-settings/class-settings.php b/projects/packages/publicize/src/auto-conversion-settings/class-settings.php deleted file mode 100644 index e7c17e183b363..0000000000000 --- a/projects/packages/publicize/src/auto-conversion-settings/class-settings.php +++ /dev/null @@ -1,76 +0,0 @@ -settings = $this->get_settings(); - } - - /** - * Get the current auto conversion settings. - * - * @return array - */ - private function get_settings() { - $new_settings = ( new Jetpack_Social_Settings() )->get_settings(); - - return array( - 'image' => $new_settings['autoConversionSettings']['enabled'], - ); - } - - /** - * Check if the auto conversion feature is available. - * - * @param string $type Whether video or image. - * @return bool True if available, false otherwise. - */ - public function is_available( $type ) { - return ( new Jetpack_Social_Settings() )->is_auto_conversion_available( $type ); - } - - /** - * Check if the auto conversion feature is enabled. - * - * @param string $type Whether video or image. - * - * @return bool True if the feature is enabled, false otherwise. - */ - public function is_enabled( $type ) { - if ( 'image' === $type ) { - $new_settings = ( new Jetpack_Social_Settings() )->get_settings(); - return $new_settings['autoConversionSettings']['enabled']; - } - } -} diff --git a/projects/packages/publicize/src/class-publicize-base.php b/projects/packages/publicize/src/class-publicize-base.php index 582a9cfdd28ad..e33c65ce4c337 100644 --- a/projects/packages/publicize/src/class-publicize-base.php +++ b/projects/packages/publicize/src/class-publicize-base.php @@ -2008,6 +2008,8 @@ public function has_social_image_generator_feature() { /** * Check if the auto-conversion feature is one of the active features. * + * TODO: Remove this after certain releases of Jetpack. + * * @param string $type Whether image or video. * * @return bool diff --git a/projects/packages/publicize/src/class-publicize-setup.php b/projects/packages/publicize/src/class-publicize-setup.php index 79a70b02643ef..383ef289fab5e 100644 --- a/projects/packages/publicize/src/class-publicize-setup.php +++ b/projects/packages/publicize/src/class-publicize-setup.php @@ -46,10 +46,6 @@ public static function on_jetpack_feature_publicize_enabled() { add_action( 'rest_api_init', array( static::class, 'register_core_options' ) ); add_action( 'admin_init', array( static::class, 'register_core_options' ) ); - // Flagged to be removed after deprecation. - // @deprecated $$next_version$$ - add_action( 'rest_api_init', array( new Auto_Conversion\REST_Settings_Controller(), 'register_routes' ) ); - ( new Social_Image_Generator\Setup() )->init(); } diff --git a/projects/packages/publicize/src/class-rest-controller.php b/projects/packages/publicize/src/class-rest-controller.php index b2dd19d7de37a..d24e9e32120f4 100644 --- a/projects/packages/publicize/src/class-rest-controller.php +++ b/projects/packages/publicize/src/class-rest-controller.php @@ -300,7 +300,7 @@ public function get_dismiss_notice_endpoint_schema() { 'notice' => array( 'description' => __( 'Name of the notice to dismiss', 'jetpack-publicize-pkg' ), 'type' => 'string', - 'enum' => array( 'instagram', 'advanced-upgrade-nudge-admin', 'advanced-upgrade-nudge-editor', 'auto-conversion-editor-notice' ), + 'enum' => array( 'instagram', 'advanced-upgrade-nudge-admin', 'advanced-upgrade-nudge-editor' ), 'required' => true, ), 'reappearance_time' => array( diff --git a/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php b/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php index bc68614adf146..0936ece2ea76f 100644 --- a/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php +++ b/projects/packages/publicize/src/jetpack-social-settings/class-dismissed-notices.php @@ -28,7 +28,6 @@ public function register() { 'schema' => array( 'type' => 'object', 'properties' => array( - 'auto-conversion-editor-notice' => array( 'type' => 'number' ), 'advanced-upgrade-nudge-admin' => array( 'type' => 'number' ), 'advanced-upgrade-nudge-editor' => array( 'type' => 'number' ), ), diff --git a/projects/packages/publicize/src/jetpack-social-settings/class-settings.php b/projects/packages/publicize/src/jetpack-social-settings/class-settings.php index fb35561fa55b8..850fd11550601 100644 --- a/projects/packages/publicize/src/jetpack-social-settings/class-settings.php +++ b/projects/packages/publicize/src/jetpack-social-settings/class-settings.php @@ -16,7 +16,6 @@ * This class is used to get and update Jetpack_Social_Settings. * Currently supported features: * - Social Image Generator - * - Auto Conversion */ class Settings { /** @@ -24,9 +23,7 @@ class Settings { * * @var string */ - const OPTION_PREFIX = 'jetpack_social_'; - // cSpell:ignore AUTOCONVERT - const AUTOCONVERT_IMAGES = 'autoconvert_images'; + const OPTION_PREFIX = 'jetpack_social_'; const IMAGE_GENERATOR_SETTINGS = 'image_generator_settings'; const DEFAULT_IMAGE_GENERATOR_SETTINGS = array( @@ -34,37 +31,22 @@ class Settings { 'template' => Templates::DEFAULT_TEMPLATE, ); - const DEFAULT_AUTOCONVERT_IMAGES_SETTINGS = array( - 'enabled' => true, - ); - /** * Migrate old options to the new settings. Previously SIG settings were stored in the - * jetpack_social_image_generator_settings option. Now they are stored in the jetpack_social_settings - * together with the auto conversion settings. + * jetpack_social_image_generator_settings option. Now they are stored in the jetpack_social_settings. * * TODO: Work out if this is possible on plugin upgrade * * @return void */ private function migrate_old_option() { - // Migrating from the old option. - $old_auto_conversion_settings = get_option( 'jetpack_social_settings' ); - if ( ! empty( $old_auto_conversion_settings ) ) { - update_option( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES, array( 'enabled' => ! empty( $old_auto_conversion_settings['image'] ) ) ); - delete_option( 'jetpack_social_settings' ); - } - // Checking if the new option is valid. - $auto_conversion_settings = get_option( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES ); - // If the option is not set, we don't need to delete it. - // If it is set, but it is not an array or it does not have the enabled key, we delete it. - if ( false !== $auto_conversion_settings && ( ! is_array( $auto_conversion_settings ) || ! isset( $auto_conversion_settings['enabled'] ) ) ) { - delete_option( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES ); - } + // Delete the old options. + delete_option( 'jetpack_social_settings' ); + delete_option( 'jetpack_social_autoconvert_images' ); $sig_settings = get_option( 'jetpack_social_image_generator_settings' ); // If the option is not set, we don't need to migrate. - if ( $sig_settings === false ) { + if ( false === $sig_settings ) { return; } @@ -96,26 +78,6 @@ private function migrate_old_option() { * @return void */ public function register_settings() { - register_setting( - 'jetpack_social', - self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES, - array( - 'default' => array( - 'enabled' => true, - ), - 'type' => 'object', - 'show_in_rest' => array( - 'schema' => array( - 'type' => 'object', - 'properties' => array( - 'enabled' => array( - 'type' => 'boolean', - ), - ), - ), - ), - ) - ); register_setting( 'jetpack_social', @@ -156,18 +118,15 @@ public function get_settings( $with_available = false ) { $this->migrate_old_option(); $settings = array( - 'autoConversionSettings' => get_option( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES, self::DEFAULT_AUTOCONVERT_IMAGES_SETTINGS ), 'socialImageGeneratorSettings' => get_option( self::OPTION_PREFIX . self::IMAGE_GENERATOR_SETTINGS, self::DEFAULT_IMAGE_GENERATOR_SETTINGS ), ); // The feature cannot be enabled without Publicize. if ( ! ( new Modules() )->is_active( 'publicize' ) ) { - $settings['autoConversionSettings']['enabled'] = false; $settings['socialImageGeneratorSettings']['enabled'] = false; } if ( $with_available ) { - $settings['autoConversionSettings']['available'] = $this->is_auto_conversion_available(); $settings['socialImageGeneratorSettings']['available'] = $this->is_sig_available(); } @@ -249,9 +208,6 @@ function ( $service ) { * @return bool */ public function update_settings( $updated, $name, $value ) { - if ( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES === $name ) { - return $this->update_auto_conversion_setting( $value ); - } if ( self::OPTION_PREFIX . self::IMAGE_GENERATOR_SETTINGS === $name ) { return $this->update_social_image_generator_settings( $value ); @@ -259,24 +215,6 @@ public function update_settings( $updated, $name, $value ) { return $updated; } - /** - * Update the auto conversion settings. - * - * @param array $new_setting The new settings. - * - * @return bool - */ - public function update_auto_conversion_setting( $new_setting ) { - $this->migrate_old_option(); - $auto_conversion_settings = get_option( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES ); - - if ( empty( $auto_conversion_settings ) || ! is_array( $auto_conversion_settings ) ) { - $auto_conversion_settings = self::DEFAULT_AUTOCONVERT_IMAGES_SETTINGS; - } - - return update_option( self::OPTION_PREFIX . self::AUTOCONVERT_IMAGES, array_replace_recursive( $auto_conversion_settings, $new_setting ) ); - } - /** * Update the social image generator settings. * @@ -310,23 +248,6 @@ public function is_sig_available() { return $publicize->has_social_image_generator_feature(); } - /** - * Check if the auto conversion feature is available. - * - * @param string $type Whether video or image. - - * @return bool True if available, false otherwise. - */ - public function is_auto_conversion_available( $type = 'image' ) { - global $publicize; - - if ( ! $publicize ) { - return false; - } - - return $publicize->has_social_auto_conversion_feature( $type ); - } - /** * Get the default template. * diff --git a/projects/packages/publicize/tests/php/jetpack-social-settings/test-auto-conversion.php b/projects/packages/publicize/tests/php/jetpack-social-settings/test-auto-conversion.php deleted file mode 100644 index 67dcffaf3609c..0000000000000 --- a/projects/packages/publicize/tests/php/jetpack-social-settings/test-auto-conversion.php +++ /dev/null @@ -1,98 +0,0 @@ -getMockBuilder( Publicize::class )->setMethods( array( 'has_social_auto_conversion_feature' ) )->getMock(); - $publicize->method( 'has_social_auto_conversion_feature' ) - ->withAnyParameters() - ->willReturn( true ); - $this->settings = new SocialSettings(); - $this->settings->register_settings(); - } - - /** - * Tear down - * - * @after - */ - public function tear_down() { - wp_set_current_user( 0 ); - - global $publicize; - $publicize = new Publicize(); - - remove_filter( 'jetpack_active_modules', array( $this, 'mock_publicize_being_active' ) ); - WorDBless_Options::init()->clear_options(); - WorDBless_Posts::init()->clear_all_posts(); - WorDBless_Users::init()->clear_all_users(); - } - - /** - * Mock Publicize being active. - * - * @return array - */ - public function mock_publicize_being_active() { - return array( 'publicize' ); - } - - /** - * Test that Auto-Conversion is available based on the plan check. - */ - public function test_correctly_returns_available_status() { - $this->assertTrue( $this->settings->is_auto_conversion_available() ); - } - - /** - * Test that it correctly returns enabled or disabled. - */ - public function test_correctly_returns_enabled_status() { - $auto_conversion_settings = $this->settings->get_settings()['autoConversionSettings']; - $this->assertTrue( $auto_conversion_settings['enabled'] ); - $this->assertFalse( isset( $auto_conversion_settings['video'] ) ? $auto_conversion_settings['video'] : false ); - } - - /** - * Test that it correctly returns enabled or disabled. - */ - public function test_correctly_updates_enabled_status() { - $this->settings->update_auto_conversion_setting( array( 'enabled' => false ) ); - $auto_conversion_settings = $this->settings->get_settings()['autoConversionSettings']; - $this->assertFalse( $auto_conversion_settings['enabled'] ); - - $this->settings->update_auto_conversion_setting( array( 'video' => true ) ); - $auto_conversion_settings = $this->settings->get_settings()['autoConversionSettings']; - $this->assertFalse( $auto_conversion_settings['enabled'] ); - $this->assertTrue( $auto_conversion_settings['video'] ); - } -} diff --git a/projects/packages/publicize/tests/php/jetpack-social-settings/test-jetpack-social-settings.php b/projects/packages/publicize/tests/php/jetpack-social-settings/test-jetpack-social-settings.php index c3bbd5789382e..db790a9f29a35 100644 --- a/projects/packages/publicize/tests/php/jetpack-social-settings/test-jetpack-social-settings.php +++ b/projects/packages/publicize/tests/php/jetpack-social-settings/test-jetpack-social-settings.php @@ -33,10 +33,7 @@ class Jetpack_Social_Settings_Test extends BaseTestCase { public function set_up() { add_filter( 'jetpack_active_modules', array( $this, 'mock_publicize_being_active' ) ); global $publicize; - $publicize = $this->getMockBuilder( Publicize::class )->setMethods( array( 'has_social_auto_conversion_feature', 'has_social_image_generator_feature' ) )->getMock(); - $publicize->method( 'has_social_auto_conversion_feature' ) - ->withAnyParameters() - ->willReturn( true ); + $publicize = $this->getMockBuilder( Publicize::class )->setMethods( array( 'has_social_image_generator_feature' ) )->getMock(); $publicize->method( 'has_social_image_generator_feature' ) ->withAnyParameters() ->willReturn( true ); @@ -76,12 +73,9 @@ public function mock_publicize_being_active() { public function test_get_settings_with_availability() { $settings = $this->settings->get_settings( true ); - $this->assertArrayHasKey( 'autoConversionSettings', $settings ); $this->assertArrayHasKey( 'socialImageGeneratorSettings', $settings ); - $this->assertArrayHasKey( 'available', $settings['autoConversionSettings'] ); $this->assertArrayHasKey( 'available', $settings['socialImageGeneratorSettings'] ); - $this->assertTrue( $settings['autoConversionSettings']['available'] ); $this->assertTrue( $settings['socialImageGeneratorSettings']['available'] ); } @@ -91,12 +85,10 @@ public function test_get_settings_with_availability() { public function test_settings_on_new_site() { $settings = $this->settings->get_settings(); - $this->assertArrayHasKey( 'autoConversionSettings', $settings ); $this->assertArrayHasKey( 'socialImageGeneratorSettings', $settings ); $this->assertArrayHasKey( 'enabled', $settings['socialImageGeneratorSettings'] ); $this->assertArrayHasKey( 'template', $settings['socialImageGeneratorSettings'] ); - $this->assertTrue( $settings['autoConversionSettings']['enabled'] ); $this->assertFalse( $settings['socialImageGeneratorSettings']['enabled'] ); $this->assertEquals( Templates::DEFAULT_TEMPLATE, $settings['socialImageGeneratorSettings']['template'] ); } @@ -115,7 +107,6 @@ public function test_migrate_old_options() { ); $expected_options = array( - 'autoConversionSettings' => array( 'enabled' => true ), 'socialImageGeneratorSettings' => array( 'enabled' => true, 'template' => 'example_template', @@ -134,7 +125,6 @@ public function test_migrate_old_options_with_missing() { update_option( 'jetpack_social_settings', array( 'image' => true ) ); $expected_options = array( - 'autoConversionSettings' => array( 'enabled' => true ), 'socialImageGeneratorSettings' => array( 'enabled' => false, 'template' => Templates::DEFAULT_TEMPLATE, @@ -144,15 +134,4 @@ public function test_migrate_old_options_with_missing() { $this->settings = new SocialSettings(); $this->assertEquals( $expected_options, $this->settings->get_settings() ); } - - /** - * Tests that the auto-conversion settings are migrated even if it was false before. - */ - public function test_migrate_old_options_with_disabled_autoconversion() { - update_option( 'jetpack_social_settings', array( 'image' => false ) ); - $expected_options = array( 'enabled' => false ); - - $this->settings = new SocialSettings(); - $this->assertEquals( $expected_options, $this->settings->get_settings()['autoConversionSettings'] ); - } } diff --git a/projects/packages/sync/src/class-defaults.php b/projects/packages/sync/src/class-defaults.php index 2119edf18026e..cfc7afaf065fe 100644 --- a/projects/packages/sync/src/class-defaults.php +++ b/projects/packages/sync/src/class-defaults.php @@ -89,7 +89,6 @@ class Defaults { 'jetpack_relatedposts', 'jetpack_social_notes_config', 'jetpack_social_settings', - 'jetpack_social_autoconvert_images', 'jetpack_sso_match_by_email', 'jetpack_sso_require_two_step', 'jetpack_sync_non_blocking', // is non-blocking Jetpack Sync flow enabled. diff --git a/projects/plugins/jetpack/class.jetpack-gutenberg.php b/projects/plugins/jetpack/class.jetpack-gutenberg.php index 6067fb8a629d1..75ec263fbe694 100644 --- a/projects/plugins/jetpack/class.jetpack-gutenberg.php +++ b/projects/plugins/jetpack/class.jetpack-gutenberg.php @@ -759,7 +759,6 @@ public static function enqueue_block_editor_assets() { 'isSocialImageGeneratorEnabled' => $social_initial_state['socialImageGeneratorSettings']['enabled'], 'dismissedNotices' => Dismissed_Notices::get_dismissed_notices(), 'supportedAdditionalConnections' => $publicize->get_supported_additional_connections(), - 'autoConversionSettings' => $social_initial_state['autoConversionSettings'], 'jetpackSharingSettingsUrl' => esc_url_raw( admin_url( 'admin.php?page=jetpack#/sharing' ) ), 'userConnectionUrl' => esc_url_raw( admin_url( 'admin.php?page=my-jetpack#/connection' ) ), 'useAdminUiV1' => $social_initial_state['useAdminUiV1'], diff --git a/projects/plugins/social/src/class-jetpack-social.php b/projects/plugins/social/src/class-jetpack-social.php index a347f7c8bf74a..27ce55b52b3a4 100644 --- a/projects/plugins/social/src/class-jetpack-social.php +++ b/projects/plugins/social/src/class-jetpack-social.php @@ -338,7 +338,6 @@ class_exists( 'Jetpack' ) || 'isEnhancedPublishingEnabled' => $publicize->has_enhanced_publishing_feature(), 'isSocialImageGeneratorAvailable' => $social_state['socialImageGeneratorSettings']['available'], 'isSocialImageGeneratorEnabled' => $social_state['socialImageGeneratorSettings']['enabled'], - 'autoConversionSettings' => $social_state['autoConversionSettings'], 'useAdminUiV1' => $social_state['useAdminUiV1'], 'dismissedNotices' => Dismissed_Notices::get_dismissed_notices(), 'supportedAdditionalConnections' => $publicize->get_supported_additional_connections(), From 2f64072151b0556cb059e003bd785e0537b22416 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Mon, 29 Jul 2024 18:33:41 +0530 Subject: [PATCH 02/19] Add changelog --- ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ 4 files changed, 16 insertions(+) create mode 100644 projects/packages/publicize/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/packages/sync/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic diff --git a/projects/packages/publicize/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/publicize/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..db4b11231fe0a --- /dev/null +++ b/projects/packages/publicize/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: minor +Type: removed + +Social: Cleaned up media auto-conversion backend logic diff --git a/projects/packages/sync/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/sync/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..db4b11231fe0a --- /dev/null +++ b/projects/packages/sync/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: minor +Type: removed + +Social: Cleaned up media auto-conversion backend logic diff --git a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..c96f1bba6a737 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: patch +Type: other + +Social: Cleaned up media auto-conversion backend logic diff --git a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..db4b11231fe0a --- /dev/null +++ b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: minor +Type: removed + +Social: Cleaned up media auto-conversion backend logic From 8a1046af33e14874855fb7c3eb0a5fc54da5c5bb Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 30 Jul 2024 10:24:04 +0530 Subject: [PATCH 03/19] Fix uncached call via delete_option --- .../src/jetpack-social-settings/class-settings.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/projects/packages/publicize/src/jetpack-social-settings/class-settings.php b/projects/packages/publicize/src/jetpack-social-settings/class-settings.php index 850fd11550601..9a75f9a214170 100644 --- a/projects/packages/publicize/src/jetpack-social-settings/class-settings.php +++ b/projects/packages/publicize/src/jetpack-social-settings/class-settings.php @@ -40,9 +40,13 @@ class Settings { * @return void */ private function migrate_old_option() { - // Delete the old options. - delete_option( 'jetpack_social_settings' ); - delete_option( 'jetpack_social_autoconvert_images' ); + // Delete the old options if they exist. + if ( get_option( 'jetpack_social_settings' ) ) { + delete_option( 'jetpack_social_settings' ); + } + if ( get_option( 'jetpack_social_autoconvert_images' ) ) { + delete_option( 'jetpack_social_autoconvert_images' ); + } $sig_settings = get_option( 'jetpack_social_image_generator_settings' ); // If the option is not set, we don't need to migrate. From 358aa842173fac28881d1f1f08851f5628f61172 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 30 Jul 2024 12:40:55 +0530 Subject: [PATCH 04/19] Fix unit tests --- .../jetpack/tests/php/sync/test_class.jetpack-sync-options.php | 1 - 1 file changed, 1 deletion(-) diff --git a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php index dfd370af20f5d..9f1b8b57b6847 100644 --- a/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php +++ b/projects/plugins/jetpack/tests/php/sync/test_class.jetpack-sync-options.php @@ -232,7 +232,6 @@ public function test_sync_default_options() { 'jetpack_publicize_options' => array(), 'jetpack_social_notes_config' => array(), 'jetpack_social_settings' => array( 'image' => true ), - 'jetpack_social_autoconvert_images' => array( 'enabled' => true ), 'jetpack_sync_non_blocking' => false, 'jetpack_sync_settings_dedicated_sync_enabled' => false, 'jetpack_sync_settings_custom_queue_table_enabled' => false, From 575be9195341516f540171c5008d819d5298360b Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 30 Jul 2024 15:03:55 +0530 Subject: [PATCH 05/19] Fix up versions --- projects/packages/publicize/composer.json | 2 +- projects/packages/publicize/package.json | 2 +- ...ate-social-clean-up-media-auto-conversion-backend-logic#2 | 5 +++++ projects/plugins/jetpack/composer.lock | 4 ++-- ...ate-social-clean-up-media-auto-conversion-backend-logic#2 | 5 +++++ projects/plugins/social/composer.lock | 4 ++-- 6 files changed, 16 insertions(+), 6 deletions(-) create mode 100644 projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 create mode 100644 projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 diff --git a/projects/packages/publicize/composer.json b/projects/packages/publicize/composer.json index 77d85828d891b..c8531e0d9ad1d 100644 --- a/projects/packages/publicize/composer.json +++ b/projects/packages/publicize/composer.json @@ -67,7 +67,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.47.x-dev" + "dev-trunk": "0.48.x-dev" } }, "config": { diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index c13995466bd85..6427de0f6546c 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.47.3", + "version": "0.48.0-alpha", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 1f63a75ddbc1e..ab59d906d9363 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2223,7 +2223,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "6494d867225a31d465c41e86117becbe7a35c11e" + "reference": "af5dd80bea134427f6b4d5bc8c0a95452afb17c1" }, "require": { "automattic/jetpack-assets": "@dev", @@ -2251,7 +2251,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.47.x-dev" + "dev-trunk": "0.48.x-dev" } }, "autoload": { diff --git a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 5ee5a4db55302..6ddbb26786c0e 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1495,7 +1495,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "6494d867225a31d465c41e86117becbe7a35c11e" + "reference": "af5dd80bea134427f6b4d5bc8c0a95452afb17c1" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1523,7 +1523,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.47.x-dev" + "dev-trunk": "0.48.x-dev" } }, "autoload": { From c0d02c2d9a5bad4831d4dafc60bb4493f4843e10 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 30 Jul 2024 15:25:49 +0530 Subject: [PATCH 06/19] Update class-publicize-base.php --- projects/packages/publicize/src/class-publicize-base.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/packages/publicize/src/class-publicize-base.php b/projects/packages/publicize/src/class-publicize-base.php index e33c65ce4c337..0c91d17be0ec9 100644 --- a/projects/packages/publicize/src/class-publicize-base.php +++ b/projects/packages/publicize/src/class-publicize-base.php @@ -2008,7 +2008,7 @@ public function has_social_image_generator_feature() { /** * Check if the auto-conversion feature is one of the active features. * - * TODO: Remove this after certain releases of Jetpack. + * TODO: Remove this after certain releases of Jetpack v15. * * @param string $type Whether image or video. * From f6e28f067787bbc2681909d60b45aa3398754869 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 30 Jul 2024 17:00:01 +0530 Subject: [PATCH 07/19] Do what CI should be doing - fix up versions --- projects/js-packages/ai-client/package.json | 2 +- projects/js-packages/publicize-components/package.json | 2 +- projects/packages/jetpack-mu-wpcom/composer.json | 2 +- projects/packages/jetpack-mu-wpcom/package.json | 2 +- .../jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php | 2 +- projects/packages/my-jetpack/package.json | 2 +- projects/packages/my-jetpack/src/class-initializer.php | 2 +- projects/packages/sync/composer.json | 2 +- projects/packages/sync/src/class-package-version.php | 2 +- projects/packages/videopress/package.json | 2 +- .../packages/videopress/src/class-package-version.php | 2 +- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ .../plugins/automattic-for-agencies-client/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/backup/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/boost/composer.lock | 4 ++-- ...-social-clean-up-media-auto-conversion-backend-logic#3 | 5 +++++ projects/plugins/jetpack/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/migration/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/mu-wpcom-plugin/composer.json | 2 +- projects/plugins/mu-wpcom-plugin/composer.lock | 8 ++++---- projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/protect/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/search/composer.lock | 4 ++-- ...-social-clean-up-media-auto-conversion-backend-logic#3 | 5 +++++ projects/plugins/social/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/starter-plugin/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/videopress/composer.lock | 4 ++-- ...te-social-clean-up-media-auto-conversion-backend-logic | 5 +++++ projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/composer.lock | 8 ++++---- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 41 files changed, 106 insertions(+), 46 deletions(-) create mode 100644 projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 create mode 100644 projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 create mode 100644 projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic diff --git a/projects/js-packages/ai-client/package.json b/projects/js-packages/ai-client/package.json index d4670009a0f77..e81446ecdc71f 100644 --- a/projects/js-packages/ai-client/package.json +++ b/projects/js-packages/ai-client/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "@automattic/jetpack-ai-client", - "version": "0.16.0", + "version": "0.16.1-alpha", "description": "A JS client for consuming Jetpack AI services", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/ai-client/#readme", "bugs": { diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index cb05fc7f83773..1897a5481b46d 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.57.0", + "version": "0.58.0-alpha", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/packages/jetpack-mu-wpcom/composer.json b/projects/packages/jetpack-mu-wpcom/composer.json index 04b4ff41f807f..14e966c6f40de 100644 --- a/projects/packages/jetpack-mu-wpcom/composer.json +++ b/projects/packages/jetpack-mu-wpcom/composer.json @@ -62,7 +62,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.51.x-dev" + "dev-trunk": "5.52.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { diff --git a/projects/packages/jetpack-mu-wpcom/package.json b/projects/packages/jetpack-mu-wpcom/package.json index 45b0d1f3f8e20..396f76c697818 100644 --- a/projects/packages/jetpack-mu-wpcom/package.json +++ b/projects/packages/jetpack-mu-wpcom/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom", - "version": "5.51.0", + "version": "5.52.0-alpha", "description": "Enhances your site with features powered by WordPress.com", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/jetpack-mu-wpcom/#readme", "bugs": { diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 151d0c59e86e6..2c4cc857e3ebf 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -13,7 +13,7 @@ * Jetpack_Mu_Wpcom main class. */ class Jetpack_Mu_Wpcom { - const PACKAGE_VERSION = '5.51.0'; + const PACKAGE_VERSION = '5.52.0-alpha'; const PKG_DIR = __DIR__ . '/../'; const BASE_DIR = __DIR__ . '/'; const BASE_FILE = __FILE__; diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index c18a50e1b0c88..88f9043204d4f 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "4.30.0", + "version": "4.30.1-alpha", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index 20ef06cc7a4d8..13634e2addae2 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -41,7 +41,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.30.0'; + const PACKAGE_VERSION = '4.30.1-alpha'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index 8799ba2a01ed2..3b23c37b2007b 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 65b7726f94850..ceaa8233b467c 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.4.0'; + const PACKAGE_VERSION = '3.5.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/packages/videopress/package.json b/projects/packages/videopress/package.json index a886678761c8e..a7661afe049af 100644 --- a/projects/packages/videopress/package.json +++ b/projects/packages/videopress/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-videopress", - "version": "0.23.29", + "version": "0.23.30-alpha", "description": "VideoPress package", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/videopress/#readme", "bugs": { diff --git a/projects/packages/videopress/src/class-package-version.php b/projects/packages/videopress/src/class-package-version.php index d89bada217daf..16629ed952118 100644 --- a/projects/packages/videopress/src/class-package-version.php +++ b/projects/packages/videopress/src/class-package-version.php @@ -11,7 +11,7 @@ * The Package_Version class. */ class Package_Version { - const PACKAGE_VERSION = '0.23.29'; + const PACKAGE_VERSION = '0.23.30-alpha'; const PACKAGE_SLUG = 'videopress'; diff --git a/projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index 3f8db4e218e78..ca048b7091d74 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index 2774dcc20ff67..e5be73a8a5da8 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index b83adb234cf08..e64e6276ac517 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1725,7 +1725,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1758,7 +1758,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index ab59d906d9363..2a11786e5000a 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2683,7 +2683,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2716,7 +2716,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index 4f5f0620f5232..4a90dfcb4b801 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 6508004317ec5..284b15ddddcdd 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_2" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_3_alpha" } } diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index eb52a1a568894..66c2c7327bf42 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1005,7 +1005,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "2827550808c6c48c4760c787ce52592d9012059e" + "reference": "a9ffd2d847bb68899b38f0b6916a33e917fe2c90" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1039,7 +1039,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.51.x-dev" + "dev-trunk": "5.52.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index 43dc9301cb7cd..60fd1f098ca8e 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.5.2 + * Version: 2.5.3-alpha * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index 527941b01f3c4..fdab5b4842b9f 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.5.2", + "version": "2.5.3-alpha", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 581a49cbfeb2f..6d10e7ee98dbd 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1654,7 +1654,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1687,7 +1687,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 235f86dbb59d5..b9fc4ab6df0c2 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1746,7 +1746,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1779,7 +1779,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 6ddbb26786c0e..8ab82d65191a8 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1736,7 +1736,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1769,7 +1769,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 7997e296902c6..0eb3a1bc900e6 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index 919b97236bb86..949d808acfc4f 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index b2a1a96dcd4a8..2f905ff13f9a1 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -128,7 +128,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_1_0" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_1_1_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 9aee4e3f31fc6..ce522956cc9f0 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1142,7 +1142,7 @@ "dist": { "type": "path", "url": "../../packages/jetpack-mu-wpcom", - "reference": "2827550808c6c48c4760c787ce52592d9012059e" + "reference": "a9ffd2d847bb68899b38f0b6916a33e917fe2c90" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1176,7 +1176,7 @@ }, "autotagger": true, "branch-alias": { - "dev-trunk": "5.51.x-dev" + "dev-trunk": "5.52.x-dev" }, "textdomain": "jetpack-mu-wpcom", "version-constants": { @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index d45d9ea27a76f..2c7064c1ad0c4 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.1.0", + "version": "5.1.1-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index 2b99c9570789e..6f6d12ba4197b 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.1.0 + * Version: 5.1.1-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.1.0' ); +define( 'WPCOMSH_VERSION', '5.1.1-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From 2e87d750866f31fe81337c5205e5e45051b99625 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 30 Jul 2024 17:01:36 +0530 Subject: [PATCH 08/19] Add unnecessary changelogs --- ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ ...update-social-clean-up-media-auto-conversion-backend-logic | 4 ++++ 5 files changed, 20 insertions(+) create mode 100644 projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic create mode 100644 projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic diff --git a/projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..784f19e63ecd2 --- /dev/null +++ b/projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Social | Removed the unsed code for media auto-conversion diff --git a/projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..784f19e63ecd2 --- /dev/null +++ b/projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Social | Removed the unsed code for media auto-conversion diff --git a/projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..784f19e63ecd2 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Social | Removed the unsed code for media auto-conversion diff --git a/projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..784f19e63ecd2 --- /dev/null +++ b/projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Social | Removed the unsed code for media auto-conversion diff --git a/projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic new file mode 100644 index 0000000000000..784f19e63ecd2 --- /dev/null +++ b/projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic @@ -0,0 +1,4 @@ +Significance: patch +Type: removed + +Social | Removed the unsed code for media auto-conversion From ad18e93f02e55756d0af8c0e01100217c1656d5b Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Wed, 31 Jul 2024 10:22:12 +0530 Subject: [PATCH 09/19] Remove unnecessary changelog --- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 4 ---- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 4 ---- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 4 ---- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 4 ---- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 4 ---- ...ate-social-clean-up-media-auto-conversion-backend-logic#2 | 5 ----- ...ate-social-clean-up-media-auto-conversion-backend-logic#3 | 5 ----- ...ate-social-clean-up-media-auto-conversion-backend-logic#2 | 5 ----- ...ate-social-clean-up-media-auto-conversion-backend-logic#3 | 5 ----- 9 files changed, 40 deletions(-) delete mode 100644 projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 delete mode 100644 projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 delete mode 100644 projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 delete mode 100644 projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 diff --git a/projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 784f19e63ecd2..0000000000000 --- a/projects/js-packages/ai-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: removed - -Social | Removed the unsed code for media auto-conversion diff --git a/projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 784f19e63ecd2..0000000000000 --- a/projects/js-packages/publicize-components/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: removed - -Social | Removed the unsed code for media auto-conversion diff --git a/projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 784f19e63ecd2..0000000000000 --- a/projects/packages/jetpack-mu-wpcom/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: removed - -Social | Removed the unsed code for media auto-conversion diff --git a/projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 784f19e63ecd2..0000000000000 --- a/projects/packages/my-jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: removed - -Social | Removed the unsed code for media auto-conversion diff --git a/projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 784f19e63ecd2..0000000000000 --- a/projects/packages/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: removed - -Social | Removed the unsed code for media auto-conversion diff --git a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 b/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 deleted file mode 100644 index a1c1831fa1ef7..0000000000000 --- a/projects/plugins/jetpack/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 b/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-social-clean-up-media-auto-conversion-backend-logic#3 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - From 03cd449685419dd73809f04e09815fbd4c97a176 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 6 Aug 2024 08:59:56 +0530 Subject: [PATCH 10/19] Fix up versions --- projects/packages/publicize/composer.json | 2 +- projects/packages/publicize/package.json | 2 +- projects/plugins/jetpack/composer.lock | 4 ++-- projects/plugins/mu-wpcom-plugin/composer.json | 2 +- projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- projects/plugins/social/composer.lock | 4 ++-- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/projects/packages/publicize/composer.json b/projects/packages/publicize/composer.json index c8531e0d9ad1d..1a413fc23fdd9 100644 --- a/projects/packages/publicize/composer.json +++ b/projects/packages/publicize/composer.json @@ -67,7 +67,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.48.x-dev" + "dev-trunk": "0.49.x-dev" } }, "config": { diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 6427de0f6546c..a7b625a33f5d0 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.48.0-alpha", + "version": "0.49.0-alpha", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 83d7e7ea42e59..3ac0b34d0b5a7 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2223,7 +2223,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "af5dd80bea134427f6b4d5bc8c0a95452afb17c1" + "reference": "9648132e5383344b57b1b7921b0e624cfdecf657" }, "require": { "automattic/jetpack-assets": "@dev", @@ -2251,7 +2251,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.48.x-dev" + "dev-trunk": "0.49.x-dev" } }, "autoload": { diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 7346c56033dff..b81b22a4edca5 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_4" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_5_alpha" } } diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index d8e2208c072cf..1c56f38491d9f 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.5.4 + * Version: 2.5.5-alpha * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index 087cf5b73a7a4..d204e724a0cd8 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.5.4", + "version": "2.5.5-alpha", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 7d40c72c69ef9..479e6c84a2ab0 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1495,7 +1495,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "af5dd80bea134427f6b4d5bc8c0a95452afb17c1" + "reference": "9648132e5383344b57b1b7921b0e624cfdecf657" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1523,7 +1523,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.48.x-dev" + "dev-trunk": "0.49.x-dev" } }, "autoload": { diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 9fe6b8f0445c5..47b34fff16c76 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -128,7 +128,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_2_1" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_2_2_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index f2794d3755d2e..a5010ed0aecc2 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.2.1", + "version": "5.2.2-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index 7291023f6c477..4025dbdd769aa 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.2.1 + * Version: 5.2.2-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.2.1' ); +define( 'WPCOMSH_VERSION', '5.2.2-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From a4fe44d86998c4783042b5029b893e0100d395b7 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Wed, 7 Aug 2024 10:02:05 +0530 Subject: [PATCH 11/19] Fix up versions --- projects/packages/sync/composer.json | 2 +- projects/packages/sync/src/class-package-version.php | 2 +- projects/plugins/automattic-for-agencies-client/composer.lock | 4 ++-- projects/plugins/backup/composer.lock | 4 ++-- projects/plugins/boost/composer.lock | 4 ++-- projects/plugins/jetpack/composer.lock | 4 ++-- projects/plugins/migration/composer.lock | 4 ++-- projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- projects/plugins/protect/composer.lock | 4 ++-- projects/plugins/search/composer.lock | 4 ++-- projects/plugins/social/composer.lock | 4 ++-- projects/plugins/starter-plugin/composer.lock | 4 ++-- projects/plugins/videopress/composer.lock | 4 ++-- projects/plugins/wpcomsh/composer.lock | 4 ++-- 14 files changed, 26 insertions(+), 26 deletions(-) diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index 3b23c37b2007b..423bc092a5cc5 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 4e6d0c4c13775..0f0a5ccca6a3a 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.5.0'; + const PACKAGE_VERSION = '3.6.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index ca048b7091d74..941ad97283024 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index 7f3af360f5f98..84c45b70c1818 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index e84a2f563cf3c..b27acfee28d56 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1725,7 +1725,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1758,7 +1758,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 3ac0b34d0b5a7..8a7b84967826f 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2683,7 +2683,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2716,7 +2716,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index a42ea2cbab246..27e8040517719 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index d6670b4496573..7cc2efa7f11c5 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 3d1e8c5df1094..c0a3cd6c120d2 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1654,7 +1654,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1687,7 +1687,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index a601d6456e717..c2bdf52af4b14 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1746,7 +1746,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1779,7 +1779,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 479e6c84a2ab0..e64ac3e877018 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1736,7 +1736,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1769,7 +1769,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index d7caef46710ae..e577278a89aa5 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index ee9a3c93634ad..b5df544239d85 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index b3d4c9ec61d52..0f6d13635a39a 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" + "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.5.x-dev" + "dev-trunk": "3.6.x-dev" }, "dependencies": { "test-only": [ From bb8bc6700692e06ae1b4d88bf56024501d6a5d2e Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Fri, 9 Aug 2024 12:51:17 +0530 Subject: [PATCH 12/19] Fix up versions --- projects/plugins/mu-wpcom-plugin/composer.json | 2 +- projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- projects/plugins/social/composer.json | 2 +- projects/plugins/social/jetpack-social.php | 2 +- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 07697655bf769..f12c083563800 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_5" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_6_alpha" } } diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index 8b8dd2ae5115e..39b0491c43d19 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.5.5 + * Version: 2.5.6-alpha * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index 619d22fd1779e..1721a50c22c4c 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.5.5", + "version": "2.5.6-alpha", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/social/composer.json b/projects/plugins/social/composer.json index ee13dd0b3a0e5..8389187c9808f 100644 --- a/projects/plugins/social/composer.json +++ b/projects/plugins/social/composer.json @@ -84,6 +84,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ5_1_0" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ5_2_0_alpha" } } diff --git a/projects/plugins/social/jetpack-social.php b/projects/plugins/social/jetpack-social.php index 22eef18bb6641..bdabba63e1d08 100644 --- a/projects/plugins/social/jetpack-social.php +++ b/projects/plugins/social/jetpack-social.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack Social * Plugin URI: https://wordpress.org/plugins/jetpack-social * Description: Share your site’s posts on several social media networks automatically when you publish a new post. - * Version: 5.1.0 + * Version: 5.2.0-alpha * Author: Automattic - Jetpack Social team * Author URI: https://jetpack.com/social/ * License: GPLv2 or later diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index b85fe1f3a3f5d..40d55cb0cd6ef 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -128,7 +128,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_3_0" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_3_1_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index aec62178a7ad3..8b5a423435f2b 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.3.0", + "version": "5.3.1-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index fa2227a0ec4be..e7543ee0a2890 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.3.0 + * Version: 5.3.1-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.3.0' ); +define( 'WPCOMSH_VERSION', '5.3.1-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From 17e23479fa07be07cd78e72da6b8802c47bacee6 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Mon, 12 Aug 2024 15:45:20 +0530 Subject: [PATCH 13/19] Fix up versions --- projects/plugins/protect/composer.json | 2 +- projects/plugins/protect/jetpack-protect.php | 4 ++-- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/plugins/protect/composer.json b/projects/plugins/protect/composer.json index 4c808c367b695..90d41a91c7f26 100644 --- a/projects/plugins/protect/composer.json +++ b/projects/plugins/protect/composer.json @@ -79,6 +79,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectⓥ3_0_0_beta" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_protectⓥ3_0_1_alpha" } } diff --git a/projects/plugins/protect/jetpack-protect.php b/projects/plugins/protect/jetpack-protect.php index 8e20259d4aafc..e2e0c303a5838 100644 --- a/projects/plugins/protect/jetpack-protect.php +++ b/projects/plugins/protect/jetpack-protect.php @@ -3,7 +3,7 @@ * Plugin Name: Jetpack Protect * Plugin URI: https://wordpress.org/plugins/jetpack-protect * Description: Security tools that keep your site safe and sound, from posts to plugins. - * Version: 3.0.0-beta + * Version: 3.0.1-alpha * Author: Automattic - Jetpack Security team * Author URI: https://jetpack.com/protect/ * License: GPLv2 or later @@ -32,7 +32,7 @@ exit; } -define( 'JETPACK_PROTECT_VERSION', '3.0.0-beta' ); +define( 'JETPACK_PROTECT_VERSION', '3.0.1-alpha' ); define( 'JETPACK_PROTECT_DIR', plugin_dir_path( __FILE__ ) ); define( 'JETPACK_PROTECT_ROOT_FILE', __FILE__ ); define( 'JETPACK_PROTECT_ROOT_FILE_RELATIVE_PATH', plugin_basename( __FILE__ ) ); diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 40d55cb0cd6ef..c3b816ab869ab 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -128,7 +128,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_3_1_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_3_3_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 8b5a423435f2b..90ffa2a6ea994 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.3.1-alpha", + "version": "5.3.3-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index e7543ee0a2890..3e13617f17c88 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.3.1-alpha + * Version: 5.3.3-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.3.1-alpha' ); +define( 'WPCOMSH_VERSION', '5.3.3-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From 4470b86f302aab1b8c44127801e1b86be8abad66 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Wed, 14 Aug 2024 15:38:43 +0530 Subject: [PATCH 14/19] Fix up versions --- projects/packages/publicize/composer.json | 2 +- projects/packages/publicize/package.json | 2 +- projects/plugins/jetpack/composer.lock | 1855 ++++++++++++++++----- projects/plugins/social/composer.lock | 1329 +++++++++++---- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 +- 7 files changed, 2423 insertions(+), 773 deletions(-) diff --git a/projects/packages/publicize/composer.json b/projects/packages/publicize/composer.json index 3f582e71cdeb3..6773acb41c6e7 100644 --- a/projects/packages/publicize/composer.json +++ b/projects/packages/publicize/composer.json @@ -68,7 +68,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.49.x-dev" + "dev-trunk": "0.50.x-dev" } }, "config": { diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 50e72165fc8d3..dea920e253bd5 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.49.1-alpha", + "version": "0.50.0-alpha", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 8ad706c466a1a..26f821b1ca2a8 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -36,13 +36,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", "transport-options": { "relative": true @@ -84,15 +92,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Generic Jetpack wp-admin UI elements", "transport-options": { "relative": true @@ -132,17 +152,33 @@ } }, "autoload": { - "files": [ "actions.php" ], - "classmap": [ "src/" ] + "files": [ + "actions.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "pnpm run build" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ] + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Asset management utilities for Jetpack ecosystem packages", "transport-options": { "relative": true @@ -181,18 +217,33 @@ } }, "autoload": { - "classmap": [ "src/AutoloadGenerator.php" ], + "classmap": [ + "src/AutoloadGenerator.php" + ], "psr-4": { "Automattic\\Jetpack\\Autoloader\\": "src" } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Creates a custom autoloader for a plugin or theme.", - "keywords": [ "autoload", "autoloader", "composer", "jetpack", "plugin", "wordpress" ], + "keywords": [ + "autoload", + "autoloader", + "composer", + "jetpack", + "plugin", + "wordpress" + ], "transport-options": { "relative": true } @@ -242,20 +293,43 @@ } }, "autoload": { - "files": [ "actions.php" ], - "classmap": [ "src/" ] + "files": [ + "actions.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "pnpm run build-production-concurrently" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "pnpm run build-production-concurrently" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with backing up Jetpack sites.", "transport-options": { "relative": true @@ -292,15 +366,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Install / delete helper script for backup and transport server. Not visible to site owners.", "transport-options": { "relative": true @@ -348,18 +434,37 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Attract high-quality traffic to your site using Blaze.", "transport-options": { "relative": true @@ -398,15 +503,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Register and manage blocks within a plugin. Used to manage block registration, enqueues, and more.", "transport-options": { "relative": true @@ -445,17 +562,33 @@ "textdomain": "jetpack-boost-core" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Core functionality for boost and relevant packages to depend on", "transport-options": { "relative": true @@ -497,7 +630,9 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "autoload-dev": { "psr-4": { @@ -505,14 +640,28 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package that handles the API to generate the speed score.", "transport-options": { "relative": true @@ -554,17 +703,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Features used with classic themes", "transport-options": { "relative": true @@ -599,7 +764,9 @@ "dev-trunk": "3.0.x-dev" } }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Compatibility layer with previous versions of Jetpack", "transport-options": { "relative": true @@ -636,15 +803,28 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A custom installer plugin for Composer to move Jetpack packages out of `vendor/` so WordPress's translation infrastructure will find their strings.", - "keywords": [ "composer", "i18n", "jetpack", "plugin" ], + "keywords": [ + "composer", + "i18n", + "jetpack", + "plugin" + ], "transport-options": { "relative": true } @@ -709,9 +889,13 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", "transport-options": { "relative": true @@ -761,21 +945,43 @@ "dev-trunk": "2.12.x-dev" }, "dependencies": { - "test-only": [ "packages/licensing", "packages/sync" ] + "test-only": [ + "packages/licensing", + "packages/sync" + ] } }, "autoload": { - "classmap": [ "legacy", "src/", "src/webhooks", "src/identity-crisis" ] + "classmap": [ + "legacy", + "src/", + "src/webhooks", + "src/identity-crisis" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to connect to the Jetpack infrastructure", "transport-options": { "relative": true @@ -812,13 +1018,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A wrapper for defining constants in a more testable way.", "transport-options": { "relative": true @@ -854,13 +1068,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A way to detect device types based on User-Agent header.", "transport-options": { "relative": true @@ -896,13 +1118,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Error - a wrapper around WP_Error.", "transport-options": { "relative": true @@ -943,18 +1173,38 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "echo 'Run `pnpm run test` when ready'" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "echo 'Run `pnpm run test` when ready'" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package for running A/B tests on the Experimentation Platform (ExPlat) in the plugin.", "transport-options": { "relative": true @@ -1002,19 +1252,40 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test:contact-form" ], - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test:contact-form" + ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Forms", "transport-options": { "relative": true @@ -1057,15 +1328,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Serve images through Jetpack's powerful CDN", "transport-options": { "relative": true @@ -1108,17 +1391,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Set of REST API routes used in WPCOM Unified Importer.", "transport-options": { "relative": true @@ -1159,13 +1458,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities for working with IP addresses.", "transport-options": { "relative": true @@ -1213,16 +1520,31 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Just in time messages for Jetpack", "transport-options": { "relative": true @@ -1261,15 +1583,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to manage Jetpack licenses client-side.", "transport-options": { "relative": true @@ -1305,13 +1639,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A logo for Jetpack", "transport-options": { "relative": true @@ -1363,17 +1705,34 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "pnpm run build-production", "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "pnpm run build-production", + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "transport-options": { "relative": true @@ -1430,24 +1789,52 @@ "::PACKAGE_VERSION": "src/class-initializer.php" }, "dependencies": { - "test-only": [ "packages/search", "packages/videopress" ] + "test-only": [ + "packages/search", + "packages/videopress" + ] } }, "autoload": { - "classmap": [ "src/", "src/products" ] + "classmap": [ + "src/", + "src/products" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "transport-options": { "relative": true @@ -1485,15 +1872,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Password Checker.", "transport-options": { "relative": true @@ -1532,17 +1931,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Fetch information about Jetpack Plans from wpcom", "transport-options": { "relative": true @@ -1581,13 +1996,21 @@ "textdomain": "jetpack-plugins-installer" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Handle installation of plugins from WP.org", "transport-options": { "relative": true @@ -1629,15 +2052,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Enhance the classic view of the Admin section of your WordPress site", "transport-options": { "relative": true @@ -1678,17 +2113,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the models used in Protect. ", "transport-options": { "relative": true @@ -1734,17 +2185,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", "transport-options": { "relative": true @@ -1756,7 +2223,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "9dbb115acd62d66dc4548594fc28442a298476d0" + "reference": "08bd760282b381fe50f101aacad15739aaf038d0" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1784,23 +2251,45 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.49.x-dev" + "dev-trunk": "0.50.x-dev" } }, "autoload": { - "classmap": [ "src/" ], - "files": [ "actions.php", "src/social-image-generator/utilities.php" ] + "classmap": [ + "src/" + ], + "files": [ + "actions.php", + "src/social-image-generator/utilities.php" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "build-production": [ "pnpm run build-production-concurrently" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "build-production": [ + "pnpm run build-production-concurrently" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "transport-options": { "relative": true @@ -1838,13 +2327,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", "transport-options": { "relative": true @@ -1881,13 +2378,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities, related with user roles and capabilities.", "transport-options": { "relative": true @@ -1935,20 +2440,44 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build": [ "Composer\\Config::disableProcessTimeout", "pnpm run build" ], - "build-development": [ "pnpm run build-development" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run build" + ], + "build-development": [ + "pnpm run build-development" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with enabling cloud search for Jetpack sites.", "transport-options": { "relative": true @@ -1992,15 +2521,27 @@ "textdomain": "jetpack-stats" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Collect valuable traffic stats and insights.", "transport-options": { "relative": true @@ -2044,17 +2585,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Stats Dashboard", "transport-options": { "relative": true @@ -2094,17 +2651,28 @@ "dev-trunk": "3.3.x-dev" }, "dependencies": { - "test-only": [ "packages/connection", "packages/plans" ] + "test-only": [ + "packages/connection", + "packages/plans" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", "transport-options": { "relative": true @@ -2152,19 +2720,34 @@ "dev-trunk": "3.6.x-dev" }, "dependencies": { - "test-only": [ "packages/search", "packages/waf" ] + "test-only": [ + "packages/search", + "packages/waf" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", "transport-options": { "relative": true @@ -2211,19 +2794,40 @@ "textdomain": "jetpack-videopress-pkg" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test" ], - "build-production": [ "NODE_ENV=production BABEL_ENV=production pnpm run build" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test" + ], + "build-production": [ + "NODE_ENV=production BABEL_ENV=production pnpm run build" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "VideoPress package", "transport-options": { "relative": true @@ -2266,23 +2870,35 @@ } }, "autoload": { - "files": [ "cli.php" ], - "classmap": [ "src/" ] + "files": [ + "cli.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { "phpunit": [ "./vendor/phpunit/phpunit/phpunit --configuration tests/php/integration/phpunit.xml.dist --colors=always", "./vendor/phpunit/phpunit/phpunit --configuration tests/php/unit/phpunit.xml.dist --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], "test-coverage-html": [ "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-html ./coverage --configuration tests/php/integration/phpunit.xml.dist", "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-html ./coverage --configuration tests/php/unit/phpunit.xml.dist" ], - "test-php": [ "@composer phpunit" ] + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with the Jetpack Web Application Firewall", "transport-options": { "relative": true @@ -2327,18 +2943,38 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build": [ "Composer\\Config::disableProcessTimeout", "pnpm run build" ], - "build-development": [ "pnpm run build-development" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run build" + ], + "build-development": [ + "pnpm run build-development" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Earn income by allowing Jetpack to display high quality ads.", "transport-options": { "relative": true @@ -2380,15 +3016,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Enhanced analytics for WooCommerce users.", "transport-options": { "relative": true @@ -2428,7 +3076,9 @@ "ext-iconv": "Can be used as fallback when ext-mbstring is not available", "ext-mbstring": "For best performance, mbstring should be installed as it is faster than ext-iconv" }, - "bin": [ "bin/pscss" ], + "bin": [ + "bin/pscss" + ], "type": "library", "extra": { "bamarni-bin": { @@ -2442,7 +3092,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Anthon Pang", @@ -2457,7 +3109,13 @@ ], "description": "scssphp is a compiler for SCSS written in PHP.", "homepage": "http://scssphp.github.io/scssphp/", - "keywords": [ "css", "less", "sass", "scss", "stylesheet" ], + "keywords": [ + "css", + "less", + "sass", + "scss", + "stylesheet" + ], "support": { "issues": "https://github.com/scssphp/scssphp/issues", "source": "https://github.com/scssphp/scssphp/tree/v1.12.0" @@ -2490,10 +3148,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "Apache-2.0" ], + "license": [ + "Apache-2.0" + ], "authors": [ { "name": "Ori Livneh", @@ -2502,7 +3164,10 @@ ], "description": "An implementation of the Aho-Corasick string matching algorithm.", "homepage": "https://gerrit.wikimedia.org/g/AhoCorasick", - "keywords": [ "ahocorasick", "matcher" ], + "keywords": [ + "ahocorasick", + "matcher" + ], "support": { "source": "https://github.com/wikimedia/AhoCorasick/tree/v1.0.1" }, @@ -2532,7 +3197,9 @@ }, "type": "library", "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Ignas Rudaitis", @@ -2573,7 +3240,9 @@ "wikimedia/testing-access-wrapper": "^1.0 || ^2.0 || ^3.0", "yoast/phpunit-polyfills": "1.1.0" }, - "bin": [ "bin/changelogger" ], + "bin": [ + "bin/changelogger" + ], "type": "project", "extra": { "autotagger": true, @@ -2601,8 +3270,12 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], "post-install-cmd": [ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ], @@ -2610,9 +3283,16 @@ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.", - "keywords": [ "changelog", "cli", "dev", "keepachangelog" ], + "keywords": [ + "changelog", + "cli", + "dev", + "keepachangelog" + ], "transport-options": { "relative": true } @@ -2645,15 +3325,30 @@ "mirror-repo": "Automattic/patchwork-redefine-exit" }, "autoload": { - "classmap": [ "src" ] + "classmap": [ + "src" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Use antecedent/patchwork to redefine `exit` and `die` for more robust PHPUnit testing.", - "keywords": [ "die", "exit", "patchwork", "phpunit", "redefinition", "testing" ], + "keywords": [ + "die", + "exit", + "patchwork", + "phpunit", + "redefinition", + "testing" + ], "transport-options": { "relative": true } @@ -2692,7 +3387,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Marco Pivetta", @@ -2702,7 +3399,10 @@ ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ "constructor", "instantiate" ], + "keywords": [ + "constructor", + "instantiate" + ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", "source": "https://github.com/doctrine/instantiator/tree/2.0.0" @@ -2753,7 +3453,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "John Kary", @@ -2762,7 +3464,11 @@ ], "description": "Find and report on slow tests in your PHPUnit test suite", "homepage": "https://github.com/johnkary/phpunit-speedtrap", - "keywords": [ "phpunit", "profile", "slow" ], + "keywords": [ + "phpunit", + "profile", + "slow" + ], "support": { "issues": "https://github.com/johnkary/phpunit-speedtrap/issues", "source": "https://github.com/johnkary/phpunit-speedtrap/tree/v4.0.1" @@ -2798,15 +3504,25 @@ }, "type": "library", "autoload": { - "files": [ "src/DeepCopy/deep_copy.php" ], + "files": [ + "src/DeepCopy/deep_copy.php" + ], "psr-4": { "DeepCopy\\": "src/DeepCopy/" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "description": "Create deep copies (clones) of your objects", - "keywords": [ "clone", "copy", "duplicate", "object", "object graph" ], + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" @@ -2843,7 +3559,9 @@ "ircmaxell/php-yacc": "^0.0.7", "phpunit/phpunit": "^9.0" }, - "bin": [ "bin/php-parse" ], + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { @@ -2856,14 +3574,19 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Nikita Popov" } ], "description": "A PHP parser written in PHP", - "keywords": [ "parser", "php" ], + "keywords": [ + "parser", + "php" + ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" @@ -2899,10 +3622,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -2952,10 +3679,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -3023,10 +3754,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3036,7 +3771,11 @@ ], "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ "coverage", "testing", "xunit" ], + "keywords": [ + "coverage", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", @@ -3077,10 +3816,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3090,7 +3833,10 @@ ], "description": "FilterIterator implementation that filters files based on a list of suffixes.", "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ "filesystem", "iterator" ], + "keywords": [ + "filesystem", + "iterator" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" @@ -3134,10 +3880,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3147,7 +3897,9 @@ ], "description": "Invoke callables with a timeout", "homepage": "https://github.com/sebastianbergmann/php-invoker/", - "keywords": [ "process" ], + "keywords": [ + "process" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" @@ -3187,10 +3939,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3200,7 +3956,9 @@ ], "description": "Simple template engine.", "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ "template" ], + "keywords": [ + "template" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" @@ -3240,10 +3998,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3253,7 +4015,9 @@ ], "description": "Utility class for timing", "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ "timer" ], + "keywords": [ + "timer" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" @@ -3313,7 +4077,9 @@ "ext-soap": "To be able to generate mocks based on WSDL files", "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, - "bin": [ "phpunit" ], + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { @@ -3321,11 +4087,17 @@ } }, "autoload": { - "files": [ "src/Framework/Assert/Functions.php" ], - "classmap": [ "src/" ] + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3335,7 +4107,11 @@ ], "description": "The PHP Unit Testing framework.", "homepage": "https://phpunit.de/", - "keywords": [ "phpunit", "testing", "xunit" ], + "keywords": [ + "phpunit", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", @@ -3386,7 +4162,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "PHP-FIG", @@ -3395,7 +4173,13 @@ ], "description": "Common Container Interface (PHP FIG PSR-11)", "homepage": "https://github.com/php-fig/container", - "keywords": [ "PSR-11", "container", "container-interface", "container-interop", "psr" ], + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], "support": { "issues": "https://github.com/php-fig/container/issues", "source": "https://github.com/php-fig/container/tree/2.0.2" @@ -3429,10 +4213,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3481,10 +4269,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3533,10 +4325,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3586,10 +4382,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3610,7 +4410,11 @@ ], "description": "Provides the functionality to compare PHP values for equality", "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ "comparator", "compare", "equality" ], + "keywords": [ + "comparator", + "compare", + "equality" + ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" @@ -3651,10 +4455,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3704,10 +4512,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3720,7 +4532,12 @@ ], "description": "Diff implementation", "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ "diff", "udiff", "unidiff", "unified diff" ], + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" @@ -3763,10 +4580,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3775,7 +4596,11 @@ ], "description": "Provides functionality to handle HHVM/PHP environments", "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ "Xdebug", "environment", "hhvm" ], + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" @@ -3817,10 +4642,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3845,7 +4674,10 @@ ], "description": "Provides the functionality to export PHP variables for visualization", "homepage": "https://www.github.com/sebastianbergmann/exporter", - "keywords": [ "export", "exporter" ], + "keywords": [ + "export", + "exporter" + ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" @@ -3891,10 +4723,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3903,7 +4739,9 @@ ], "description": "Snapshotting of global state", "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ "global state" ], + "keywords": [ + "global state" + ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" @@ -3944,10 +4782,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3998,10 +4840,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4049,10 +4895,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4100,10 +4950,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4159,10 +5013,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4209,10 +5067,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4258,10 +5120,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4331,10 +5197,14 @@ "psr-4": { "Symfony\\Component\\Console\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -4347,7 +5217,12 @@ ], "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", - "keywords": [ "cli", "command-line", "console", "terminal" ], + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], "support": { "source": "https://github.com/symfony/console/tree/v7.1.2" }, @@ -4395,10 +5270,14 @@ } }, "autoload": { - "files": [ "function.php" ] + "files": [ + "function.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4461,13 +5340,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Gert de Pagter", @@ -4480,7 +5363,12 @@ ], "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "ctype", "polyfill", "portable" ], + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], "support": { "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" }, @@ -4528,13 +5416,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Grapheme\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4547,7 +5439,14 @@ ], "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "grapheme", "intl", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, @@ -4595,14 +5494,20 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, - "classmap": [ "Resources/stubs" ] + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4615,7 +5520,14 @@ ], "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "intl", "normalizer", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, @@ -4666,13 +5578,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4685,7 +5601,13 @@ ], "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "mbstring", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, @@ -4727,10 +5649,14 @@ "psr-4": { "Symfony\\Component\\Process\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -4798,10 +5724,14 @@ "psr-4": { "Symfony\\Contracts\\Service\\": "" }, - "exclude-from-classmap": [ "/Test/" ] + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4875,14 +5805,20 @@ }, "type": "library", "autoload": { - "files": [ "Resources/functions.php" ], + "files": [ + "Resources/functions.php" + ], "psr-4": { "Symfony\\Component\\String\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4895,7 +5831,14 @@ ], "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", - "keywords": [ "grapheme", "i18n", "string", "unicode", "utf-8", "utf8" ], + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], "support": { "source": "https://github.com/symfony/string/tree/v7.1.2" }, @@ -4937,10 +5880,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -4989,10 +5936,14 @@ } }, "autoload": { - "files": [ "phpunitpolyfills-autoload.php" ] + "files": [ + "phpunitpolyfills-autoload.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Team Yoast", @@ -5006,7 +5957,11 @@ ], "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests", "homepage": "https://github.com/Yoast/PHPUnit-Polyfills", - "keywords": [ "phpunit", "polyfill", "testing" ], + "keywords": [ + "phpunit", + "polyfill", + "testing" + ], "support": { "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues", "source": "https://github.com/Yoast/PHPUnit-Polyfills" diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 8ab146c1c68e6..91c0c4ec29a10 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -36,13 +36,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", "transport-options": { "relative": true @@ -84,15 +92,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Generic Jetpack wp-admin UI elements", "transport-options": { "relative": true @@ -132,17 +152,33 @@ } }, "autoload": { - "files": [ "actions.php" ], - "classmap": [ "src/" ] + "files": [ + "actions.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "pnpm run build" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ] + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Asset management utilities for Jetpack ecosystem packages", "transport-options": { "relative": true @@ -181,18 +217,33 @@ } }, "autoload": { - "classmap": [ "src/AutoloadGenerator.php" ], + "classmap": [ + "src/AutoloadGenerator.php" + ], "psr-4": { "Automattic\\Jetpack\\Autoloader\\": "src" } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Creates a custom autoloader for a plugin or theme.", - "keywords": [ "autoload", "autoloader", "composer", "jetpack", "plugin", "wordpress" ], + "keywords": [ + "autoload", + "autoloader", + "composer", + "jetpack", + "plugin", + "wordpress" + ], "transport-options": { "relative": true } @@ -230,17 +281,33 @@ "textdomain": "jetpack-boost-core" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Core functionality for boost and relevant packages to depend on", "transport-options": { "relative": true @@ -282,7 +349,9 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "autoload-dev": { "psr-4": { @@ -290,14 +359,28 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package that handles the API to generate the speed score.", "transport-options": { "relative": true @@ -334,15 +417,28 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A custom installer plugin for Composer to move Jetpack packages out of `vendor/` so WordPress's translation infrastructure will find their strings.", - "keywords": [ "composer", "i18n", "jetpack", "plugin" ], + "keywords": [ + "composer", + "i18n", + "jetpack", + "plugin" + ], "transport-options": { "relative": true } @@ -407,9 +503,13 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", "transport-options": { "relative": true @@ -459,21 +559,43 @@ "dev-trunk": "2.12.x-dev" }, "dependencies": { - "test-only": [ "packages/licensing", "packages/sync" ] + "test-only": [ + "packages/licensing", + "packages/sync" + ] } }, "autoload": { - "classmap": [ "legacy", "src/", "src/webhooks", "src/identity-crisis" ] + "classmap": [ + "legacy", + "src/", + "src/webhooks", + "src/identity-crisis" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to connect to the Jetpack infrastructure", "transport-options": { "relative": true @@ -510,13 +632,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A wrapper for defining constants in a more testable way.", "transport-options": { "relative": true @@ -552,13 +682,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A way to detect device types based on User-Agent header.", "transport-options": { "relative": true @@ -599,18 +737,38 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "echo 'Run `pnpm run test` when ready'" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "echo 'Run `pnpm run test` when ready'" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package for running A/B tests on the Experimentation Platform (ExPlat) in the plugin.", "transport-options": { "relative": true @@ -651,13 +809,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities for working with IP addresses.", "transport-options": { "relative": true @@ -705,16 +871,31 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Just in time messages for Jetpack", "transport-options": { "relative": true @@ -753,15 +934,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to manage Jetpack licenses client-side.", "transport-options": { "relative": true @@ -797,13 +990,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A logo for Jetpack", "transport-options": { "relative": true @@ -860,24 +1061,52 @@ "::PACKAGE_VERSION": "src/class-initializer.php" }, "dependencies": { - "test-only": [ "packages/search", "packages/videopress" ] + "test-only": [ + "packages/search", + "packages/videopress" + ] } }, "autoload": { - "classmap": [ "src/", "src/products" ] + "classmap": [ + "src/", + "src/products" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "transport-options": { "relative": true @@ -915,15 +1144,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Password Checker.", "transport-options": { "relative": true @@ -962,17 +1203,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Fetch information about Jetpack Plans from wpcom", "transport-options": { "relative": true @@ -1011,13 +1268,21 @@ "textdomain": "jetpack-plugins-installer" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Handle installation of plugins from WP.org", "transport-options": { "relative": true @@ -1059,15 +1324,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Enhance the classic view of the Admin section of your WordPress site", "transport-options": { "relative": true @@ -1108,17 +1385,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the models used in Protect. ", "transport-options": { "relative": true @@ -1164,17 +1457,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", "transport-options": { "relative": true @@ -1186,7 +1495,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "9dbb115acd62d66dc4548594fc28442a298476d0" + "reference": "08bd760282b381fe50f101aacad15739aaf038d0" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1214,23 +1523,45 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.49.x-dev" + "dev-trunk": "0.50.x-dev" } }, "autoload": { - "classmap": [ "src/" ], - "files": [ "actions.php", "src/social-image-generator/utilities.php" ] + "classmap": [ + "src/" + ], + "files": [ + "actions.php", + "src/social-image-generator/utilities.php" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "build-production": [ "pnpm run build-production-concurrently" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "build-production": [ + "pnpm run build-production-concurrently" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "transport-options": { "relative": true @@ -1268,13 +1599,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", "transport-options": { "relative": true @@ -1311,13 +1650,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities, related with user roles and capabilities.", "transport-options": { "relative": true @@ -1357,17 +1704,28 @@ "dev-trunk": "3.3.x-dev" }, "dependencies": { - "test-only": [ "packages/connection", "packages/plans" ] + "test-only": [ + "packages/connection", + "packages/plans" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", "transport-options": { "relative": true @@ -1415,19 +1773,34 @@ "dev-trunk": "3.6.x-dev" }, "dependencies": { - "test-only": [ "packages/search", "packages/waf" ] + "test-only": [ + "packages/search", + "packages/waf" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", "transport-options": { "relative": true @@ -1470,23 +1843,35 @@ } }, "autoload": { - "files": [ "cli.php" ], - "classmap": [ "src/" ] + "files": [ + "cli.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { "phpunit": [ "./vendor/phpunit/phpunit/phpunit --configuration tests/php/integration/phpunit.xml.dist --colors=always", "./vendor/phpunit/phpunit/phpunit --configuration tests/php/unit/phpunit.xml.dist --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], "test-coverage-html": [ "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-html ./coverage --configuration tests/php/integration/phpunit.xml.dist", "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-html ./coverage --configuration tests/php/unit/phpunit.xml.dist" ], - "test-php": [ "@composer phpunit" ] + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with the Jetpack Web Application Firewall", "transport-options": { "relative": true @@ -1518,10 +1903,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "Apache-2.0" ], + "license": [ + "Apache-2.0" + ], "authors": [ { "name": "Ori Livneh", @@ -1530,7 +1919,10 @@ ], "description": "An implementation of the Aho-Corasick string matching algorithm.", "homepage": "https://gerrit.wikimedia.org/g/AhoCorasick", - "keywords": [ "ahocorasick", "matcher" ], + "keywords": [ + "ahocorasick", + "matcher" + ], "support": { "source": "https://github.com/wikimedia/AhoCorasick/tree/v1.0.1" }, @@ -1560,7 +1952,9 @@ }, "type": "library", "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Ignas Rudaitis", @@ -1601,7 +1995,9 @@ "wikimedia/testing-access-wrapper": "^1.0 || ^2.0 || ^3.0", "yoast/phpunit-polyfills": "1.1.0" }, - "bin": [ "bin/changelogger" ], + "bin": [ + "bin/changelogger" + ], "type": "project", "extra": { "autotagger": true, @@ -1629,8 +2025,12 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], "post-install-cmd": [ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ], @@ -1638,9 +2038,16 @@ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.", - "keywords": [ "changelog", "cli", "dev", "keepachangelog" ], + "keywords": [ + "changelog", + "cli", + "dev", + "keepachangelog" + ], "transport-options": { "relative": true } @@ -1675,7 +2082,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "authors": [ { "name": "Automattic Inc." @@ -1720,13 +2129,17 @@ } }, "autoload": { - "files": [ "inc/api.php" ], + "files": [ + "inc/api.php" + ], "psr-4": { "Brain\\Monkey\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Giuseppe Mazzapica", @@ -1788,7 +2201,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Marco Pivetta", @@ -1798,7 +2213,10 @@ ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ "constructor", "instantiate" ], + "keywords": [ + "constructor", + "instantiate" + ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", "source": "https://github.com/doctrine/instantiator/tree/2.0.0" @@ -1852,12 +2270,18 @@ } }, "autoload": { - "classmap": [ "hamcrest" ] + "classmap": [ + "hamcrest" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "description": "This is the PHP port of Hamcrest Matchers", - "keywords": [ "test" ], + "keywords": [ + "test" + ], "support": { "issues": "https://github.com/hamcrest/hamcrest-php/issues", "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" @@ -1892,13 +2316,18 @@ }, "type": "library", "autoload": { - "files": [ "library/helpers.php", "library/Mockery.php" ], + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], "psr-4": { "Mockery\\": "library/Mockery" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Pádraic Brady", @@ -1971,15 +2400,25 @@ }, "type": "library", "autoload": { - "files": [ "src/DeepCopy/deep_copy.php" ], + "files": [ + "src/DeepCopy/deep_copy.php" + ], "psr-4": { "DeepCopy\\": "src/DeepCopy/" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "description": "Create deep copies (clones) of your objects", - "keywords": [ "clone", "copy", "duplicate", "object", "object graph" ], + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" @@ -2016,7 +2455,9 @@ "ircmaxell/php-yacc": "^0.0.7", "phpunit/phpunit": "^9.0" }, - "bin": [ "bin/php-parse" ], + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { @@ -2029,14 +2470,19 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Nikita Popov" } ], "description": "A PHP parser written in PHP", - "keywords": [ "parser", "php" ], + "keywords": [ + "parser", + "php" + ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" @@ -2072,10 +2518,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -2125,10 +2575,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -2196,10 +2650,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2209,7 +2667,11 @@ ], "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ "coverage", "testing", "xunit" ], + "keywords": [ + "coverage", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", @@ -2250,10 +2712,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2263,7 +2729,10 @@ ], "description": "FilterIterator implementation that filters files based on a list of suffixes.", "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ "filesystem", "iterator" ], + "keywords": [ + "filesystem", + "iterator" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" @@ -2307,10 +2776,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2320,7 +2793,9 @@ ], "description": "Invoke callables with a timeout", "homepage": "https://github.com/sebastianbergmann/php-invoker/", - "keywords": [ "process" ], + "keywords": [ + "process" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" @@ -2360,10 +2835,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2373,7 +2852,9 @@ ], "description": "Simple template engine.", "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ "template" ], + "keywords": [ + "template" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" @@ -2413,10 +2894,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2426,7 +2911,9 @@ ], "description": "Utility class for timing", "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ "timer" ], + "keywords": [ + "timer" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" @@ -2486,7 +2973,9 @@ "ext-soap": "To be able to generate mocks based on WSDL files", "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, - "bin": [ "phpunit" ], + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { @@ -2494,11 +2983,17 @@ } }, "autoload": { - "files": [ "src/Framework/Assert/Functions.php" ], - "classmap": [ "src/" ] + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2508,7 +3003,11 @@ ], "description": "The PHP Unit Testing framework.", "homepage": "https://phpunit.de/", - "keywords": [ "phpunit", "testing", "xunit" ], + "keywords": [ + "phpunit", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", @@ -2559,7 +3058,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "PHP-FIG", @@ -2568,7 +3069,13 @@ ], "description": "Common Container Interface (PHP FIG PSR-11)", "homepage": "https://github.com/php-fig/container", - "keywords": [ "PSR-11", "container", "container-interface", "container-interop", "psr" ], + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], "support": { "issues": "https://github.com/php-fig/container/issues", "source": "https://github.com/php-fig/container/tree/2.0.2" @@ -2595,10 +3102,17 @@ }, "type": "metapackage", "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT", "GPL-2.0-or-later" ], + "license": [ + "MIT", + "GPL-2.0-or-later" + ], "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", "homepage": "https://wordpress.org/", - "keywords": [ "blog", "cms", "wordpress" ], + "keywords": [ + "blog", + "cms", + "wordpress" + ], "support": { "issues": "https://github.com/roots/wordpress/issues", "source": "https://github.com/roots/wordpress/tree/6.5.5" @@ -2649,7 +3163,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "authors": [ { "name": "John P. Bloch", @@ -2661,7 +3177,9 @@ } ], "description": "A custom installer to handle deploying WordPress with composer", - "keywords": [ "wordpress" ], + "keywords": [ + "wordpress" + ], "support": { "issues": "https://github.com/roots/wordpress-core-installer/issues", "source": "https://github.com/roots/wordpress-core-installer/tree/master" @@ -2715,7 +3233,9 @@ }, "type": "wordpress-core", "notification-url": "https://packagist.org/downloads/", - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "authors": [ { "name": "WordPress Community", @@ -2724,7 +3244,11 @@ ], "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", "homepage": "https://wordpress.org/", - "keywords": [ "blog", "cms", "wordpress" ], + "keywords": [ + "blog", + "cms", + "wordpress" + ], "support": { "docs": "https://developer.wordpress.org/", "forum": "https://wordpress.org/support/", @@ -2769,10 +3293,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2821,10 +3349,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2873,10 +3405,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2926,10 +3462,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2950,7 +3490,11 @@ ], "description": "Provides the functionality to compare PHP values for equality", "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ "comparator", "compare", "equality" ], + "keywords": [ + "comparator", + "compare", + "equality" + ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" @@ -2991,10 +3535,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3044,10 +3592,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3060,7 +3612,12 @@ ], "description": "Diff implementation", "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ "diff", "udiff", "unidiff", "unified diff" ], + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" @@ -3103,10 +3660,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3115,7 +3676,11 @@ ], "description": "Provides functionality to handle HHVM/PHP environments", "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ "Xdebug", "environment", "hhvm" ], + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" @@ -3157,10 +3722,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3185,7 +3754,10 @@ ], "description": "Provides the functionality to export PHP variables for visualization", "homepage": "https://www.github.com/sebastianbergmann/exporter", - "keywords": [ "export", "exporter" ], + "keywords": [ + "export", + "exporter" + ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" @@ -3231,10 +3803,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3243,7 +3819,9 @@ ], "description": "Snapshotting of global state", "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ "global state" ], + "keywords": [ + "global state" + ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" @@ -3284,10 +3862,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3338,10 +3920,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3389,10 +3975,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3440,10 +4030,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3499,10 +4093,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3549,10 +4147,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3598,10 +4200,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3671,10 +4277,14 @@ "psr-4": { "Symfony\\Component\\Console\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -3687,7 +4297,12 @@ ], "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", - "keywords": [ "cli", "command-line", "console", "terminal" ], + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], "support": { "source": "https://github.com/symfony/console/tree/v7.1.2" }, @@ -3735,10 +4350,14 @@ } }, "autoload": { - "files": [ "function.php" ] + "files": [ + "function.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3801,13 +4420,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Gert de Pagter", @@ -3820,7 +4443,12 @@ ], "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "ctype", "polyfill", "portable" ], + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], "support": { "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" }, @@ -3868,13 +4496,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Grapheme\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3887,7 +4519,14 @@ ], "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "grapheme", "intl", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, @@ -3935,14 +4574,20 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, - "classmap": [ "Resources/stubs" ] + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3955,7 +4600,14 @@ ], "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "intl", "normalizer", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, @@ -4006,13 +4658,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4025,7 +4681,13 @@ ], "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "mbstring", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, @@ -4067,10 +4729,14 @@ "psr-4": { "Symfony\\Component\\Process\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -4138,10 +4804,14 @@ "psr-4": { "Symfony\\Contracts\\Service\\": "" }, - "exclude-from-classmap": [ "/Test/" ] + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4215,14 +4885,20 @@ }, "type": "library", "autoload": { - "files": [ "Resources/functions.php" ], + "files": [ + "Resources/functions.php" + ], "psr-4": { "Symfony\\Component\\String\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4235,7 +4911,14 @@ ], "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", - "keywords": [ "grapheme", "i18n", "string", "unicode", "utf-8", "utf8" ], + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], "support": { "source": "https://github.com/symfony/string/tree/v7.1.2" }, @@ -4277,10 +4960,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -4329,10 +5016,14 @@ } }, "autoload": { - "files": [ "phpunitpolyfills-autoload.php" ] + "files": [ + "phpunitpolyfills-autoload.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Team Yoast", @@ -4346,7 +5037,11 @@ ], "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests", "homepage": "https://github.com/Yoast/PHPUnit-Polyfills", - "keywords": [ "phpunit", "polyfill", "testing" ], + "keywords": [ + "phpunit", + "polyfill", + "testing" + ], "support": { "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues", "source": "https://github.com/Yoast/PHPUnit-Polyfills" diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index bf7bc631b8343..29b4419008739 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -128,7 +128,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_4_0" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_4_1_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 02bf54bb17b28..6dc4c6fd56ea2 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.4.0", + "version": "5.4.1-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index 816ff6f8772f3..032216a833ad1 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.4.0 + * Version: 5.4.1-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.4.0' ); +define( 'WPCOMSH_VERSION', '5.4.1-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From b1ec968ec1089359510e9c4e28b156936a0ded0f Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Mon, 19 Aug 2024 12:21:39 +0530 Subject: [PATCH 15/19] Fix up versions --- projects/packages/sync/composer.json | 2 +- projects/packages/sync/src/class-package-version.php | 2 +- projects/plugins/automattic-for-agencies-client/composer.lock | 4 ++-- projects/plugins/backup/composer.lock | 4 ++-- projects/plugins/boost/composer.lock | 4 ++-- projects/plugins/jetpack/composer.lock | 4 ++-- projects/plugins/migration/composer.lock | 4 ++-- projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- projects/plugins/protect/composer.lock | 4 ++-- projects/plugins/search/composer.lock | 4 ++-- projects/plugins/social/composer.lock | 4 ++-- projects/plugins/starter-plugin/composer.lock | 4 ++-- projects/plugins/videopress/composer.lock | 4 ++-- projects/plugins/wpcomsh/composer.lock | 4 ++-- 14 files changed, 26 insertions(+), 26 deletions(-) diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index 423bc092a5cc5..9b9f03f5ec738 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 0f0a5ccca6a3a..d4222b1f84770 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.6.0-alpha'; + const PACKAGE_VERSION = '3.7.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index 98da44f08bc11..d31d861fbf4a8 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index c337bacffe681..10cfeab9c1ce2 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 5a7a51bbad014..d0858c7975e5a 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1725,7 +1725,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1758,7 +1758,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 1e35e3649650a..e40f357d753e1 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2684,7 +2684,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2717,7 +2717,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index 6069f7243a6aa..9f6cd7da3fb97 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index d78c95da25044..72cc88da7539d 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 91794382c7784..c10fe606df259 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1654,7 +1654,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1687,7 +1687,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 6fcf265a304f2..9ca69298ea9db 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1746,7 +1746,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1779,7 +1779,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 8d7615e265988..395662a4e894e 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1737,7 +1737,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1770,7 +1770,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 541a185a2fd8c..513173859d42f 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index 8ce280a149990..d6e0be9f0b0b1 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 1f2498e56c198..d6c48d76d311a 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "1647bd686ed11800513f14aa1c93956e16a3b7f5" + "reference": "5d71e613ed54856799d620de9336ba8dfe795382" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.6.x-dev" + "dev-trunk": "3.7.x-dev" }, "dependencies": { "test-only": [ From 81d1b19242b8527235d0f3f5d7548f0e606fc48a Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Tue, 27 Aug 2024 12:39:12 +0530 Subject: [PATCH 16/19] Fix up versions --- projects/packages/publicize/composer.json | 2 +- projects/packages/publicize/package.json | 2 +- projects/packages/sync/composer.json | 2 +- .../sync/src/class-package-version.php | 2 +- .../composer.lock | 4 +- projects/plugins/backup/composer.lock | 4 +- projects/plugins/boost/composer.lock | 4 +- projects/plugins/jetpack/composer.lock | 1859 +++++++++++++---- projects/plugins/migration/composer.lock | 4 +- .../plugins/mu-wpcom-plugin/composer.json | 2 +- .../plugins/mu-wpcom-plugin/composer.lock | 4 +- .../mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- projects/plugins/protect/composer.lock | 4 +- projects/plugins/search/composer.lock | 4 +- projects/plugins/social/composer.lock | 1296 +++++++++--- projects/plugins/starter-plugin/composer.lock | 4 +- projects/plugins/videopress/composer.lock | 4 +- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/composer.lock | 4 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 +- 22 files changed, 2424 insertions(+), 793 deletions(-) diff --git a/projects/packages/publicize/composer.json b/projects/packages/publicize/composer.json index 326578c1a8e53..5d2161b7ec4fa 100644 --- a/projects/packages/publicize/composer.json +++ b/projects/packages/publicize/composer.json @@ -68,7 +68,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.50.x-dev" + "dev-trunk": "0.51.x-dev" } }, "config": { diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 200674f4d81d6..66b03f3a02d0b 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.50.0-alpha", + "version": "0.51.0-alpha", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index db452a140e4eb..f6a9b40d4e769 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 138e0ac07bd3c..14511bcd4a741 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.8.0'; + const PACKAGE_VERSION = '3.9.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index e643e0af0047b..eee593bf6e58b 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index 59b136c6f7ff4..fe4b145eed785 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1740,7 +1740,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1773,7 +1773,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 21050e2c4b9de..3b723c8fa723c 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1724,7 +1724,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1757,7 +1757,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index ac8d357ab64d3..dfdc342a5c188 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -36,13 +36,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", "transport-options": { "relative": true @@ -84,15 +92,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Generic Jetpack wp-admin UI elements", "transport-options": { "relative": true @@ -132,17 +152,33 @@ } }, "autoload": { - "files": [ "actions.php" ], - "classmap": [ "src/" ] + "files": [ + "actions.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "pnpm run build" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ] + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Asset management utilities for Jetpack ecosystem packages", "transport-options": { "relative": true @@ -181,18 +217,33 @@ } }, "autoload": { - "classmap": [ "src/AutoloadGenerator.php" ], + "classmap": [ + "src/AutoloadGenerator.php" + ], "psr-4": { "Automattic\\Jetpack\\Autoloader\\": "src" } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Creates a custom autoloader for a plugin or theme.", - "keywords": [ "autoload", "autoloader", "composer", "jetpack", "plugin", "wordpress" ], + "keywords": [ + "autoload", + "autoloader", + "composer", + "jetpack", + "plugin", + "wordpress" + ], "transport-options": { "relative": true } @@ -242,20 +293,43 @@ } }, "autoload": { - "files": [ "actions.php" ], - "classmap": [ "src/" ] + "files": [ + "actions.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "pnpm run build-production-concurrently" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "pnpm run build-production-concurrently" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with backing up Jetpack sites.", "transport-options": { "relative": true @@ -292,15 +366,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Install / delete helper script for backup and transport server. Not visible to site owners.", "transport-options": { "relative": true @@ -348,18 +434,37 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Attract high-quality traffic to your site using Blaze.", "transport-options": { "relative": true @@ -398,15 +503,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Register and manage blocks within a plugin. Used to manage block registration, enqueues, and more.", "transport-options": { "relative": true @@ -445,17 +562,33 @@ "textdomain": "jetpack-boost-core" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Core functionality for boost and relevant packages to depend on", "transport-options": { "relative": true @@ -497,7 +630,9 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "autoload-dev": { "psr-4": { @@ -505,14 +640,28 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package that handles the API to generate the speed score.", "transport-options": { "relative": true @@ -554,17 +703,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Features used with classic themes", "transport-options": { "relative": true @@ -599,7 +764,9 @@ "dev-trunk": "3.0.x-dev" } }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Compatibility layer with previous versions of Jetpack", "transport-options": { "relative": true @@ -636,15 +803,28 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A custom installer plugin for Composer to move Jetpack packages out of `vendor/` so WordPress's translation infrastructure will find their strings.", - "keywords": [ "composer", "i18n", "jetpack", "plugin" ], + "keywords": [ + "composer", + "i18n", + "jetpack", + "plugin" + ], "transport-options": { "relative": true } @@ -709,9 +889,13 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", "transport-options": { "relative": true @@ -761,21 +945,43 @@ "dev-trunk": "2.12.x-dev" }, "dependencies": { - "test-only": [ "packages/licensing", "packages/sync" ] + "test-only": [ + "packages/licensing", + "packages/sync" + ] } }, "autoload": { - "classmap": [ "legacy", "src/", "src/webhooks", "src/identity-crisis" ] + "classmap": [ + "legacy", + "src/", + "src/webhooks", + "src/identity-crisis" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to connect to the Jetpack infrastructure", "transport-options": { "relative": true @@ -812,13 +1018,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A wrapper for defining constants in a more testable way.", "transport-options": { "relative": true @@ -854,13 +1068,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A way to detect device types based on User-Agent header.", "transport-options": { "relative": true @@ -896,13 +1118,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Error - a wrapper around WP_Error.", "transport-options": { "relative": true @@ -943,18 +1173,38 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "echo 'Run `pnpm run test` when ready'" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "echo 'Run `pnpm run test` when ready'" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package for running A/B tests on the Experimentation Platform (ExPlat) in the plugin.", "transport-options": { "relative": true @@ -1002,19 +1252,40 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test:contact-form" ], - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test:contact-form" + ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Forms", "transport-options": { "relative": true @@ -1057,15 +1328,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Serve images through Jetpack's powerful CDN", "transport-options": { "relative": true @@ -1108,17 +1391,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Set of REST API routes used in WPCOM Unified Importer.", "transport-options": { "relative": true @@ -1159,13 +1458,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities for working with IP addresses.", "transport-options": { "relative": true @@ -1213,16 +1520,31 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Just in time messages for Jetpack", "transport-options": { "relative": true @@ -1261,15 +1583,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to manage Jetpack licenses client-side.", "transport-options": { "relative": true @@ -1305,13 +1639,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A logo for Jetpack", "transport-options": { "relative": true @@ -1363,17 +1705,34 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "pnpm run build-production", "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "pnpm run build-production", + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "The WordPress.com Toolbar feature replaces the default admin bar and offers quick links to the Reader, all your sites, your WordPress.com profile, and notifications.", "transport-options": { "relative": true @@ -1429,24 +1788,52 @@ "::PACKAGE_VERSION": "src/class-initializer.php" }, "dependencies": { - "test-only": [ "packages/search", "packages/videopress" ] + "test-only": [ + "packages/search", + "packages/videopress" + ] } }, "autoload": { - "classmap": [ "src/", "src/products" ] + "classmap": [ + "src/", + "src/products" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "transport-options": { "relative": true @@ -1484,15 +1871,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Password Checker.", "transport-options": { "relative": true @@ -1531,17 +1930,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Fetch information about Jetpack Plans from wpcom", "transport-options": { "relative": true @@ -1580,13 +1995,21 @@ "textdomain": "jetpack-plugins-installer" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Handle installation of plugins from WP.org", "transport-options": { "relative": true @@ -1628,15 +2051,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Enhance the classic view of the Admin section of your WordPress site", "transport-options": { "relative": true @@ -1677,17 +2112,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the models used in Protect. ", "transport-options": { "relative": true @@ -1733,17 +2184,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", "transport-options": { "relative": true @@ -1755,7 +2222,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "08bd760282b381fe50f101aacad15739aaf038d0" + "reference": "93f91b772b729b972943a3fa45b01b9c95ea5543" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1783,23 +2250,45 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.50.x-dev" + "dev-trunk": "0.51.x-dev" } }, "autoload": { - "classmap": [ "src/" ], - "files": [ "actions.php", "src/social-image-generator/utilities.php" ] + "classmap": [ + "src/" + ], + "files": [ + "actions.php", + "src/social-image-generator/utilities.php" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "build-production": [ "pnpm run build-production-concurrently" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "build-production": [ + "pnpm run build-production-concurrently" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "transport-options": { "relative": true @@ -1837,13 +2326,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", "transport-options": { "relative": true @@ -1880,13 +2377,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities, related with user roles and capabilities.", "transport-options": { "relative": true @@ -1934,20 +2439,44 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build": [ "Composer\\Config::disableProcessTimeout", "pnpm run build" ], - "build-development": [ "pnpm run build-development" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run build" + ], + "build-development": [ + "pnpm run build-development" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with enabling cloud search for Jetpack sites.", "transport-options": { "relative": true @@ -1991,15 +2520,27 @@ "textdomain": "jetpack-stats" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Collect valuable traffic stats and insights.", "transport-options": { "relative": true @@ -2043,17 +2584,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Stats Dashboard", "transport-options": { "relative": true @@ -2093,17 +2650,28 @@ "dev-trunk": "3.3.x-dev" }, "dependencies": { - "test-only": [ "packages/connection", "packages/plans" ] + "test-only": [ + "packages/connection", + "packages/plans" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", "transport-options": { "relative": true @@ -2115,7 +2683,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2148,22 +2716,37 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { - "test-only": [ "packages/search", "packages/waf" ] + "test-only": [ + "packages/search", + "packages/waf" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", "transport-options": { "relative": true @@ -2210,19 +2793,40 @@ "textdomain": "jetpack-videopress-pkg" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test" ], - "build-production": [ "NODE_ENV=production BABEL_ENV=production pnpm run build" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test" + ], + "build-production": [ + "NODE_ENV=production BABEL_ENV=production pnpm run build" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "VideoPress package", "transport-options": { "relative": true @@ -2265,23 +2869,35 @@ } }, "autoload": { - "files": [ "cli.php" ], - "classmap": [ "src/" ] + "files": [ + "cli.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { "phpunit": [ "./vendor/phpunit/phpunit/phpunit --configuration tests/php/integration/phpunit.xml.dist --colors=always", "./vendor/phpunit/phpunit/phpunit --configuration tests/php/unit/phpunit.xml.dist --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], "test-coverage-html": [ "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-html ./coverage --configuration tests/php/integration/phpunit.xml.dist", "php -dpcov.directory=. ./vendor/bin/phpunit --coverage-html ./coverage --configuration tests/php/unit/phpunit.xml.dist" ], - "test-php": [ "@composer phpunit" ] + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Tools to assist with the Jetpack Web Application Firewall", "transport-options": { "relative": true @@ -2326,18 +2942,38 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build": [ "Composer\\Config::disableProcessTimeout", "pnpm run build" ], - "build-development": [ "pnpm run build-development" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run build" + ], + "build-development": [ + "pnpm run build-development" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Earn income by allowing Jetpack to display high quality ads.", "transport-options": { "relative": true @@ -2379,15 +3015,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Enhanced analytics for WooCommerce users.", "transport-options": { "relative": true @@ -2427,7 +3075,9 @@ "ext-iconv": "Can be used as fallback when ext-mbstring is not available", "ext-mbstring": "For best performance, mbstring should be installed as it is faster than ext-iconv" }, - "bin": [ "bin/pscss" ], + "bin": [ + "bin/pscss" + ], "type": "library", "extra": { "bamarni-bin": { @@ -2441,7 +3091,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Anthon Pang", @@ -2456,7 +3108,13 @@ ], "description": "scssphp is a compiler for SCSS written in PHP.", "homepage": "http://scssphp.github.io/scssphp/", - "keywords": [ "css", "less", "sass", "scss", "stylesheet" ], + "keywords": [ + "css", + "less", + "sass", + "scss", + "stylesheet" + ], "support": { "issues": "https://github.com/scssphp/scssphp/issues", "source": "https://github.com/scssphp/scssphp/tree/v1.12.0" @@ -2489,10 +3147,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "Apache-2.0" ], + "license": [ + "Apache-2.0" + ], "authors": [ { "name": "Ori Livneh", @@ -2501,7 +3163,10 @@ ], "description": "An implementation of the Aho-Corasick string matching algorithm.", "homepage": "https://gerrit.wikimedia.org/g/AhoCorasick", - "keywords": [ "ahocorasick", "matcher" ], + "keywords": [ + "ahocorasick", + "matcher" + ], "support": { "source": "https://github.com/wikimedia/AhoCorasick/tree/v1.0.1" }, @@ -2531,7 +3196,9 @@ }, "type": "library", "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Ignas Rudaitis", @@ -2572,7 +3239,9 @@ "wikimedia/testing-access-wrapper": "^1.0 || ^2.0 || ^3.0", "yoast/phpunit-polyfills": "^1.1.1" }, - "bin": [ "bin/changelogger" ], + "bin": [ + "bin/changelogger" + ], "type": "project", "extra": { "autotagger": true, @@ -2600,8 +3269,12 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], "post-install-cmd": [ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ], @@ -2609,9 +3282,16 @@ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.", - "keywords": [ "changelog", "cli", "dev", "keepachangelog" ], + "keywords": [ + "changelog", + "cli", + "dev", + "keepachangelog" + ], "transport-options": { "relative": true } @@ -2644,15 +3324,30 @@ "mirror-repo": "Automattic/patchwork-redefine-exit" }, "autoload": { - "classmap": [ "src" ] + "classmap": [ + "src" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Use antecedent/patchwork to redefine `exit` and `die` for more robust PHPUnit testing.", - "keywords": [ "die", "exit", "patchwork", "phpunit", "redefinition", "testing" ], + "keywords": [ + "die", + "exit", + "patchwork", + "phpunit", + "redefinition", + "testing" + ], "transport-options": { "relative": true } @@ -2691,7 +3386,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Marco Pivetta", @@ -2701,7 +3398,10 @@ ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ "constructor", "instantiate" ], + "keywords": [ + "constructor", + "instantiate" + ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", "source": "https://github.com/doctrine/instantiator/tree/2.0.0" @@ -2752,7 +3452,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "John Kary", @@ -2761,7 +3463,11 @@ ], "description": "Find and report on slow tests in your PHPUnit test suite", "homepage": "https://github.com/johnkary/phpunit-speedtrap", - "keywords": [ "phpunit", "profile", "slow" ], + "keywords": [ + "phpunit", + "profile", + "slow" + ], "support": { "issues": "https://github.com/johnkary/phpunit-speedtrap/issues", "source": "https://github.com/johnkary/phpunit-speedtrap/tree/v4.0.1" @@ -2797,15 +3503,25 @@ }, "type": "library", "autoload": { - "files": [ "src/DeepCopy/deep_copy.php" ], + "files": [ + "src/DeepCopy/deep_copy.php" + ], "psr-4": { "DeepCopy\\": "src/DeepCopy/" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "description": "Create deep copies (clones) of your objects", - "keywords": [ "clone", "copy", "duplicate", "object", "object graph" ], + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" @@ -2842,7 +3558,9 @@ "ircmaxell/php-yacc": "^0.0.7", "phpunit/phpunit": "^9.0" }, - "bin": [ "bin/php-parse" ], + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { @@ -2855,14 +3573,19 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Nikita Popov" } ], "description": "A PHP parser written in PHP", - "keywords": [ "parser", "php" ], + "keywords": [ + "parser", + "php" + ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" @@ -2898,10 +3621,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -2951,10 +3678,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -3022,10 +3753,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3035,7 +3770,11 @@ ], "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ "coverage", "testing", "xunit" ], + "keywords": [ + "coverage", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", @@ -3076,10 +3815,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3089,7 +3832,10 @@ ], "description": "FilterIterator implementation that filters files based on a list of suffixes.", "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ "filesystem", "iterator" ], + "keywords": [ + "filesystem", + "iterator" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" @@ -3133,10 +3879,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3146,7 +3896,9 @@ ], "description": "Invoke callables with a timeout", "homepage": "https://github.com/sebastianbergmann/php-invoker/", - "keywords": [ "process" ], + "keywords": [ + "process" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" @@ -3186,10 +3938,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3199,7 +3955,9 @@ ], "description": "Simple template engine.", "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ "template" ], + "keywords": [ + "template" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" @@ -3239,10 +3997,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3252,7 +4014,9 @@ ], "description": "Utility class for timing", "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ "timer" ], + "keywords": [ + "timer" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" @@ -3312,7 +4076,9 @@ "ext-soap": "To be able to generate mocks based on WSDL files", "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, - "bin": [ "phpunit" ], + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { @@ -3320,11 +4086,17 @@ } }, "autoload": { - "files": [ "src/Framework/Assert/Functions.php" ], - "classmap": [ "src/" ] + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3334,7 +4106,11 @@ ], "description": "The PHP Unit Testing framework.", "homepage": "https://phpunit.de/", - "keywords": [ "phpunit", "testing", "xunit" ], + "keywords": [ + "phpunit", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", @@ -3385,7 +4161,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "PHP-FIG", @@ -3394,7 +4172,13 @@ ], "description": "Common Container Interface (PHP FIG PSR-11)", "homepage": "https://github.com/php-fig/container", - "keywords": [ "PSR-11", "container", "container-interface", "container-interop", "psr" ], + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], "support": { "issues": "https://github.com/php-fig/container/issues", "source": "https://github.com/php-fig/container/tree/2.0.2" @@ -3428,10 +4212,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3480,10 +4268,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3532,10 +4324,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3585,10 +4381,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3609,7 +4409,11 @@ ], "description": "Provides the functionality to compare PHP values for equality", "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ "comparator", "compare", "equality" ], + "keywords": [ + "comparator", + "compare", + "equality" + ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" @@ -3650,10 +4454,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3703,10 +4511,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3719,7 +4531,12 @@ ], "description": "Diff implementation", "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ "diff", "udiff", "unidiff", "unified diff" ], + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" @@ -3762,10 +4579,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3774,7 +4595,11 @@ ], "description": "Provides functionality to handle HHVM/PHP environments", "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ "Xdebug", "environment", "hhvm" ], + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" @@ -3816,10 +4641,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3844,7 +4673,10 @@ ], "description": "Provides the functionality to export PHP variables for visualization", "homepage": "https://www.github.com/sebastianbergmann/exporter", - "keywords": [ "export", "exporter" ], + "keywords": [ + "export", + "exporter" + ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" @@ -3890,10 +4722,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3902,7 +4738,9 @@ ], "description": "Snapshotting of global state", "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ "global state" ], + "keywords": [ + "global state" + ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" @@ -3943,10 +4781,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3997,10 +4839,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4048,10 +4894,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4099,10 +4949,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4158,10 +5012,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4208,10 +5066,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4257,10 +5119,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -4330,10 +5196,14 @@ "psr-4": { "Symfony\\Component\\Console\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -4346,7 +5216,12 @@ ], "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", - "keywords": [ "cli", "command-line", "console", "terminal" ], + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], "support": { "source": "https://github.com/symfony/console/tree/v7.1.3" }, @@ -4394,10 +5269,14 @@ } }, "autoload": { - "files": [ "function.php" ] + "files": [ + "function.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4460,13 +5339,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Gert de Pagter", @@ -4479,7 +5362,12 @@ ], "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "ctype", "polyfill", "portable" ], + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], "support": { "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" }, @@ -4527,13 +5415,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Grapheme\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4546,7 +5438,14 @@ ], "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "grapheme", "intl", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, @@ -4594,14 +5493,20 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, - "classmap": [ "Resources/stubs" ] + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4614,7 +5519,14 @@ ], "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "intl", "normalizer", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, @@ -4665,13 +5577,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4684,7 +5600,13 @@ ], "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "mbstring", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, @@ -4726,10 +5648,14 @@ "psr-4": { "Symfony\\Component\\Process\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -4797,10 +5723,14 @@ "psr-4": { "Symfony\\Contracts\\Service\\": "" }, - "exclude-from-classmap": [ "/Test/" ] + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4874,14 +5804,20 @@ }, "type": "library", "autoload": { - "files": [ "Resources/functions.php" ], + "files": [ + "Resources/functions.php" + ], "psr-4": { "Symfony\\Component\\String\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4894,7 +5830,14 @@ ], "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", - "keywords": [ "grapheme", "i18n", "string", "unicode", "utf-8", "utf8" ], + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], "support": { "source": "https://github.com/symfony/string/tree/v7.1.3" }, @@ -4936,10 +5879,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -4990,10 +5937,14 @@ } }, "autoload": { - "files": [ "phpunitpolyfills-autoload.php" ] + "files": [ + "phpunitpolyfills-autoload.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Team Yoast", @@ -5007,7 +5958,11 @@ ], "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests", "homepage": "https://github.com/Yoast/PHPUnit-Polyfills", - "keywords": [ "phpunit", "polyfill", "testing" ], + "keywords": [ + "phpunit", + "polyfill", + "testing" + ], "support": { "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues", "security": "https://github.com/Yoast/PHPUnit-Polyfills/security/policy", diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index ae7f63b6089c3..59185762b5e5b 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1740,7 +1740,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1773,7 +1773,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 1ae32bc17eb2d..1a168b3b91374 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_9" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_10_alpha" } } diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index 4fda061bf0968..5ff30b46a69e4 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index eb7b62e47d0a4..515e90047424d 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.5.9 + * Version: 2.5.10-alpha * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index 14c2171ae8790..fccab561de0ab 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.5.9", + "version": "2.5.10-alpha", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 6a77761636be6..f214097139baa 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1653,7 +1653,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1686,7 +1686,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 8ec5a2793351c..197375b584b5d 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1745,7 +1745,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1778,7 +1778,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 35c979e55e706..3f94e42ad5aa8 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -36,13 +36,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", "transport-options": { "relative": true @@ -84,15 +92,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Generic Jetpack wp-admin UI elements", "transport-options": { "relative": true @@ -132,17 +152,33 @@ } }, "autoload": { - "files": [ "actions.php" ], - "classmap": [ "src/" ] + "files": [ + "actions.php" + ], + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "pnpm run build" ], - "build-production": [ "pnpm run build-production" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-js": [ "pnpm run test" ], - "test-php": [ "@composer phpunit" ] + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "pnpm run build-production" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-js": [ + "pnpm run test" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Asset management utilities for Jetpack ecosystem packages", "transport-options": { "relative": true @@ -181,18 +217,33 @@ } }, "autoload": { - "classmap": [ "src/AutoloadGenerator.php" ], + "classmap": [ + "src/AutoloadGenerator.php" + ], "psr-4": { "Automattic\\Jetpack\\Autoloader\\": "src" } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Creates a custom autoloader for a plugin or theme.", - "keywords": [ "autoload", "autoloader", "composer", "jetpack", "plugin", "wordpress" ], + "keywords": [ + "autoload", + "autoloader", + "composer", + "jetpack", + "plugin", + "wordpress" + ], "transport-options": { "relative": true } @@ -230,17 +281,33 @@ "textdomain": "jetpack-boost-core" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Core functionality for boost and relevant packages to depend on", "transport-options": { "relative": true @@ -282,7 +349,9 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "autoload-dev": { "psr-4": { @@ -290,14 +359,28 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package that handles the API to generate the speed score.", "transport-options": { "relative": true @@ -334,15 +417,28 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A custom installer plugin for Composer to move Jetpack packages out of `vendor/` so WordPress's translation infrastructure will find their strings.", - "keywords": [ "composer", "i18n", "jetpack", "plugin" ], + "keywords": [ + "composer", + "i18n", + "jetpack", + "plugin" + ], "transport-options": { "relative": true } @@ -407,9 +503,13 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", "transport-options": { "relative": true @@ -459,21 +559,43 @@ "dev-trunk": "2.12.x-dev" }, "dependencies": { - "test-only": [ "packages/licensing", "packages/sync" ] + "test-only": [ + "packages/licensing", + "packages/sync" + ] } }, "autoload": { - "classmap": [ "legacy", "src/", "src/webhooks", "src/identity-crisis" ] + "classmap": [ + "legacy", + "src/", + "src/webhooks", + "src/identity-crisis" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to connect to the Jetpack infrastructure", "transport-options": { "relative": true @@ -510,13 +632,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A wrapper for defining constants in a more testable way.", "transport-options": { "relative": true @@ -552,13 +682,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A way to detect device types based on User-Agent header.", "transport-options": { "relative": true @@ -599,18 +737,38 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "echo 'Run `pnpm run test` when ready'" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "echo 'Run `pnpm run test` when ready'" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "A package for running A/B tests on the Experimentation Platform (ExPlat) in the plugin.", "transport-options": { "relative": true @@ -651,13 +809,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities for working with IP addresses.", "transport-options": { "relative": true @@ -705,16 +871,31 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-production": [ "pnpm run build-production" ], - "build-development": [ "pnpm run build" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ] + "build-production": [ + "pnpm run build-production" + ], + "build-development": [ + "pnpm run build" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Just in time messages for Jetpack", "transport-options": { "relative": true @@ -753,15 +934,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to manage Jetpack licenses client-side.", "transport-options": { "relative": true @@ -797,13 +990,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "A logo for Jetpack", "transport-options": { "relative": true @@ -859,24 +1060,52 @@ "::PACKAGE_VERSION": "src/class-initializer.php" }, "dependencies": { - "test-only": [ "packages/search", "packages/videopress" ] + "test-only": [ + "packages/search", + "packages/videopress" + ] } }, "autoload": { - "classmap": [ "src/", "src/products" ] + "classmap": [ + "src/", + "src/products" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "test-js": [ "pnpm run test" ], - "test-js-watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run test --watch" ], - "build-development": [ "pnpm run build" ], - "build-production": [ "NODE_ENV=production pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "test-js": [ + "pnpm run test" + ], + "test-js-watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run test --watch" + ], + "build-development": [ + "pnpm run build" + ], + "build-production": [ + "NODE_ENV=production pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "transport-options": { "relative": true @@ -914,15 +1143,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Password Checker.", "transport-options": { "relative": true @@ -961,17 +1202,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "build-development": [ "echo 'Add your build step to composer.json, please!'" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Fetch information about Jetpack Plans from wpcom", "transport-options": { "relative": true @@ -1010,13 +1267,21 @@ "textdomain": "jetpack-plugins-installer" }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Handle installation of plugins from WP.org", "transport-options": { "relative": true @@ -1058,15 +1323,27 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Enhance the classic view of the Admin section of your WordPress site", "transport-options": { "relative": true @@ -1107,17 +1384,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the models used in Protect. ", "transport-options": { "relative": true @@ -1163,17 +1456,33 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "build-development": [ "echo 'Add your build step to composer.json, please!'" ], - "build-production": [ "echo 'Add your build step to composer.json, please!'" ], - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "test-php": [ "@composer phpunit" ] - }, - "license": [ "GPL-2.0-or-later" ], + "build-development": [ + "echo 'Add your build step to composer.json, please!'" + ], + "build-production": [ + "echo 'Add your build step to composer.json, please!'" + ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "test-php": [ + "@composer phpunit" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", "transport-options": { "relative": true @@ -1185,7 +1494,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "08bd760282b381fe50f101aacad15739aaf038d0" + "reference": "93f91b772b729b972943a3fa45b01b9c95ea5543" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1213,23 +1522,45 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.50.x-dev" + "dev-trunk": "0.51.x-dev" } }, "autoload": { - "classmap": [ "src/" ], - "files": [ "actions.php", "src/social-image-generator/utilities.php" ] + "classmap": [ + "src/" + ], + "files": [ + "actions.php", + "src/social-image-generator/utilities.php" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "build-development": [ "pnpm run build" ], - "watch": [ "Composer\\Config::disableProcessTimeout", "pnpm run watch" ], - "build-production": [ "pnpm run build-production-concurrently" ] - }, - "license": [ "GPL-2.0-or-later" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "build-development": [ + "pnpm run build" + ], + "watch": [ + "Composer\\Config::disableProcessTimeout", + "pnpm run watch" + ], + "build-production": [ + "pnpm run build-production-concurrently" + ] + }, + "license": [ + "GPL-2.0-or-later" + ], "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "transport-options": { "relative": true @@ -1267,13 +1598,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", "transport-options": { "relative": true @@ -1310,13 +1649,21 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Utilities, related with user roles and capabilities.", "transport-options": { "relative": true @@ -1356,17 +1703,28 @@ "dev-trunk": "3.3.x-dev" }, "dependencies": { - "test-only": [ "packages/connection", "packages/plans" ] + "test-only": [ + "packages/connection", + "packages/plans" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", "transport-options": { "relative": true @@ -1378,7 +1736,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1411,22 +1769,37 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { - "test-only": [ "packages/search", "packages/waf" ] + "test-only": [ + "packages/search", + "packages/waf" + ] } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], - "post-install-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ], - "post-update-cmd": [ "WorDBless\\Composer\\InstallDropin::copy" ] + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], + "post-install-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ], + "post-update-cmd": [ + "WorDBless\\Composer\\InstallDropin::copy" + ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", "transport-options": { "relative": true @@ -1456,7 +1829,9 @@ }, "type": "library", "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Ignas Rudaitis", @@ -1497,7 +1872,9 @@ "wikimedia/testing-access-wrapper": "^1.0 || ^2.0 || ^3.0", "yoast/phpunit-polyfills": "^1.1.1" }, - "bin": [ "bin/changelogger" ], + "bin": [ + "bin/changelogger" + ], "type": "project", "extra": { "autotagger": true, @@ -1525,8 +1902,12 @@ } }, "scripts": { - "phpunit": [ "./vendor/phpunit/phpunit/phpunit --colors=always" ], - "test-php": [ "@composer phpunit" ], + "phpunit": [ + "./vendor/phpunit/phpunit/phpunit --colors=always" + ], + "test-php": [ + "@composer phpunit" + ], "post-install-cmd": [ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ], @@ -1534,9 +1915,16 @@ "[ -e vendor/bin/changelogger ] || { cd vendor/bin && ln -s ../../bin/changelogger; }" ] }, - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "description": "Jetpack Changelogger tool. Allows for managing changelogs by dropping change files into a changelog directory with each PR.", - "keywords": [ "changelog", "cli", "dev", "keepachangelog" ], + "keywords": [ + "changelog", + "cli", + "dev", + "keepachangelog" + ], "transport-options": { "relative": true } @@ -1571,7 +1959,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "authors": [ { "name": "Automattic Inc." @@ -1616,13 +2006,17 @@ } }, "autoload": { - "files": [ "inc/api.php" ], + "files": [ + "inc/api.php" + ], "psr-4": { "Brain\\Monkey\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Giuseppe Mazzapica", @@ -1684,7 +2078,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Marco Pivetta", @@ -1694,7 +2090,10 @@ ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", "homepage": "https://www.doctrine-project.org/projects/instantiator.html", - "keywords": [ "constructor", "instantiate" ], + "keywords": [ + "constructor", + "instantiate" + ], "support": { "issues": "https://github.com/doctrine/instantiator/issues", "source": "https://github.com/doctrine/instantiator/tree/2.0.0" @@ -1748,12 +2147,18 @@ } }, "autoload": { - "classmap": [ "hamcrest" ] + "classmap": [ + "hamcrest" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "description": "This is the PHP port of Hamcrest Matchers", - "keywords": [ "test" ], + "keywords": [ + "test" + ], "support": { "issues": "https://github.com/hamcrest/hamcrest-php/issues", "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" @@ -1788,13 +2193,18 @@ }, "type": "library", "autoload": { - "files": [ "library/helpers.php", "library/Mockery.php" ], + "files": [ + "library/helpers.php", + "library/Mockery.php" + ], "psr-4": { "Mockery\\": "library/Mockery" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Pádraic Brady", @@ -1867,15 +2277,25 @@ }, "type": "library", "autoload": { - "files": [ "src/DeepCopy/deep_copy.php" ], + "files": [ + "src/DeepCopy/deep_copy.php" + ], "psr-4": { "DeepCopy\\": "src/DeepCopy/" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "description": "Create deep copies (clones) of your objects", - "keywords": [ "clone", "copy", "duplicate", "object", "object graph" ], + "keywords": [ + "clone", + "copy", + "duplicate", + "object", + "object graph" + ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0" @@ -1912,7 +2332,9 @@ "ircmaxell/php-yacc": "^0.0.7", "phpunit/phpunit": "^9.0" }, - "bin": [ "bin/php-parse" ], + "bin": [ + "bin/php-parse" + ], "type": "library", "extra": { "branch-alias": { @@ -1925,14 +2347,19 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Nikita Popov" } ], "description": "A PHP parser written in PHP", - "keywords": [ "parser", "php" ], + "keywords": [ + "parser", + "php" + ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0" @@ -1968,10 +2395,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -2021,10 +2452,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -2092,10 +2527,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2105,7 +2544,11 @@ ], "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", "homepage": "https://github.com/sebastianbergmann/php-code-coverage", - "keywords": [ "coverage", "testing", "xunit" ], + "keywords": [ + "coverage", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy", @@ -2146,10 +2589,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2159,7 +2606,10 @@ ], "description": "FilterIterator implementation that filters files based on a list of suffixes.", "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", - "keywords": [ "filesystem", "iterator" ], + "keywords": [ + "filesystem", + "iterator" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6" @@ -2203,10 +2653,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2216,7 +2670,9 @@ ], "description": "Invoke callables with a timeout", "homepage": "https://github.com/sebastianbergmann/php-invoker/", - "keywords": [ "process" ], + "keywords": [ + "process" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-invoker/issues", "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1" @@ -2256,10 +2712,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2269,7 +2729,9 @@ ], "description": "Simple template engine.", "homepage": "https://github.com/sebastianbergmann/php-text-template/", - "keywords": [ "template" ], + "keywords": [ + "template" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-text-template/issues", "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4" @@ -2309,10 +2771,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2322,7 +2788,9 @@ ], "description": "Utility class for timing", "homepage": "https://github.com/sebastianbergmann/php-timer/", - "keywords": [ "timer" ], + "keywords": [ + "timer" + ], "support": { "issues": "https://github.com/sebastianbergmann/php-timer/issues", "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3" @@ -2382,7 +2850,9 @@ "ext-soap": "To be able to generate mocks based on WSDL files", "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage" }, - "bin": [ "phpunit" ], + "bin": [ + "phpunit" + ], "type": "library", "extra": { "branch-alias": { @@ -2390,11 +2860,17 @@ } }, "autoload": { - "files": [ "src/Framework/Assert/Functions.php" ], - "classmap": [ "src/" ] + "files": [ + "src/Framework/Assert/Functions.php" + ], + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2404,7 +2880,11 @@ ], "description": "The PHP Unit Testing framework.", "homepage": "https://phpunit.de/", - "keywords": [ "phpunit", "testing", "xunit" ], + "keywords": [ + "phpunit", + "testing", + "xunit" + ], "support": { "issues": "https://github.com/sebastianbergmann/phpunit/issues", "security": "https://github.com/sebastianbergmann/phpunit/security/policy", @@ -2455,7 +2935,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "PHP-FIG", @@ -2464,7 +2946,13 @@ ], "description": "Common Container Interface (PHP FIG PSR-11)", "homepage": "https://github.com/php-fig/container", - "keywords": [ "PSR-11", "container", "container-interface", "container-interop", "psr" ], + "keywords": [ + "PSR-11", + "container", + "container-interface", + "container-interop", + "psr" + ], "support": { "issues": "https://github.com/php-fig/container/issues", "source": "https://github.com/php-fig/container/tree/2.0.2" @@ -2491,10 +2979,17 @@ }, "type": "metapackage", "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT", "GPL-2.0-or-later" ], + "license": [ + "MIT", + "GPL-2.0-or-later" + ], "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", "homepage": "https://wordpress.org/", - "keywords": [ "blog", "cms", "wordpress" ], + "keywords": [ + "blog", + "cms", + "wordpress" + ], "support": { "issues": "https://github.com/roots/wordpress/issues", "source": "https://github.com/roots/wordpress/tree/6.6.1" @@ -2545,7 +3040,9 @@ } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "authors": [ { "name": "John P. Bloch", @@ -2557,7 +3054,9 @@ } ], "description": "A custom installer to handle deploying WordPress with composer", - "keywords": [ "wordpress" ], + "keywords": [ + "wordpress" + ], "support": { "issues": "https://github.com/roots/wordpress-core-installer/issues", "source": "https://github.com/roots/wordpress-core-installer/tree/master" @@ -2611,7 +3110,9 @@ }, "type": "wordpress-core", "notification-url": "https://packagist.org/downloads/", - "license": [ "GPL-2.0-or-later" ], + "license": [ + "GPL-2.0-or-later" + ], "authors": [ { "name": "WordPress Community", @@ -2620,7 +3121,11 @@ ], "description": "WordPress is open source software you can use to create a beautiful website, blog, or app.", "homepage": "https://wordpress.org/", - "keywords": [ "blog", "cms", "wordpress" ], + "keywords": [ + "blog", + "cms", + "wordpress" + ], "support": { "docs": "https://developer.wordpress.org/", "forum": "https://wordpress.org/support/", @@ -2665,10 +3170,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2717,10 +3226,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2769,10 +3282,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2822,10 +3339,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2846,7 +3367,11 @@ ], "description": "Provides the functionality to compare PHP values for equality", "homepage": "https://github.com/sebastianbergmann/comparator", - "keywords": [ "comparator", "compare", "equality" ], + "keywords": [ + "comparator", + "compare", + "equality" + ], "support": { "issues": "https://github.com/sebastianbergmann/comparator/issues", "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8" @@ -2887,10 +3412,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2940,10 +3469,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -2956,7 +3489,12 @@ ], "description": "Diff implementation", "homepage": "https://github.com/sebastianbergmann/diff", - "keywords": [ "diff", "udiff", "unidiff", "unified diff" ], + "keywords": [ + "diff", + "udiff", + "unidiff", + "unified diff" + ], "support": { "issues": "https://github.com/sebastianbergmann/diff/issues", "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6" @@ -2999,10 +3537,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3011,7 +3553,11 @@ ], "description": "Provides functionality to handle HHVM/PHP environments", "homepage": "http://www.github.com/sebastianbergmann/environment", - "keywords": [ "Xdebug", "environment", "hhvm" ], + "keywords": [ + "Xdebug", + "environment", + "hhvm" + ], "support": { "issues": "https://github.com/sebastianbergmann/environment/issues", "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5" @@ -3053,10 +3599,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3081,7 +3631,10 @@ ], "description": "Provides the functionality to export PHP variables for visualization", "homepage": "https://www.github.com/sebastianbergmann/exporter", - "keywords": [ "export", "exporter" ], + "keywords": [ + "export", + "exporter" + ], "support": { "issues": "https://github.com/sebastianbergmann/exporter/issues", "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6" @@ -3127,10 +3680,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3139,7 +3696,9 @@ ], "description": "Snapshotting of global state", "homepage": "http://www.github.com/sebastianbergmann/global-state", - "keywords": [ "global state" ], + "keywords": [ + "global state" + ], "support": { "issues": "https://github.com/sebastianbergmann/global-state/issues", "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7" @@ -3180,10 +3739,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3234,10 +3797,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3285,10 +3852,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3336,10 +3907,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3395,10 +3970,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3445,10 +4024,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3494,10 +4077,14 @@ } }, "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Sebastian Bergmann", @@ -3567,10 +4154,14 @@ "psr-4": { "Symfony\\Component\\Console\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -3583,7 +4174,12 @@ ], "description": "Eases the creation of beautiful and testable command line interfaces", "homepage": "https://symfony.com", - "keywords": [ "cli", "command-line", "console", "terminal" ], + "keywords": [ + "cli", + "command-line", + "console", + "terminal" + ], "support": { "source": "https://github.com/symfony/console/tree/v7.1.3" }, @@ -3631,10 +4227,14 @@ } }, "autoload": { - "files": [ "function.php" ] + "files": [ + "function.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3697,13 +4297,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Ctype\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Gert de Pagter", @@ -3716,7 +4320,12 @@ ], "description": "Symfony polyfill for ctype functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "ctype", "polyfill", "portable" ], + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], "support": { "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0" }, @@ -3764,13 +4373,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Grapheme\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3783,7 +4396,14 @@ ], "description": "Symfony polyfill for intl's grapheme_* functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "grapheme", "intl", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "grapheme", + "intl", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0" }, @@ -3831,14 +4451,20 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Intl\\Normalizer\\": "" }, - "classmap": [ "Resources/stubs" ] + "classmap": [ + "Resources/stubs" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3851,7 +4477,14 @@ ], "description": "Symfony polyfill for intl's Normalizer class and related functions", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "intl", "normalizer", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0" }, @@ -3902,13 +4535,17 @@ } }, "autoload": { - "files": [ "bootstrap.php" ], + "files": [ + "bootstrap.php" + ], "psr-4": { "Symfony\\Polyfill\\Mbstring\\": "" } }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -3921,7 +4558,13 @@ ], "description": "Symfony polyfill for the Mbstring extension", "homepage": "https://symfony.com", - "keywords": [ "compatibility", "mbstring", "polyfill", "portable", "shim" ], + "keywords": [ + "compatibility", + "mbstring", + "polyfill", + "portable", + "shim" + ], "support": { "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0" }, @@ -3963,10 +4606,14 @@ "psr-4": { "Symfony\\Component\\Process\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Fabien Potencier", @@ -4034,10 +4681,14 @@ "psr-4": { "Symfony\\Contracts\\Service\\": "" }, - "exclude-from-classmap": [ "/Test/" ] + "exclude-from-classmap": [ + "/Test/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4111,14 +4762,20 @@ }, "type": "library", "autoload": { - "files": [ "Resources/functions.php" ], + "files": [ + "Resources/functions.php" + ], "psr-4": { "Symfony\\Component\\String\\": "" }, - "exclude-from-classmap": [ "/Tests/" ] + "exclude-from-classmap": [ + "/Tests/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "MIT" ], + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -4131,7 +4788,14 @@ ], "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way", "homepage": "https://symfony.com", - "keywords": [ "grapheme", "i18n", "string", "unicode", "utf-8", "utf8" ], + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], "support": { "source": "https://github.com/symfony/string/tree/v7.1.3" }, @@ -4173,10 +4837,14 @@ }, "type": "library", "autoload": { - "classmap": [ "src/" ] + "classmap": [ + "src/" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Arne Blankerts", @@ -4227,10 +4895,14 @@ } }, "autoload": { - "files": [ "phpunitpolyfills-autoload.php" ] + "files": [ + "phpunitpolyfills-autoload.php" + ] }, "notification-url": "https://packagist.org/downloads/", - "license": [ "BSD-3-Clause" ], + "license": [ + "BSD-3-Clause" + ], "authors": [ { "name": "Team Yoast", @@ -4244,7 +4916,11 @@ ], "description": "Set of polyfills for changed PHPUnit functionality to allow for creating PHPUnit cross-version compatible tests", "homepage": "https://github.com/Yoast/PHPUnit-Polyfills", - "keywords": [ "phpunit", "polyfill", "testing" ], + "keywords": [ + "phpunit", + "polyfill", + "testing" + ], "support": { "issues": "https://github.com/Yoast/PHPUnit-Polyfills/issues", "security": "https://github.com/Yoast/PHPUnit-Polyfills/security/policy", diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index 2a6f424b41ac5..a5588bc794e5f 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1596,7 +1596,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1629,7 +1629,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index e567661e52354..db2ff593cb6d5 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1596,7 +1596,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1629,7 +1629,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 6f4dac134ddce..15210a24b22de 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -127,7 +127,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_1" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_2_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 4f73c46e7ac83..1556651edcbb5 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" + "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.8.x-dev" + "dev-trunk": "3.9.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 2c1ed7594222a..c0d138ed2007c 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.6.1", + "version": "5.6.2-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index fce7f8c0d00aa..ccf59ca11c1fa 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.6.1 + * Version: 5.6.2-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.6.1' ); +define( 'WPCOMSH_VERSION', '5.6.2-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From d69fb8f313cbd52171df5721702ccfde62b89c66 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Wed, 28 Aug 2024 15:01:55 +0530 Subject: [PATCH 17/19] Fix up versions --- projects/packages/publicize/composer.json | 2 +- projects/packages/publicize/package.json | 2 +- projects/packages/sync/composer.json | 2 +- projects/packages/sync/src/class-package-version.php | 2 +- .../plugins/automattic-for-agencies-client/composer.lock | 4 ++-- projects/plugins/backup/composer.lock | 4 ++-- projects/plugins/boost/composer.lock | 4 ++-- projects/plugins/jetpack/composer.lock | 8 ++++---- projects/plugins/migration/composer.lock | 4 ++-- projects/plugins/mu-wpcom-plugin/composer.json | 2 +- projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php | 2 +- projects/plugins/mu-wpcom-plugin/package.json | 2 +- projects/plugins/protect/composer.lock | 4 ++-- projects/plugins/search/composer.lock | 4 ++-- projects/plugins/social/composer.lock | 8 ++++---- projects/plugins/starter-plugin/composer.lock | 4 ++-- projects/plugins/videopress/composer.lock | 4 ++-- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/composer.lock | 4 ++-- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 22 files changed, 39 insertions(+), 39 deletions(-) diff --git a/projects/packages/publicize/composer.json b/projects/packages/publicize/composer.json index 5d2161b7ec4fa..326578c1a8e53 100644 --- a/projects/packages/publicize/composer.json +++ b/projects/packages/publicize/composer.json @@ -68,7 +68,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.51.x-dev" + "dev-trunk": "0.50.x-dev" } }, "config": { diff --git a/projects/packages/publicize/package.json b/projects/packages/publicize/package.json index 66b03f3a02d0b..b417481070cd8 100644 --- a/projects/packages/publicize/package.json +++ b/projects/packages/publicize/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize", - "version": "0.51.0-alpha", + "version": "0.50.0", "description": "Publicize makes it easy to share your site’s posts on several social media networks automatically when you publish a new post.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/publicize/#readme", "bugs": { diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index f6a9b40d4e769..db452a140e4eb 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 14511bcd4a741..138e0ac07bd3c 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.9.0-alpha'; + const PACKAGE_VERSION = '3.8.0'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index eee593bf6e58b..e643e0af0047b 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index fe4b145eed785..59b136c6f7ff4 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1740,7 +1740,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1773,7 +1773,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 09e72dadd536b..21a446b3cad8c 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1791,7 +1791,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1824,7 +1824,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index dfdc342a5c188..6537628420f92 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2222,7 +2222,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "93f91b772b729b972943a3fa45b01b9c95ea5543" + "reference": "a93a6a56a70e7f1aa7fc965efaecd0000804f0f4" }, "require": { "automattic/jetpack-assets": "@dev", @@ -2250,7 +2250,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.51.x-dev" + "dev-trunk": "0.50.x-dev" } }, "autoload": { @@ -2683,7 +2683,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2716,7 +2716,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index 59185762b5e5b..ae7f63b6089c3 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1740,7 +1740,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1773,7 +1773,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/composer.json b/projects/plugins/mu-wpcom-plugin/composer.json index 1a168b3b91374..1ae32bc17eb2d 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.json +++ b/projects/plugins/mu-wpcom-plugin/composer.json @@ -46,6 +46,6 @@ ] }, "config": { - "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_10_alpha" + "autoloader-suffix": "d9d132a783958a00a2c7cccff60ca42d_jetpack_mu_wpcom_pluginⓥ2_5_9" } } diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index 5ff30b46a69e4..4fda061bf0968 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php index 515e90047424d..eb7b62e47d0a4 100644 --- a/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php +++ b/projects/plugins/mu-wpcom-plugin/mu-wpcom-plugin.php @@ -3,7 +3,7 @@ * * Plugin Name: WordPress.com Features * Description: Test plugin for the jetpack-mu-wpcom package - * Version: 2.5.10-alpha + * Version: 2.5.9 * Author: Automattic * License: GPLv2 or later * Text Domain: jetpack-mu-wpcom-plugin diff --git a/projects/plugins/mu-wpcom-plugin/package.json b/projects/plugins/mu-wpcom-plugin/package.json index fccab561de0ab..14c2171ae8790 100644 --- a/projects/plugins/mu-wpcom-plugin/package.json +++ b/projects/plugins/mu-wpcom-plugin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-mu-wpcom-plugin", - "version": "2.5.10-alpha", + "version": "2.5.9", "description": "Test plugin for the jetpack-mu-wpcom package", "homepage": "https://jetpack.com", "bugs": { diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index f214097139baa..6a77761636be6 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1653,7 +1653,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1686,7 +1686,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index 197375b584b5d..8ec5a2793351c 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1745,7 +1745,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1778,7 +1778,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index 3f94e42ad5aa8..fd98335a3ede6 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1494,7 +1494,7 @@ "dist": { "type": "path", "url": "../../packages/publicize", - "reference": "93f91b772b729b972943a3fa45b01b9c95ea5543" + "reference": "a93a6a56a70e7f1aa7fc965efaecd0000804f0f4" }, "require": { "automattic/jetpack-assets": "@dev", @@ -1522,7 +1522,7 @@ "link-template": "https://github.com/Automattic/jetpack-publicize/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.51.x-dev" + "dev-trunk": "0.50.x-dev" } }, "autoload": { @@ -1736,7 +1736,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1769,7 +1769,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index a5588bc794e5f..2a6f424b41ac5 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1596,7 +1596,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1629,7 +1629,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index db2ff593cb6d5..e567661e52354 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1596,7 +1596,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1629,7 +1629,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 02f55c703f5c4..de066e3acb152 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -127,7 +127,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_2_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_6_1" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index ad11e4af728dc..ff2324e4856cf 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "526ab81e23c778c2c3462149febe2f7a9fd0df50" + "reference": "64ed9303f16e3377d99091c67842f3c4b07b71eb" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.9.x-dev" + "dev-trunk": "3.8.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index c0d138ed2007c..2c1ed7594222a 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.6.2-alpha", + "version": "5.6.1", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index ccf59ca11c1fa..fce7f8c0d00aa 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.6.2-alpha + * Version: 5.6.1 * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.6.2-alpha' ); +define( 'WPCOMSH_VERSION', '5.6.1' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From daa8d54e37eb13446d25ff284906bfb3cb2913f0 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Thu, 29 Aug 2024 14:26:07 +0530 Subject: [PATCH 18/19] Remove unnecessary changelogs --- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- 9 files changed, 45 deletions(-) delete mode 100644 projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic delete mode 100644 projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic diff --git a/projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/automattic-for-agencies-client/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/backup/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/boost/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/migration/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/mu-wpcom-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/protect/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/starter-plugin/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/videopress/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/wpcomsh/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - From b5046e41105384cd52e23ec3cec5d20755dd25d7 Mon Sep 17 00:00:00 2001 From: Manzoor Wani Date: Thu, 29 Aug 2024 14:28:30 +0530 Subject: [PATCH 19/19] Delete unnecessary changelog --- ...pdate-social-clean-up-media-auto-conversion-backend-logic | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic diff --git a/projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic b/projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/search/changelog/update-social-clean-up-media-auto-conversion-backend-logic +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - -