diff --git a/CHANGELOG.md b/CHANGELOG.md index 87458129c..2f249f036 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,22 +4,51 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -## 1.6-alpha - unreleased +## 1.6-beta - 2023-10-17 +### Added -This is an alpha version! The changes listed here are not final. +- Added Divi Builder Compatibility. +- Added play button when the video block Show controls and Preview On Hover are enabled. +- Pick video block attributes from URL when pasting/inserting. +- Integrated video poster with Preview On Hover effect. -### Added -- Updated composer.lock -- VideoPress: Added Stats module as a requirement for the plugin and enabled it on plugin activation. ### Changed -- Bump WordPress tested version -- General: indicate full compatibility with the latest version of WordPress, 6.3. -- General: update WordPress version requirements to WordPress 6.2. -- Remove conditional rendering from zendesk chat widget component due to it being handled by an api endpoint now -- Updated package dependencies. -- Update WordPress version requirements. Now requires version 6.1. -- VideoPress: Do not force-enable the Stats module inside the VideoPress plugin. +- Indicate full compatibility with WordPress 6.3 +- Updated WordPress version requirement to WordPress 6.2 +- Made the Jetpack menu item default to point to My Jetpack. +- Hide core Video and embed VideOpress variations, when video block is available. +- Improved the connection prompt when the Jetpack VideoPress module is not active. +- Changed max duration of the Preview On Hover effect to ten seconds. +- Support autoplay playback option when Preview On Hover is enabled. +- Render VideoPress video block 100% dynamically instead of saving html representation. +- Video block: Create VideoPress video block when pasting URLs. +- Video block: Stopped saving HTML markup representation. +- Video block: Added Privacy and Rating panel to native block's settings. +- Video block: Added replace functionality for the native version of the block. +- Video block: Handle uploading video files when dropping in the editor canvas. + +### Security + +- Escape VideoPress attributes poster, and anchor when rendering block. + +### Fixed + +- Added a Notice when trying to edit a video that doesn't belong to the site. +- Added error handling for track files upload process. +- Handle block registration in the REST API request context. +- Defer assets enqueuing for non block themes so they don't load on every page. +- Enqueue token bridge file in the front-end only when required. +- Ensure the appropriate scripts are enqueued to support private VideoPress videos rendered by the VideoPress Divi module. +- Set video player position according to "starting point" and "duration". +- Avoid conflicts with Better Click To Tweet plugin. +- Fixed compatibility with Timber theme. +- Fixed false values not working on shortcodes. +- Fixed issue with disabled Privacy and rating panel. +- Fixed JITM layout on video edit page. +- Fixed playing state of poster mini-player. +- Fixed playback of private videos on private sites. +- Video block: Fixed blocking state when stopping an upload. ## 1.5 - 2023-03-22 ### Added diff --git a/composer.json b/composer.json index 55f757c7c..139f4d663 100644 --- a/composer.json +++ b/composer.json @@ -9,11 +9,11 @@ "automattic/jetpack-composer-plugin": "^1.1.14", "automattic/jetpack-config": "^1.15.4", "automattic/jetpack-connection": "^1.58.1", - "automattic/jetpack-identity-crisis": "^0.11.0-alpha", - "automattic/jetpack-my-jetpack": "^3.9.0-alpha", - "automattic/jetpack-sync": "^1.58.0", + "automattic/jetpack-identity-crisis": "^0.11.0", + "automattic/jetpack-my-jetpack": "^3.9.0", + "automattic/jetpack-sync": "^1.58.1", "automattic/jetpack-plugins-installer": "^0.2.5", - "automattic/jetpack-videopress": "^0.17.6-alpha" + "automattic/jetpack-videopress": "^0.17.6" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", @@ -30,6 +30,7 @@ "post-install-cmd": "WorDBless\\Composer\\InstallDropin::copy", "post-update-cmd": "WorDBless\\Composer\\InstallDropin::copy" }, + "repositories": [], "minimum-stability": "dev", "prefer-stable": true, "extra": { @@ -50,6 +51,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta" } } diff --git a/jetpack-videopress.php b/jetpack-videopress.php index 4eda426ed..9aef87990 100644 --- a/jetpack-videopress.php +++ b/jetpack-videopress.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack VideoPress * Plugin URI: https://wordpress.org/plugins/jetpack-videopress * Description: High quality, ad-free video. - * Version: 1.6-alpha + * Version: 1.6-beta * Author: Automattic - Jetpack Video team * Author URI: https://jetpack.com/videopress/ * License: GPLv2 or later diff --git a/jetpack_vendor/automattic/jetpack-a8c-mc-stats/SECURITY.md b/jetpack_vendor/automattic/jetpack-a8c-mc-stats/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-a8c-mc-stats/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-a8c-mc-stats/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-a8c-mc-stats/composer.json b/jetpack_vendor/automattic/jetpack-a8c-mc-stats/composer.json index ede641760..8931f6340 100644 --- a/jetpack_vendor/automattic/jetpack-a8c-mc-stats/composer.json +++ b/jetpack_vendor/automattic/jetpack-a8c-mc-stats/composer.json @@ -6,7 +6,7 @@ "require": {}, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-admin-ui/SECURITY.md b/jetpack_vendor/automattic/jetpack-admin-ui/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-admin-ui/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-admin-ui/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-admin-ui/composer.json b/jetpack_vendor/automattic/jetpack-admin-ui/composer.json index ea74c6124..aaf83ff36 100644 --- a/jetpack_vendor/automattic/jetpack-admin-ui/composer.json +++ b/jetpack_vendor/automattic/jetpack-admin-ui/composer.json @@ -6,7 +6,7 @@ "require": {}, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "automattic/jetpack-logo": "^1.6.3", "automattic/wordbless": "dev-master" }, diff --git a/jetpack_vendor/automattic/jetpack-assets/SECURITY.md b/jetpack_vendor/automattic/jetpack-assets/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-assets/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-assets/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-config/SECURITY.md b/jetpack_vendor/automattic/jetpack-config/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-config/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-config/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-config/composer.json b/jetpack_vendor/automattic/jetpack-config/composer.json index a3852a2f9..5179574d1 100644 --- a/jetpack_vendor/automattic/jetpack-config/composer.json +++ b/jetpack_vendor/automattic/jetpack-config/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": {}, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-connection/SECURITY.md b/jetpack_vendor/automattic/jetpack-connection/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-connection/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-connection/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-constants/SECURITY.md b/jetpack_vendor/automattic/jetpack-constants/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-constants/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-constants/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-constants/composer.json b/jetpack_vendor/automattic/jetpack-constants/composer.json index d8da27167..1205619b8 100644 --- a/jetpack_vendor/automattic/jetpack-constants/composer.json +++ b/jetpack_vendor/automattic/jetpack-constants/composer.json @@ -7,7 +7,7 @@ "require-dev": { "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.8" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-device-detection/SECURITY.md b/jetpack_vendor/automattic/jetpack-device-detection/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-device-detection/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-device-detection/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-device-detection/composer.json b/jetpack_vendor/automattic/jetpack-device-detection/composer.json index 04d6ce0d4..b789130d4 100644 --- a/jetpack_vendor/automattic/jetpack-device-detection/composer.json +++ b/jetpack_vendor/automattic/jetpack-device-detection/composer.json @@ -6,7 +6,7 @@ "require": {}, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.8" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md index 54c3a48d7..8a1db1951 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md @@ -5,15 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.11.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.11.0] - 2023-10-17 ### Changed -- Updated package dependencies. +- Updated package dependencies. [#33646] ### Fixed -- Added search and replace protection for wpcom urls stored in the database. +- Added search and replace protection for wpcom urls stored in the database. [#33412] ## [0.10.7] - 2023-10-16 ### Changed @@ -431,7 +428,7 @@ This is an alpha version! The changes listed here are not final. - Updated package dependencies. - Use Connection/Urls for home_url and site_url functions migrated from Sync. -[0.11.0-alpha]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.7...v0.11.0-alpha +[0.11.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.7...v0.11.0 [0.10.7]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.6...v0.10.7 [0.10.6]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.5...v0.10.6 [0.10.5]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.10.4...v0.10.5 diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php b/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php index 124ec6995..84dac59e4 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php @@ -27,7 +27,7 @@ class Identity_Crisis { /** * Package Version */ - const PACKAGE_VERSION = '0.11.0-alpha'; + const PACKAGE_VERSION = '0.11.0'; /** * Instance of the object. diff --git a/jetpack_vendor/automattic/jetpack-ip/SECURITY.md b/jetpack_vendor/automattic/jetpack-ip/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-ip/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-ip/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-ip/composer.json b/jetpack_vendor/automattic/jetpack-ip/composer.json index 22077fbd2..810303118 100644 --- a/jetpack_vendor/automattic/jetpack-ip/composer.json +++ b/jetpack_vendor/automattic/jetpack-ip/composer.json @@ -7,7 +7,7 @@ "require-dev": { "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-jitm/SECURITY.md b/jetpack_vendor/automattic/jetpack-jitm/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-jitm/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-licensing/SECURITY.md b/jetpack_vendor/automattic/jetpack-licensing/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-licensing/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-licensing/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index 0d7dec158..6250b73b1 100644 --- a/jetpack_vendor/automattic/jetpack-licensing/composer.json +++ b/jetpack_vendor/automattic/jetpack-licensing/composer.json @@ -4,12 +4,12 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.58.1" + "automattic/jetpack-connection": "^1.57.5" }, "require-dev": { "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-logo/SECURITY.md b/jetpack_vendor/automattic/jetpack-logo/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-logo/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-logo/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-logo/composer.json b/jetpack_vendor/automattic/jetpack-logo/composer.json index 9fb8532cc..186a0d164 100644 --- a/jetpack_vendor/automattic/jetpack-logo/composer.json +++ b/jetpack_vendor/automattic/jetpack-logo/composer.json @@ -6,7 +6,7 @@ "require": {}, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index b96a700c0..95b8c8409 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md @@ -5,15 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [3.9.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [3.9.0] - 2023-10-17 ### Added -- Add has_required_plan method for VideoPress product class, check plan purchase exists for site +- Add has_required_plan method for VideoPress product class, check plan purchase exists for site [#33410] ### Changed -- Updated package dependencies. +- Updated package dependencies. [#33646] ## [3.8.2] - 2023-10-16 ### Changed @@ -1067,7 +1064,7 @@ This is an alpha version! The changes listed here are not final. ### Added - Created package -[3.9.0-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.2...3.9.0-alpha +[3.9.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.2...3.9.0 [3.8.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.1...3.8.2 [3.8.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.8.0...3.8.1 [3.8.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/3.7.0...3.8.0 diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index e22b42581..0db61ff10 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -17,7 +17,7 @@ "yoast/phpunit-polyfills": "1.1.0", "automattic/jetpack-changelogger": "^3.3.11", "automattic/wordbless": "@dev", - "automattic/jetpack-videopress": "^0.17.6-alpha" + "automattic/jetpack-videopress": "^0.17.6" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php index 3b9503291..eb942209d 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -32,7 +32,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '3.9.0-alpha'; + const PACKAGE_VERSION = '3.9.0'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/jetpack_vendor/automattic/jetpack-partner/SECURITY.md b/jetpack_vendor/automattic/jetpack-partner/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-partner/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-partner/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-partner/composer.json b/jetpack_vendor/automattic/jetpack-partner/composer.json index 83c696b7b..d10f48377 100644 --- a/jetpack_vendor/automattic/jetpack-partner/composer.json +++ b/jetpack_vendor/automattic/jetpack-partner/composer.json @@ -4,13 +4,13 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.58.1", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-connection": "^1.57.5", + "automattic/jetpack-status": "^1.18.4" }, "require-dev": { "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "automattic/wordbless": "@dev" }, "suggest": { diff --git a/jetpack_vendor/automattic/jetpack-password-checker/SECURITY.md b/jetpack_vendor/automattic/jetpack-password-checker/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-password-checker/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-password-checker/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-password-checker/composer.json b/jetpack_vendor/automattic/jetpack-password-checker/composer.json index ba0b241a9..45483b4bc 100644 --- a/jetpack_vendor/automattic/jetpack-password-checker/composer.json +++ b/jetpack_vendor/automattic/jetpack-password-checker/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": {}, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.8", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, diff --git a/jetpack_vendor/automattic/jetpack-plugins-installer/SECURITY.md b/jetpack_vendor/automattic/jetpack-plugins-installer/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-plugins-installer/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-plugins-installer/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json b/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json index 3dc8c7d59..fb1a5a52f 100644 --- a/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json +++ b/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json @@ -4,11 +4,11 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-a8c-mc-stats": "^1.4.22" + "automattic/jetpack-a8c-mc-stats": "^1.4.21" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.8" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-redirect/SECURITY.md b/jetpack_vendor/automattic/jetpack-redirect/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-redirect/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-redirect/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-redirect/composer.json b/jetpack_vendor/automattic/jetpack-redirect/composer.json index 77d9bdb60..429ff92ef 100644 --- a/jetpack_vendor/automattic/jetpack-redirect/composer.json +++ b/jetpack_vendor/automattic/jetpack-redirect/composer.json @@ -4,12 +4,12 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.18.4" }, "require-dev": { "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-roles/SECURITY.md b/jetpack_vendor/automattic/jetpack-roles/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-roles/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-roles/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-roles/composer.json b/jetpack_vendor/automattic/jetpack-roles/composer.json index 015f4bba8..0a5b8aed1 100644 --- a/jetpack_vendor/automattic/jetpack-roles/composer.json +++ b/jetpack_vendor/automattic/jetpack-roles/composer.json @@ -7,7 +7,7 @@ "require-dev": { "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-status/SECURITY.md b/jetpack_vendor/automattic/jetpack-status/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/jetpack_vendor/automattic/jetpack-status/SECURITY.md +++ b/jetpack_vendor/automattic/jetpack-status/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/jetpack_vendor/automattic/jetpack-status/composer.json b/jetpack_vendor/automattic/jetpack-status/composer.json index ca5f5dc29..94ec5d091 100644 --- a/jetpack_vendor/automattic/jetpack-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-status/composer.json @@ -9,7 +9,7 @@ "require-dev": { "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.10", "automattic/jetpack-ip": "^0.1.6" }, "suggest": { diff --git a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md index 6390d051f..326838f08 100644 --- a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.58.1] - 2023-10-18 +### Fixed +- Update dependencies. + ## [1.58.0] - 2023-10-16 ### Changed - Migrated 'jetpack_sync_before_send*' actions for Sync queue to 'jetpack_sync_before_enqueue' instead. [#33384] @@ -942,6 +946,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[1.58.1]: https://github.com/Automattic/jetpack-sync/compare/v1.58.0...v1.58.1 [1.58.0]: https://github.com/Automattic/jetpack-sync/compare/v1.57.4...v1.58.0 [1.57.4]: https://github.com/Automattic/jetpack-sync/compare/v1.57.3...v1.57.4 [1.57.3]: https://github.com/Automattic/jetpack-sync/compare/v1.57.2...v1.57.3 diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index ce655a683..2a34f8860 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -6,7 +6,7 @@ "require": { "automattic/jetpack-connection": "^1.58.1", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-identity-crisis": "^0.11.0-alpha", + "automattic/jetpack-identity-crisis": "^0.11.0", "automattic/jetpack-password-checker": "^0.2.14", "automattic/jetpack-ip": "^0.1.6", "automattic/jetpack-roles": "^1.4.25", diff --git a/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php index 18f7daad7..24fdb53f6 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '1.58.0'; + const PACKAGE_VERSION = '1.58.1'; const PACKAGE_SLUG = 'sync'; diff --git a/jetpack_vendor/automattic/jetpack-videopress/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-videopress/CHANGELOG.md index 4ce9260d9..5942fc6ea 100644 --- a/jetpack_vendor/automattic/jetpack-videopress/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-videopress/CHANGELOG.md @@ -5,15 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.17.6-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [0.17.6] - 2023-10-17 ### Security -- Escape VideoPress attributes +- Escape VideoPress attributes [#33637] ### Changed -- Updated package dependencies. +- Updated package dependencies. [#33646] ## [0.17.5] - 2023-10-16 ### Changed @@ -1151,7 +1148,7 @@ This is an alpha version! The changes listed here are not final. ### Added - Created empty package [#24952] -[0.17.6-alpha]: https://github.com/Automattic/jetpack-videopress/compare/v0.17.5...v0.17.6-alpha +[0.17.6]: https://github.com/Automattic/jetpack-videopress/compare/v0.17.5...v0.17.6 [0.17.5]: https://github.com/Automattic/jetpack-videopress/compare/v0.17.4...v0.17.5 [0.17.4]: https://github.com/Automattic/jetpack-videopress/compare/v0.17.3...v0.17.4 [0.17.3]: https://github.com/Automattic/jetpack-videopress/compare/v0.17.2...v0.17.3 diff --git a/jetpack_vendor/automattic/jetpack-videopress/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-videopress/src/class-package-version.php index cc83a0678..bf1db9b54 100644 --- a/jetpack_vendor/automattic/jetpack-videopress/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-videopress/src/class-package-version.php @@ -11,7 +11,7 @@ * The Package_Version class. */ class Package_Version { - const PACKAGE_VERSION = '0.17.6-alpha'; + const PACKAGE_VERSION = '0.17.6'; const PACKAGE_SLUG = 'videopress'; diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 037252f55..8a536d005 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -22,7 +22,7 @@ ), 'jetpack-idc' => array( 'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis', - 'ver' => '0.11.0-alpha1697574612', + 'ver' => '0.11.0', ), 'jetpack-ip' => array( 'path' => 'jetpack_vendor/automattic/jetpack-ip', @@ -38,7 +38,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '3.9.0-alpha1697574612', + 'ver' => '3.9.0', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', @@ -50,11 +50,11 @@ ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', - 'ver' => '1.58.0', + 'ver' => '1.58.1', ), 'jetpack-videopress-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-videopress', - 'ver' => '0.17.6-alpha1697574612', + 'ver' => '0.17.6', ), ), ); diff --git a/readme.txt b/readme.txt index e49c88c16..f4aca46c3 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: automattic, retrofox, oskosk, thehenridev, renatoagds, lhkowalski, Tags: video, video-hosting, video-player, cdn, vimeo, youtube, video-streaming, mobile-video, jetpack Requires at least: 6.2 -Tested up to: 6.4 +Tested up to: 6.3 Stable tag: 1.5 Requires PHP: 5.6 License: GPLv2 or later diff --git a/vendor/autoload.php b/vendor/autoload.php index 491b0dffb..878e72aff 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -22,4 +22,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha::getLoader(); +return ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta::getLoader(); diff --git a/vendor/autoload_packages.php b/vendor/autoload_packages.php index 823473109..9535d32a6 100644 --- a/vendor/autoload_packages.php +++ b/vendor/autoload_packages.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/automattic/jetpack-plans/SECURITY.md b/vendor/automattic/jetpack-plans/SECURITY.md index 98f48dd1d..b4b46c0ee 100644 --- a/vendor/automattic/jetpack-plans/SECURITY.md +++ b/vendor/automattic/jetpack-plans/SECURITY.md @@ -4,20 +4,11 @@ Full details of the Automattic Security Policy can be found on [automattic.com]( ## Supported Versions -Generally, only the latest version of Jetpack and its associated plugins have continued support. If a critical vulnerability is found in the current version of a plugin, we may opt to backport any patches to previous versions. +Generally, only the latest version of Jetpack has continued support. If a critical vulnerability is found in the current version of Jetpack, we may opt to backport any patches to previous versions. ## Reporting a Vulnerability -Our HackerOne program covers the below plugin software, as well as a variety of related projects and infrastructure: - -* [Jetpack](https://jetpack.com/) -* Jetpack Backup -* Jetpack Boost -* Jetpack CRM -* Jetpack Protect -* Jetpack Search -* Jetpack Social -* Jetpack VideoPress +[Jetpack](https://jetpack.com/) is an open-source plugin for WordPress. Our HackerOne program covers the plugin software, as well as a variety of related projects and infrastructure. **For responsible disclosure of security issues and to be eligible for our bug bounty program, please submit your report via the [HackerOne](https://hackerone.com/automattic) portal.** diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index 26d86db9f..282a97360 100644 --- a/vendor/automattic/jetpack-plans/composer.json +++ b/vendor/automattic/jetpack-plans/composer.json @@ -4,12 +4,12 @@ "type": "library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.58.1" + "automattic/jetpack-connection": "^1.57.1" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", - "automattic/jetpack-changelogger": "^3.3.11", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-changelogger": "^3.3.8", + "automattic/jetpack-status": "^1.18.1", "automattic/wordbless": "@dev" }, "suggest": { diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index af89e1b79..204834dbe 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha +class ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta { private static $loader; @@ -22,17 +22,17 @@ public static function getLoader() return self::$loader; } - spl_autoload_register(array('ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta::$files; $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index 5a5f9c019..936d4746d 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha +class ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta { public static $files = array ( '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php', @@ -231,9 +231,9 @@ class ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInitc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 183416a2b..6c8872a05 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -2,20 +2,27 @@ "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", - "version": "1.4.22", + "version": "v1.4.22", "version_normalized": "1.4.22.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git", + "reference": "d7fdf2fc7ae33d75e24e82d81269e33ec718446f" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-a8c-mc-stats", - "reference": "3768febe13da9de4820eb66d9d11b8bc1d37140b" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/d7fdf2fc7ae33d75e24e82d81269e33ec718446f", + "reference": "d7fdf2fc7ae33d75e24e82d81269e33ec718446f", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:18:33+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -33,34 +40,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-a8c-mc-stats/tree/v1.4.22" }, "install-path": "../../jetpack_vendor/automattic/jetpack-a8c-mc-stats" }, { "name": "automattic/jetpack-admin-ui", - "version": "0.2.23", + "version": "v0.2.23", "version_normalized": "0.2.23.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-admin-ui.git", + "reference": "2684f3ee3b458074d95e727e70ae994802501688" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "d3730244fd3798174028684664cf862a9b0064ac" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/2684f3ee3b458074d95e727e70ae994802501688", + "reference": "2684f3ee3b458074d95e727e70ae994802501688", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "automattic/jetpack-logo": "^1.6.3", "automattic/wordbless": "dev-master", "yoast/phpunit-polyfills": "1.1.0" @@ -68,6 +74,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:19:10+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -89,37 +96,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Generic Jetpack wp-admin UI elements", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.2.23" }, "install-path": "../../jetpack_vendor/automattic/jetpack-admin-ui" }, { "name": "automattic/jetpack-assets", - "version": "1.18.12", + "version": "v1.18.12", "version_normalized": "1.18.12.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-assets.git", + "reference": "e0aa010be3cee3285a70cda8e976b7fe74f21637" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "7aa3d0ce4f17f2430b81fe7ddd57047c9e62bdcb" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/e0aa010be3cee3285a70cda8e976b7fe74f21637", + "reference": "e0aa010be3cee3285a70cda8e976b7fe74f21637", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -133,6 +133,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-10T18:50:24+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -154,40 +155,30 @@ "src/" ] }, - "scripts": { - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "pnpm run build-production" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-js": [ - "pnpm run test" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Asset management utilities for Jetpack ecosystem packages", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-assets/tree/v1.18.12" }, "install-path": "../../jetpack_vendor/automattic/jetpack-assets" }, { "name": "automattic/jetpack-autoloader", - "version": "2.12.0", + "version": "v2.12.0", "version_normalized": "2.12.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-autoloader.git", + "reference": "632b69cfc73ed5505f2b03165e7f68d414d0da12" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "b5d5aa307de3ba7f143f9385b6c377ac8512d830" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/632b69cfc73ed5505f2b03165e7f68d414d0da12", + "reference": "632b69cfc73ed5505f2b03165e7f68d414d0da12", + "shasum": "" }, "require": { "composer-plugin-api": "^1.1 || ^2.0" @@ -196,6 +187,7 @@ "automattic/jetpack-changelogger": "^3.3.11", "yoast/phpunit-polyfills": "1.1.0" }, + "time": "2023-09-28T18:33:34+00:00", "type": "composer-plugin", "extra": { "autotagger": true, @@ -213,21 +205,14 @@ }, "installation-source": "dist", "autoload": { - "classmap": [ - "src/AutoloadGenerator.php" - ], "psr-4": { "Automattic\\Jetpack\\Autoloader\\": "src" - } - }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" + }, + "classmap": [ + "src/AutoloadGenerator.php" ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], @@ -240,28 +225,35 @@ "plugin", "wordpress" ], - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-autoloader/tree/v2.12.0" }, "install-path": "../automattic/jetpack-autoloader" }, { "name": "automattic/jetpack-composer-plugin", - "version": "1.1.14", + "version": "v1.1.14", "version_normalized": "1.1.14.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-composer-plugin.git", + "reference": "4722a7fe4bd0080962308653a7f935a24acfc027" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "de94f5af7255e2d4f7b1e8144186a04f2ee8c4dc" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-composer-plugin/zipball/4722a7fe4bd0080962308653a7f935a24acfc027", + "reference": "4722a7fe4bd0080962308653a7f935a24acfc027", + "shasum": "" }, "require": { "composer-plugin-api": "^2.1.0" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "composer/composer": "^2.2 || ^2.4", "yoast/phpunit-polyfills": "1.1.0" }, + "time": "2023-09-19T18:18:32+00:00", "type": "composer-plugin", "extra": { "plugin-modifies-install-path": true, @@ -281,14 +273,7 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], @@ -299,26 +284,33 @@ "jetpack", "plugin" ], - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-composer-plugin/tree/v1.1.14" }, "install-path": "../automattic/jetpack-composer-plugin" }, { "name": "automattic/jetpack-config", - "version": "1.15.4", + "version": "v1.15.4", "version_normalized": "1.15.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-config.git", + "reference": "6cf8d61a972530322c9b62f7375fff83342c38f9" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "3e3cf32688b284fb182a0c67579d88421bdc6f93" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/6cf8d61a972530322c9b62f7375fff83342c38f9", + "reference": "6cf8d61a972530322c9b62f7375fff83342c38f9", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11" + "automattic/jetpack-changelogger": "^3.3.9" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:18:30+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -337,23 +329,30 @@ "src/" ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-config/tree/v1.15.4" }, "install-path": "../../jetpack_vendor/automattic/jetpack-config" }, { "name": "automattic/jetpack-connection", - "version": "1.58.1", + "version": "v1.58.1", "version_normalized": "1.58.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-connection.git", + "reference": "f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "7c367d0e789dd5f9cd34e7f39f1af298493c4d1a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89", + "reference": "f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", @@ -372,6 +371,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-10T18:50:27+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -395,52 +395,40 @@ "src/webhooks" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to connect to the Jetpack infrastructure", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-connection/tree/v1.58.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-connection" }, { "name": "automattic/jetpack-constants", - "version": "1.6.23", + "version": "v1.6.23", "version_normalized": "1.6.23.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-constants.git", + "reference": "0825fb1fa94956f26adebc01be0d716a0fd3ade0" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "d9cc6f89fbccce31e68b11eced65c38689a31088" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/0825fb1fa94956f26adebc01be0d716a0fd3ade0", + "reference": "0825fb1fa94956f26adebc01be0d716a0fd3ade0", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.8", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-08-23T17:56:35+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -458,39 +446,39 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A wrapper for defining constants in a more testable way.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-constants/tree/v1.6.23" }, "install-path": "../../jetpack_vendor/automattic/jetpack-constants" }, { "name": "automattic/jetpack-device-detection", - "version": "1.4.27", + "version": "v1.4.27", "version_normalized": "1.4.27.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-device-detection.git", + "reference": "5fa2add941f3a7933b34bc3f57b4649e887c3976" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "50eb08f7157ace61a7b3c9fa2e6073d967370436" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-device-detection/zipball/5fa2add941f3a7933b34bc3f57b4649e887c3976", + "reference": "5fa2add941f3a7933b34bc3f57b4649e887c3976", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.8", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-08-23T17:56:41+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -508,31 +496,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A way to detect device types based on User-Agent header.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-device-detection/tree/v1.4.27" }, "install-path": "../../jetpack_vendor/automattic/jetpack-device-detection" }, { "name": "automattic/jetpack-identity-crisis", - "version": "0.11.0-alpha.1697574612", - "version_normalized": "0.11.0.0-alpha1697574612", + "version": "v0.11.0", + "version_normalized": "0.11.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-identity-crisis.git", + "reference": "beaa476fa281f5d449ea462291c61837642a3c17" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "10db8e1f328fd52574398f089ad7b8e83011f79d" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-identity-crisis/zipball/beaa476fa281f5d449ea462291c61837642a3c17", + "reference": "beaa476fa281f5d449ea462291c61837642a3c17", + "shasum": "" }, "require": { "automattic/jetpack-assets": "^1.18.12", @@ -549,6 +536,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-17T20:59:34+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -570,56 +558,40 @@ "src/" ] }, - "scripts": { - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "NODE_ENV='production' pnpm run build" - ], - "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" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Identity Crisis.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-identity-crisis/tree/v0.11.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-identity-crisis" }, { "name": "automattic/jetpack-ip", - "version": "0.1.6", + "version": "v0.1.6", "version_normalized": "0.1.6.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-ip.git", + "reference": "39a3b6084336a0a76e4f95f83c2306102e46990e" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "09d0575c9f8894e16c04ee352307b20a5f3ac421" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-ip/zipball/39a3b6084336a0a76e4f95f83c2306102e46990e", + "reference": "39a3b6084336a0a76e4f95f83c2306102e46990e", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:18:29+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -641,31 +613,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities for working with IP addresses.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-ip/tree/v0.1.6" }, "install-path": "../../jetpack_vendor/automattic/jetpack-ip" }, { "name": "automattic/jetpack-jitm", - "version": "2.5.0", + "version": "v2.5.0", "version_normalized": "2.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-jitm.git", + "reference": "620287927ceeb4de928eeb8bc6c170d5f027dc04" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "f8492f8bf550704a485086cfde30f9491d84cf40" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-jitm/zipball/620287927ceeb4de928eeb8bc6c170d5f027dc04", + "reference": "620287927ceeb4de928eeb8bc6c170d5f027dc04", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", @@ -685,6 +656,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-10T18:50:51+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -706,53 +678,43 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Just in time messages for Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-jitm/tree/v2.5.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-jitm" }, { "name": "automattic/jetpack-licensing", - "version": "1.8.4", + "version": "v1.8.4", "version_normalized": "1.8.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-licensing.git", + "reference": "b2a447fa38baf5eb84da7b1db76452349ecc2b25" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "c7e1f323b4e288cf0afedc5f655ac635ed646c7d" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-licensing/zipball/b2a447fa38baf5eb84da7b1db76452349ecc2b25", + "reference": "b2a447fa38baf5eb84da7b1db76452349ecc2b25", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^1.58.1" + "automattic/jetpack-connection": "^1.57.5" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:19:52+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -771,45 +733,39 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to manage Jetpack licenses client-side.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-licensing/tree/v1.8.4" }, "install-path": "../../jetpack_vendor/automattic/jetpack-licensing" }, { "name": "automattic/jetpack-logo", - "version": "1.6.3", + "version": "v1.6.3", "version_normalized": "1.6.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-logo.git", + "reference": "4fb83219cd579e2ad47441afc402fb867d1906ee" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "8237a6a8c86586ee13dca68ae81a6511625c2be1" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/4fb83219cd579e2ad47441afc402fb867d1906ee", + "reference": "4fb83219cd579e2ad47441afc402fb867d1906ee", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:18:39+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -827,31 +783,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A logo for Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-logo/tree/v1.6.3" }, "install-path": "../../jetpack_vendor/automattic/jetpack-logo" }, { "name": "automattic/jetpack-my-jetpack", - "version": "3.9.0-alpha.1697574612", - "version_normalized": "3.9.0.0-alpha1697574612", + "version": "v3.9.0", + "version_normalized": "3.9.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-my-jetpack.git", + "reference": "322ebd19842113d223103574dfd76ed2b700d0ac" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "4d3eb5593801bf721b7cfcf5e55dbc0ffcdffb73" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/322ebd19842113d223103574dfd76ed2b700d0ac", + "reference": "322ebd19842113d223103574dfd76ed2b700d0ac", + "shasum": "" }, "require": { "automattic/jetpack-admin-ui": "^0.2.23", @@ -865,13 +820,14 @@ }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", - "automattic/jetpack-videopress": "^0.17.6-alpha", + "automattic/jetpack-videopress": "^0.17.6", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-17T20:59:50+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -894,61 +850,37 @@ "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" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v3.9.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-my-jetpack" }, { "name": "automattic/jetpack-partner", - "version": "1.7.25", + "version": "v1.7.25", "version_normalized": "1.7.25.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-partner.git", + "reference": "3477697b61c5e7f0ffbe9cf4d5e92c18f30494d3" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-partner", - "reference": "f262f888817c0ad39e97806267ca7c3dcd89f4b3" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-partner/zipball/3477697b61c5e7f0ffbe9cf4d5e92c18f30494d3", + "reference": "3477697b61c5e7f0ffbe9cf4d5e92c18f30494d3", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^1.58.1", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-connection": "^1.57.5", + "automattic/jetpack-status": "^1.18.4" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "automattic/wordbless": "@dev", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0" @@ -956,6 +888,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:19:51+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -973,46 +906,40 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Support functions for Jetpack hosting partners.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-partner/tree/v1.7.25" }, "install-path": "../../jetpack_vendor/automattic/jetpack-partner" }, { "name": "automattic/jetpack-password-checker", - "version": "0.2.14", + "version": "v0.2.14", "version_normalized": "0.2.14.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-password-checker.git", + "reference": "e15e0e01e363c25c2c6b105f4388b4b7d6f7b1db" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "2650f7c4c082cfaa1164f893d2392ad34f4dacd1" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/e15e0e01e363c25c2c6b105f4388b4b7d6f7b1db", + "reference": "e15e0e01e363c25c2c6b105f4388b4b7d6f7b1db", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.8", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-08-23T17:56:39+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1031,50 +958,44 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Password Checker.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-password-checker/tree/v0.2.14" }, "install-path": "../../jetpack_vendor/automattic/jetpack-password-checker" }, { "name": "automattic/jetpack-plans", - "version": "0.3.4", + "version": "v0.3.4", "version_normalized": "0.3.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plans.git", + "reference": "c42749ce627ee4bd6c94599876e17d1dceb4b380" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "8acc60c9f8e9d185eb244da65cf2992d62c01ff4" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plans/zipball/c42749ce627ee4bd6c94599876e17d1dceb4b380", + "reference": "c42749ce627ee4bd6c94599876e17d1dceb4b380", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^1.58.1" + "automattic/jetpack-connection": "^1.57.1" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-changelogger": "^3.3.8", + "automattic/jetpack-status": "^1.18.1", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-08-23T17:57:42+00:00", "type": "library", "extra": { "autotagger": true, @@ -1092,54 +1013,42 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Fetch information about Jetpack Plans from wpcom", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-plans/tree/v0.3.4" }, "install-path": "../automattic/jetpack-plans" }, { "name": "automattic/jetpack-plugins-installer", - "version": "0.2.5", + "version": "v0.2.5", "version_normalized": "0.2.5.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plugins-installer.git", + "reference": "5c60dba7126a21420a192759af0807ea6b9197e1" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "9bba72c413d5dee47bd82f4805e9e93655c4e846" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plugins-installer/zipball/5c60dba7126a21420a192759af0807ea6b9197e1", + "reference": "5c60dba7126a21420a192759af0807ea6b9197e1", + "shasum": "" }, "require": { - "automattic/jetpack-a8c-mc-stats": "^1.4.22" + "automattic/jetpack-a8c-mc-stats": "^1.4.21" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.8", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-08-23T17:57:04+00:00", "type": "jetpack-library", "extra": { "branch-alias": { @@ -1158,43 +1067,43 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Handle installation of plugins from WP.org", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-plugins-installer/tree/v0.2.5" }, "install-path": "../../jetpack_vendor/automattic/jetpack-plugins-installer" }, { "name": "automattic/jetpack-redirect", - "version": "1.7.27", + "version": "v1.7.27", "version_normalized": "1.7.27.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-redirect.git", + "reference": "43dd3ae2bef71281fe70f62733bfaa44c988f1b1" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "642f16efbb17da33964d2666395fc881c35a87d2" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/43dd3ae2bef71281fe70f62733bfaa44c988f1b1", + "reference": "43dd3ae2bef71281fe70f62733bfaa44c988f1b1", + "shasum": "" }, "require": { - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.18.4" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:19:22+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1212,40 +1121,40 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-redirect/tree/v1.7.27" }, "install-path": "../../jetpack_vendor/automattic/jetpack-redirect" }, { "name": "automattic/jetpack-roles", - "version": "1.4.25", + "version": "v1.4.25", "version_normalized": "1.4.25.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-roles.git", + "reference": "708b33f16a879fc2ab5939a972c968c9aeefbe38" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "2bfd7a2a7e5a2e9f930cebec8310e63a18baf716" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/708b33f16a879fc2ab5939a972c968c9aeefbe38", + "reference": "708b33f16a879fc2ab5939a972c968c9aeefbe38", + "shasum": "" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.9", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-19T18:18:38+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1263,37 +1172,36 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities, related with user roles and capabilities.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-roles/tree/v1.4.25" }, "install-path": "../../jetpack_vendor/automattic/jetpack-roles" }, { "name": "automattic/jetpack-status", - "version": "1.18.5", + "version": "v1.18.5", "version_normalized": "1.18.5.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-status.git", + "reference": "fe08772e2005b8cd78ec5e0d416b73a04ae57c10" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "329c84765f1d9911e384829beb9af85d8f1af427" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/fe08772e2005b8cd78ec5e0d416b73a04ae57c10", + "reference": "fe08772e2005b8cd78ec5e0d416b73a04ae57c10", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^1.6.23" }, "require-dev": { - "automattic/jetpack-changelogger": "^3.3.11", + "automattic/jetpack-changelogger": "^3.3.10", "automattic/jetpack-ip": "^0.1.6", "brain/monkey": "2.6.1", "yoast/phpunit-polyfills": "1.1.0" @@ -1301,6 +1209,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-09-25T19:07:29+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1318,36 +1227,35 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-status/tree/v1.18.5" }, "install-path": "../../jetpack_vendor/automattic/jetpack-status" }, { "name": "automattic/jetpack-sync", - "version": "1.58.0", - "version_normalized": "1.58.0.0", + "version": "v1.58.1", + "version_normalized": "1.58.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-sync.git", + "reference": "8e6e7516b1d37a131ac693117ccbb00bb85c6fc2" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "90819c61bcc391ca599f5ad913205b36eecb5d33" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/8e6e7516b1d37a131ac693117ccbb00bb85c6fc2", + "reference": "8e6e7516b1d37a131ac693117ccbb00bb85c6fc2", + "shasum": "" }, "require": { "automattic/jetpack-connection": "^1.58.1", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-identity-crisis": "^0.11.0-alpha", + "automattic/jetpack-identity-crisis": "^0.11.0", "automattic/jetpack-ip": "^0.1.6", "automattic/jetpack-password-checker": "^0.2.14", "automattic/jetpack-roles": "^1.4.25", @@ -1361,6 +1269,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-18T14:40:56+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1382,37 +1291,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-sync/tree/v1.58.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-sync" }, { "name": "automattic/jetpack-videopress", - "version": "0.17.6-alpha.1697574612", - "version_normalized": "0.17.6.0-alpha1697574612", + "version": "v0.17.6", + "version_normalized": "0.17.6.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-videopress.git", + "reference": "564b8b72b62e2c982c7835ffec89b636800f327a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-videopress", - "reference": "79370a3a1a8f125e7a40acf57ce93c1b678de82f" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-videopress/zipball/564b8b72b62e2c982c7835ffec89b636800f327a", + "reference": "564b8b72b62e2c982c7835ffec89b636800f327a", + "shasum": "" }, "require": { "automattic/jetpack-admin-ui": "^0.2.23", @@ -1429,6 +1331,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2023-10-17T20:59:41+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1450,39 +1353,13 @@ "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" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "VideoPress package", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-videopress/tree/v0.17.6" }, "install-path": "../../jetpack_vendor/automattic/jetpack-videopress" } diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 33086a8c6..72a91e3eb 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -11,216 +11,216 @@ ), 'versions' => array( 'automattic/jetpack-a8c-mc-stats' => array( - 'pretty_version' => '1.4.22', + 'pretty_version' => 'v1.4.22', 'version' => '1.4.22.0', - 'reference' => '3768febe13da9de4820eb66d9d11b8bc1d37140b', + 'reference' => 'd7fdf2fc7ae33d75e24e82d81269e33ec718446f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-admin-ui' => array( - 'pretty_version' => '0.2.23', + 'pretty_version' => 'v0.2.23', 'version' => '0.2.23.0', - 'reference' => 'd3730244fd3798174028684664cf862a9b0064ac', + 'reference' => '2684f3ee3b458074d95e727e70ae994802501688', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-assets' => array( - 'pretty_version' => '1.18.12', + 'pretty_version' => 'v1.18.12', 'version' => '1.18.12.0', - 'reference' => '7aa3d0ce4f17f2430b81fe7ddd57047c9e62bdcb', + 'reference' => 'e0aa010be3cee3285a70cda8e976b7fe74f21637', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-autoloader' => array( - 'pretty_version' => '2.12.0', + 'pretty_version' => 'v2.12.0', 'version' => '2.12.0.0', - 'reference' => 'b5d5aa307de3ba7f143f9385b6c377ac8512d830', + 'reference' => '632b69cfc73ed5505f2b03165e7f68d414d0da12', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-composer-plugin' => array( - 'pretty_version' => '1.1.14', + 'pretty_version' => 'v1.1.14', 'version' => '1.1.14.0', - 'reference' => 'de94f5af7255e2d4f7b1e8144186a04f2ee8c4dc', + 'reference' => '4722a7fe4bd0080962308653a7f935a24acfc027', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-config' => array( - 'pretty_version' => '1.15.4', + 'pretty_version' => 'v1.15.4', 'version' => '1.15.4.0', - 'reference' => '3e3cf32688b284fb182a0c67579d88421bdc6f93', + 'reference' => '6cf8d61a972530322c9b62f7375fff83342c38f9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '1.58.1', + 'pretty_version' => 'v1.58.1', 'version' => '1.58.1.0', - 'reference' => '7c367d0e789dd5f9cd34e7f39f1af298493c4d1a', + 'reference' => 'f578d8fe7ef6fdb9ecd60c64645cac8bc6809a89', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-constants' => array( - 'pretty_version' => '1.6.23', + 'pretty_version' => 'v1.6.23', 'version' => '1.6.23.0', - 'reference' => 'd9cc6f89fbccce31e68b11eced65c38689a31088', + 'reference' => '0825fb1fa94956f26adebc01be0d716a0fd3ade0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-device-detection' => array( - 'pretty_version' => '1.4.27', + 'pretty_version' => 'v1.4.27', 'version' => '1.4.27.0', - 'reference' => '50eb08f7157ace61a7b3c9fa2e6073d967370436', + 'reference' => '5fa2add941f3a7933b34bc3f57b4649e887c3976', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-identity-crisis' => array( - 'pretty_version' => '0.11.0-alpha.1697574612', - 'version' => '0.11.0.0-alpha1697574612', - 'reference' => '10db8e1f328fd52574398f089ad7b8e83011f79d', + 'pretty_version' => 'v0.11.0', + 'version' => '0.11.0.0', + 'reference' => 'beaa476fa281f5d449ea462291c61837642a3c17', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-ip' => array( - 'pretty_version' => '0.1.6', + 'pretty_version' => 'v0.1.6', 'version' => '0.1.6.0', - 'reference' => '09d0575c9f8894e16c04ee352307b20a5f3ac421', + 'reference' => '39a3b6084336a0a76e4f95f83c2306102e46990e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-jitm' => array( - 'pretty_version' => '2.5.0', + 'pretty_version' => 'v2.5.0', 'version' => '2.5.0.0', - 'reference' => 'f8492f8bf550704a485086cfde30f9491d84cf40', + 'reference' => '620287927ceeb4de928eeb8bc6c170d5f027dc04', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-licensing' => array( - 'pretty_version' => '1.8.4', + 'pretty_version' => 'v1.8.4', 'version' => '1.8.4.0', - 'reference' => 'c7e1f323b4e288cf0afedc5f655ac635ed646c7d', + 'reference' => 'b2a447fa38baf5eb84da7b1db76452349ecc2b25', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-logo' => array( - 'pretty_version' => '1.6.3', + 'pretty_version' => 'v1.6.3', 'version' => '1.6.3.0', - 'reference' => '8237a6a8c86586ee13dca68ae81a6511625c2be1', + 'reference' => '4fb83219cd579e2ad47441afc402fb867d1906ee', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '3.9.0-alpha.1697574612', - 'version' => '3.9.0.0-alpha1697574612', - 'reference' => '4d3eb5593801bf721b7cfcf5e55dbc0ffcdffb73', + 'pretty_version' => 'v3.9.0', + 'version' => '3.9.0.0', + 'reference' => '322ebd19842113d223103574dfd76ed2b700d0ac', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-partner' => array( - 'pretty_version' => '1.7.25', + 'pretty_version' => 'v1.7.25', 'version' => '1.7.25.0', - 'reference' => 'f262f888817c0ad39e97806267ca7c3dcd89f4b3', + 'reference' => '3477697b61c5e7f0ffbe9cf4d5e92c18f30494d3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-partner', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-password-checker' => array( - 'pretty_version' => '0.2.14', + 'pretty_version' => 'v0.2.14', 'version' => '0.2.14.0', - 'reference' => '2650f7c4c082cfaa1164f893d2392ad34f4dacd1', + 'reference' => 'e15e0e01e363c25c2c6b105f4388b4b7d6f7b1db', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plans' => array( - 'pretty_version' => '0.3.4', + 'pretty_version' => 'v0.3.4', 'version' => '0.3.4.0', - 'reference' => '8acc60c9f8e9d185eb244da65cf2992d62c01ff4', + 'reference' => 'c42749ce627ee4bd6c94599876e17d1dceb4b380', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plugins-installer' => array( - 'pretty_version' => '0.2.5', + 'pretty_version' => 'v0.2.5', 'version' => '0.2.5.0', - 'reference' => '9bba72c413d5dee47bd82f4805e9e93655c4e846', + 'reference' => '5c60dba7126a21420a192759af0807ea6b9197e1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-redirect' => array( - 'pretty_version' => '1.7.27', + 'pretty_version' => 'v1.7.27', 'version' => '1.7.27.0', - 'reference' => '642f16efbb17da33964d2666395fc881c35a87d2', + 'reference' => '43dd3ae2bef71281fe70f62733bfaa44c988f1b1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-roles' => array( - 'pretty_version' => '1.4.25', + 'pretty_version' => 'v1.4.25', 'version' => '1.4.25.0', - 'reference' => '2bfd7a2a7e5a2e9f930cebec8310e63a18baf716', + 'reference' => '708b33f16a879fc2ab5939a972c968c9aeefbe38', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-status' => array( - 'pretty_version' => '1.18.5', + 'pretty_version' => 'v1.18.5', 'version' => '1.18.5.0', - 'reference' => '329c84765f1d9911e384829beb9af85d8f1af427', + 'reference' => 'fe08772e2005b8cd78ec5e0d416b73a04ae57c10', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '1.58.0', - 'version' => '1.58.0.0', - 'reference' => '90819c61bcc391ca599f5ad913205b36eecb5d33', + 'pretty_version' => 'v1.58.1', + 'version' => '1.58.1.0', + 'reference' => '8e6e7516b1d37a131ac693117ccbb00bb85c6fc2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-videopress' => array( - 'pretty_version' => '0.17.6-alpha.1697574612', - 'version' => '0.17.6.0-alpha1697574612', - 'reference' => '79370a3a1a8f125e7a40acf57ce93c1b678de82f', + 'pretty_version' => 'v0.17.6', + 'version' => '0.17.6.0', + 'reference' => '564b8b72b62e2c982c7835ffec89b636800f327a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-videopress', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 81b90454f..41b97b70f 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -203,23 +203,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '0.11.0.0-alpha1697574612', + 'version' => '0.11.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '0.11.0.0-alpha1697574612', + 'version' => '0.11.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '0.11.0.0-alpha1697574612', + 'version' => '0.11.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '0.11.0.0-alpha1697574612', + 'version' => '0.11.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '0.11.0.0-alpha1697574612', + 'version' => '0.11.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -251,107 +251,107 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '3.9.0.0-alpha1697574612', + 'version' => '3.9.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( @@ -403,227 +403,227 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php' ), 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php' ), 'Automattic\\Jetpack\\Sync\\Data_Settings' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php' ), 'Automattic\\Jetpack\\Sync\\Dedicated_Sender' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php' ), 'Automattic\\Jetpack\\Sync\\Default_Filter_Settings' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php' ), 'Automattic\\Jetpack\\Sync\\Defaults' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php' ), 'Automattic\\Jetpack\\Sync\\Functions' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php' ), 'Automattic\\Jetpack\\Sync\\Health' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php' ), 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' ), 'Automattic\\Jetpack\\Sync\\Listener' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php' ), 'Automattic\\Jetpack\\Sync\\Lock' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php' ), 'Automattic\\Jetpack\\Sync\\Main' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php' ), 'Automattic\\Jetpack\\Sync\\Modules' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Search' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce_HPOS_Orders' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php' ), 'Automattic\\Jetpack\\Sync\\Package_Version' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php' ), 'Automattic\\Jetpack\\Sync\\Queue' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Options' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-options.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Table' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-table.php' ), 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php' ), 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\Sync\\REST_Sender' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Sender' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php' ), 'Automattic\\Jetpack\\Sync\\Server' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php' ), 'Automattic\\Jetpack\\Sync\\Settings' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php' ), 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php' ), 'Automattic\\Jetpack\\Sync\\Users' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Utils' => array( - 'version' => '1.58.0.0', + 'version' => '1.58.1.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( @@ -635,115 +635,115 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Automattic\\Jetpack\\VideoPress\\AJAX' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-ajax.php' ), 'Automattic\\Jetpack\\VideoPress\\Admin_UI' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-admin-ui.php' ), 'Automattic\\Jetpack\\VideoPress\\Attachment_Handler' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-attachment-handler.php' ), 'Automattic\\Jetpack\\VideoPress\\Block_Editor_Content' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-block-editor-content.php' ), 'Automattic\\Jetpack\\VideoPress\\Block_Editor_Extensions' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-block-editor-extensions.php' ), 'Automattic\\Jetpack\\VideoPress\\Data' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-data.php' ), 'Automattic\\Jetpack\\VideoPress\\Divi' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-divi.php' ), 'Automattic\\Jetpack\\VideoPress\\Initializer' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-initializer.php' ), 'Automattic\\Jetpack\\VideoPress\\Jwt_Token_Bridge' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-jwt-token-bridge.php' ), 'Automattic\\Jetpack\\VideoPress\\Module_Control' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-module-control.php' ), 'Automattic\\Jetpack\\VideoPress\\Options' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-options.php' ), 'Automattic\\Jetpack\\VideoPress\\Package_Version' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-package-version.php' ), 'Automattic\\Jetpack\\VideoPress\\Plan' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-plan.php' ), 'Automattic\\Jetpack\\VideoPress\\Site' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-site.php' ), 'Automattic\\Jetpack\\VideoPress\\Stats' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-stats.php' ), 'Automattic\\Jetpack\\VideoPress\\Status' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-status.php' ), 'Automattic\\Jetpack\\VideoPress\\Upload_Exception' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-upload-exception.php' ), 'Automattic\\Jetpack\\VideoPress\\Uploader' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-uploader.php' ), 'Automattic\\Jetpack\\VideoPress\\Uploader_Rest_Endpoints' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-uploader-rest-endpoints.php' ), 'Automattic\\Jetpack\\VideoPress\\Utils' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-utils.php' ), 'Automattic\\Jetpack\\VideoPress\\VideoPressToken' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-videopresstoken.php' ), 'Automattic\\Jetpack\\VideoPress\\VideoPress_Rest_Api_V1_Settings' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-videopress-rest-api-v1-settings.php' ), 'Automattic\\Jetpack\\VideoPress\\VideoPress_Rest_Api_V1_Site' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-videopress-rest-api-v1-site.php' ), 'Automattic\\Jetpack\\VideoPress\\VideoPress_Rest_Api_V1_Stats' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-videopress-rest-api-v1-stats.php' ), 'Automattic\\Jetpack\\VideoPress\\WPCOM_REST_API_V2_Attachment_VideoPress_Data' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-wpcom-rest-api-v2-attachment-videopress-data.php' ), 'Automattic\\Jetpack\\VideoPress\\WPCOM_REST_API_V2_Attachment_VideoPress_Field' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-wpcom-rest-api-v2-attachment-field-videopress.php' ), 'Automattic\\Jetpack\\VideoPress\\WPCOM_REST_API_V2_Endpoint_VideoPress' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-wpcom-rest-api-v2-endpoint-videopress.php' ), 'Automattic\\Jetpack\\VideoPress\\XMLRPC' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/class-xmlrpc.php' ), 'Container' => array( @@ -815,7 +815,7 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-shutdown-handler.php' ), 'VIDEOPRESS_PRIVACY' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/utility-functions.php' ), 'Version_Loader' => array( @@ -827,39 +827,39 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-version-selector.php' ), 'VideoPressUploader\\File_Exception' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-file-exception.php' ), 'VideoPressUploader\\Transient_Store' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-transient-store.php' ), 'VideoPressUploader\\Tus_Abstract_Cache' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-tus-abstract-cache.php' ), 'VideoPressUploader\\Tus_Client' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-tus-client.php' ), 'VideoPressUploader\\Tus_Date_Utils' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-tus-date-utils.php' ), 'VideoPressUploader\\Tus_Exception' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-tus-exception.php' ), 'VideoPressUploader\\Tus_File' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/tus/class-tus-file.php' ), 'VideoPress_Divi_Extension' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/videopress-divi/class-videopress-divi-extension.php' ), 'VideoPress_Divi_Module' => array( - 'version' => '0.17.6.0-alpha1697574612', + 'version' => '0.17.6.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-videopress/src/videopress-divi/class-videopress-divi-module.php' ), ); diff --git a/vendor/jetpack-autoloader/class-autoloader-handler.php b/vendor/jetpack-autoloader/class-autoloader-handler.php index 9e6f57123..1d5bd5795 100644 --- a/vendor/jetpack-autoloader/class-autoloader-handler.php +++ b/vendor/jetpack-autoloader/class-autoloader-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-autoloader-locator.php b/vendor/jetpack-autoloader/class-autoloader-locator.php index 494229c94..cfb815c70 100644 --- a/vendor/jetpack-autoloader/class-autoloader-locator.php +++ b/vendor/jetpack-autoloader/class-autoloader-locator.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-autoloader.php b/vendor/jetpack-autoloader/class-autoloader.php index 1fade4f5b..6d8b2e0cc 100644 --- a/vendor/jetpack-autoloader/class-autoloader.php +++ b/vendor/jetpack-autoloader/class-autoloader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-container.php b/vendor/jetpack-autoloader/class-container.php index 294826fc5..6e60e6ccd 100644 --- a/vendor/jetpack-autoloader/class-container.php +++ b/vendor/jetpack-autoloader/class-container.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-hook-manager.php b/vendor/jetpack-autoloader/class-hook-manager.php index f948b286d..7519d8799 100644 --- a/vendor/jetpack-autoloader/class-hook-manager.php +++ b/vendor/jetpack-autoloader/class-hook-manager.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-latest-autoloader-guard.php b/vendor/jetpack-autoloader/class-latest-autoloader-guard.php index 9c2c20313..7a347ae79 100644 --- a/vendor/jetpack-autoloader/class-latest-autoloader-guard.php +++ b/vendor/jetpack-autoloader/class-latest-autoloader-guard.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-manifest-reader.php b/vendor/jetpack-autoloader/class-manifest-reader.php index f8fede489..19edcafde 100644 --- a/vendor/jetpack-autoloader/class-manifest-reader.php +++ b/vendor/jetpack-autoloader/class-manifest-reader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-path-processor.php b/vendor/jetpack-autoloader/class-path-processor.php index c92545296..a45051d5b 100644 --- a/vendor/jetpack-autoloader/class-path-processor.php +++ b/vendor/jetpack-autoloader/class-path-processor.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-php-autoloader.php b/vendor/jetpack-autoloader/class-php-autoloader.php index f5ca5014e..b48a37c52 100644 --- a/vendor/jetpack-autoloader/class-php-autoloader.php +++ b/vendor/jetpack-autoloader/class-php-autoloader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-plugin-locator.php b/vendor/jetpack-autoloader/class-plugin-locator.php index 8a5e47810..3821b7336 100644 --- a/vendor/jetpack-autoloader/class-plugin-locator.php +++ b/vendor/jetpack-autoloader/class-plugin-locator.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-plugins-handler.php b/vendor/jetpack-autoloader/class-plugins-handler.php index 087b445b5..0862847ae 100644 --- a/vendor/jetpack-autoloader/class-plugins-handler.php +++ b/vendor/jetpack-autoloader/class-plugins-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-shutdown-handler.php b/vendor/jetpack-autoloader/class-shutdown-handler.php index 96f6b27d4..b3bd97a08 100644 --- a/vendor/jetpack-autoloader/class-shutdown-handler.php +++ b/vendor/jetpack-autoloader/class-shutdown-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-version-loader.php b/vendor/jetpack-autoloader/class-version-loader.php index bdb88e02d..2744599a3 100644 --- a/vendor/jetpack-autoloader/class-version-loader.php +++ b/vendor/jetpack-autoloader/class-version-loader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-version-selector.php b/vendor/jetpack-autoloader/class-version-selector.php index b6561c530..5e08aff27 100644 --- a/vendor/jetpack-autoloader/class-version-selector.php +++ b/vendor/jetpack-autoloader/class-version-selector.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_alpha\al2_12_0; +namespace Automattic\Jetpack\Autoloader\jpc4802e05bbcf59fd3b6350e8d3e5482c_videopressⓥ1_6_beta\al2_12_0; // phpcs:ignore