diff --git a/projects/packages/blaze/CHANGELOG.md b/projects/packages/blaze/CHANGELOG.md index 168ff7ec622f..2243252aa165 100644 --- a/projects/packages/blaze/CHANGELOG.md +++ b/projects/packages/blaze/CHANGELOG.md @@ -5,6 +5,14 @@ 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.3.4] - 2023-01-16 +### Added +- Do not display the Blaze UI on private or unlaunched sites. [#28315] + +### Changed +- Do not load the Blaze UI if the JSON API module is inactive. [#28267] +- Only display the Blaze UI if the connected user's language is English. [#28266] + ## [0.3.3] - 2023-01-11 ### Changed - Updated package dependencies. [#28127] @@ -34,6 +42,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated package dependencies. [#27906] +[0.3.4]: https://github.com/automattic/jetpack-blaze/compare/v0.3.3...v0.3.4 [0.3.3]: https://github.com/automattic/jetpack-blaze/compare/v0.3.2...v0.3.3 [0.3.2]: https://github.com/automattic/jetpack-blaze/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/automattic/jetpack-blaze/compare/v0.3.0...v0.3.1 diff --git a/projects/packages/blaze/changelog/update-blaze-conditions b/projects/packages/blaze/changelog/update-blaze-conditions deleted file mode 100644 index 84e7c74f2395..000000000000 --- a/projects/packages/blaze/changelog/update-blaze-conditions +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Only display the Blaze UI if the connected user's language is English. diff --git a/projects/packages/blaze/changelog/update-blaze-conditions-json-api b/projects/packages/blaze/changelog/update-blaze-conditions-json-api deleted file mode 100644 index b48013325e31..000000000000 --- a/projects/packages/blaze/changelog/update-blaze-conditions-json-api +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Do not load the Blaze UI if the JSON API module is inactive. diff --git a/projects/packages/blaze/changelog/update-blaze-conditions-private-site b/projects/packages/blaze/changelog/update-blaze-conditions-private-site deleted file mode 100644 index d47fb32dc936..000000000000 --- a/projects/packages/blaze/changelog/update-blaze-conditions-private-site +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Do not display the Blaze UI on private or unlaunched sites. diff --git a/projects/packages/blaze/package.json b/projects/packages/blaze/package.json index 4e51a80e4705..8c28572b8b9c 100644 --- a/projects/packages/blaze/package.json +++ b/projects/packages/blaze/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-blaze", - "version": "0.3.4-alpha", + "version": "0.3.4", "description": "Attract high-quality traffic to your site using Blaze. Using this service, you can advertise a post or page on some of the millions of pages across WordPress.com and Tumblr from just $5 per day.", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/blaze/#readme", "bugs": { diff --git a/projects/packages/blaze/src/class-blaze.php b/projects/packages/blaze/src/class-blaze.php index bdacbf9f198b..1106fc776198 100644 --- a/projects/packages/blaze/src/class-blaze.php +++ b/projects/packages/blaze/src/class-blaze.php @@ -16,7 +16,7 @@ */ class Blaze { - const PACKAGE_VERSION = '0.3.4-alpha'; + const PACKAGE_VERSION = '0.3.4'; /** * The configuration method that is called from the jetpack-config package. diff --git a/projects/packages/composer-plugin/CHANGELOG.md b/projects/packages/composer-plugin/CHANGELOG.md index 90f517121f86..915f8bc598c5 100644 --- a/projects/packages/composer-plugin/CHANGELOG.md +++ b/projects/packages/composer-plugin/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.1.9] - 2023-01-16 +### Fixed +- Ensure `jetpack_vendor/` exists before trying to write `jetpack_vendor/i18n-map.php`. [#28369] + ## [1.1.8] - 2022-12-19 ### Changed - Updated package dependencies. [#27963] @@ -66,6 +70,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Added the Jetpack Installer package. +[1.1.9]: https://github.com/Automattic/jetpack-composer-plugin/compare/v1.1.8...v1.1.9 [1.1.8]: https://github.com/Automattic/jetpack-composer-plugin/compare/v1.1.7...v1.1.8 [1.1.7]: https://github.com/Automattic/jetpack-composer-plugin/compare/v1.1.6...v1.1.7 [1.1.6]: https://github.com/Automattic/jetpack-composer-plugin/compare/v1.1.5...v1.1.6 diff --git a/projects/packages/composer-plugin/changelog/fix-composer-plugin-no-jetpack_vendor b/projects/packages/composer-plugin/changelog/fix-composer-plugin-no-jetpack_vendor deleted file mode 100644 index 84cd5bad4713..000000000000 --- a/projects/packages/composer-plugin/changelog/fix-composer-plugin-no-jetpack_vendor +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Ensure `jetpack_vendor/` exists before trying to write `jetpack_vendor/i18n-map.php`. diff --git a/projects/packages/my-jetpack/CHANGELOG.md b/projects/packages/my-jetpack/CHANGELOG.md index e488e9085858..bc3d2237fab7 100644 --- a/projects/packages/my-jetpack/CHANGELOG.md +++ b/projects/packages/my-jetpack/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). +## [2.7.4] - 2023-01-16 +### Changed +- Updated package dependencies. [#28303] + ## [2.7.3] - 2023-01-11 ### Changed - Updated package dependencies. @@ -721,6 +725,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[2.7.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/2.7.3...2.7.4 [2.7.3]: https://github.com/Automattic/jetpack-my-jetpack/compare/2.7.2...2.7.3 [2.7.2]: https://github.com/Automattic/jetpack-my-jetpack/compare/2.7.1...2.7.2 [2.7.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/2.7.0...2.7.1 diff --git a/projects/packages/my-jetpack/changelog/renovate-react-router-monorepo b/projects/packages/my-jetpack/changelog/renovate-react-router-monorepo deleted file mode 100644 index c47cb18e8299..000000000000 --- a/projects/packages/my-jetpack/changelog/renovate-react-router-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/my-jetpack/package.json b/projects/packages/my-jetpack/package.json index 0ba65e25501c..e5e2be8f7071 100644 --- a/projects/packages/my-jetpack/package.json +++ b/projects/packages/my-jetpack/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-my-jetpack", - "version": "2.7.4-alpha", + "version": "2.7.4", "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/my-jetpack/#readme", "bugs": { diff --git a/projects/packages/my-jetpack/src/class-initializer.php b/projects/packages/my-jetpack/src/class-initializer.php index 965bb942f05c..61b715679bda 100644 --- a/projects/packages/my-jetpack/src/class-initializer.php +++ b/projects/packages/my-jetpack/src/class-initializer.php @@ -30,7 +30,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '2.7.4-alpha'; + const PACKAGE_VERSION = '2.7.4'; /** * Initialize My Jetpack diff --git a/projects/packages/stats-admin/CHANGELOG.md b/projects/packages/stats-admin/CHANGELOG.md index 9e16657cf50d..0679b2340c73 100644 --- a/projects/packages/stats-admin/CHANGELOG.md +++ b/projects/packages/stats-admin/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). +## 0.3.1 - 2023-01-16 +### Fixed +- Fix Odyssey Stats footer position [#28308] + ## 0.3.0 - 2023-01-11 ### Added - Stats: add loading spinner for Stats Dashboard [#28219] diff --git a/projects/packages/stats-admin/changelog/fix-odyssey-stats-footer-position b/projects/packages/stats-admin/changelog/fix-odyssey-stats-footer-position deleted file mode 100644 index 7739d9180626..000000000000 --- a/projects/packages/stats-admin/changelog/fix-odyssey-stats-footer-position +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fix Odyssey Stats footer position diff --git a/projects/packages/stats-admin/package.json b/projects/packages/stats-admin/package.json index 7f4ffc1cb849..9bbdf88674ec 100644 --- a/projects/packages/stats-admin/package.json +++ b/projects/packages/stats-admin/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-stats-admin", - "version": "0.3.1-alpha", + "version": "0.3.1", "description": "Stats Dashboard", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/stats-admin/#readme", "bugs": { diff --git a/projects/packages/stats-admin/src/class-main.php b/projects/packages/stats-admin/src/class-main.php index 3b1d96e99fcc..d8c102e019cb 100644 --- a/projects/packages/stats-admin/src/class-main.php +++ b/projects/packages/stats-admin/src/class-main.php @@ -18,7 +18,7 @@ class Main { /** * Stats version. */ - const VERSION = '0.3.1-alpha'; + const VERSION = '0.3.1'; /** * Singleton Main instance. diff --git a/projects/packages/status/CHANGELOG.md b/projects/packages/status/CHANGELOG.md index 7086cc9468c6..4e360e0da6d9 100644 --- a/projects/packages/status/CHANGELOG.md +++ b/projects/packages/status/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.16.0] - 2023-01-16 +### Added +- Add 2 new methods to detect whether a site is private or not. [#28322] + ## [1.15.4] - 2023-01-11 ### Changed - Modules: Allow for deactivating multiple plugins when activating a module. [#28181] @@ -228,6 +232,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Introduce a status package +[1.16.0]: https://github.com/Automattic/jetpack-status/compare/v1.15.4...v1.16.0 [1.15.4]: https://github.com/Automattic/jetpack-status/compare/v1.15.3...v1.15.4 [1.15.3]: https://github.com/Automattic/jetpack-status/compare/v1.15.2...v1.15.3 [1.15.2]: https://github.com/Automattic/jetpack-status/compare/v1.15.1...v1.15.2 diff --git a/projects/packages/status/changelog/add-status-private-coming-soon-site b/projects/packages/status/changelog/add-status-private-coming-soon-site deleted file mode 100644 index 34e150aa8ad2..000000000000 --- a/projects/packages/status/changelog/add-status-private-coming-soon-site +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Add 2 new methods to detect whether a site is private or not. diff --git a/projects/packages/status/src/class-status.php b/projects/packages/status/src/class-status.php index 463bb6895d1a..5c19c1c256e1 100644 --- a/projects/packages/status/src/class-status.php +++ b/projects/packages/status/src/class-status.php @@ -318,7 +318,7 @@ public function is_onboarding() { * Whether the site is currently private or not. * On WordPress.com and WoA, sites can be marked as private * - * @since $$next-version$$ + * @since 1.16.0 * * @return bool True if the site is private. */ @@ -336,7 +336,7 @@ public function is_private_site() { * Whether the site is currently unlaunched or not. * On WordPress.com and WoA, sites can be marked as "coming soon", aka unlaunched * - * @since $$next-version$$ + * @since 1.16.0 * * @return bool True if the site is not launched. */ diff --git a/projects/packages/videopress/CHANGELOG.md b/projects/packages/videopress/CHANGELOG.md index b46dbf3169c0..a492e2f017f0 100644 --- a/projects/packages/videopress/CHANGELOG.md +++ b/projects/packages/videopress/CHANGELOG.md @@ -5,6 +5,24 @@ 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.10.3] - 2023-01-16 +### Added +- VideoPress: add anchor support to VideoPress video block [#28377] +- VideoPress: add rating selector on video details edit page [#28347] + +### Changed +- VideoPress: avoid requesting unneeded preview when block mounts [#28311] +- VideoPress: fix exception when deleting last video of page [#28281] +- VideoPress: skip rating checking when pulling video data for the block [#28374] +- VideoPress: tweak the footer of the uploader component [#28337] +- VideoPress: use @wordpress/html-entities to handle html entities [#28376] + +### Fixed +- VideoPress: enhance behavior when deleting multiple videos [#28302] +- VideoPress: fix render player once file uploads issue [#28296] +- VideoPress: fix setting title when uploading video file [#28329] +- VideoPress: render properly title and description inputs of the video block [#28341] + ## [0.10.2] - 2023-01-11 ### Added - VideoPress: add Cancel button to uploading file component when replacing file [#28188] @@ -612,6 +630,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created empty package [#24952] +[0.10.3]: https://github.com/Automattic/jetpack-videopress/compare/v0.10.2...v0.10.3 [0.10.2]: https://github.com/Automattic/jetpack-videopress/compare/v0.10.1...v0.10.2 [0.10.1]: https://github.com/Automattic/jetpack-videopress/compare/v0.10.0...v0.10.1 [0.10.0]: https://github.com/Automattic/jetpack-videopress/compare/v0.9.2...v0.10.0 diff --git a/projects/packages/videopress/changelog/add-videopress-dashboard-rating b/projects/packages/videopress/changelog/add-videopress-dashboard-rating deleted file mode 100644 index 19398b03d717..000000000000 --- a/projects/packages/videopress/changelog/add-videopress-dashboard-rating +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -VideoPress: Add rating selector on video details edit page diff --git a/projects/packages/videopress/changelog/fix-videopress-delete-behavior b/projects/packages/videopress/changelog/fix-videopress-delete-behavior deleted file mode 100644 index 946c4bcf0840..000000000000 --- a/projects/packages/videopress/changelog/fix-videopress-delete-behavior +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -VideoPress: Enhance behavior when deleting multiple videos diff --git a/projects/packages/videopress/changelog/fix-videopress-delete-last-video b/projects/packages/videopress/changelog/fix-videopress-delete-last-video deleted file mode 100644 index d11d43fbd4bb..000000000000 --- a/projects/packages/videopress/changelog/fix-videopress-delete-last-video +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -VideoPress: Fix exception when deleting last video of page diff --git a/projects/packages/videopress/changelog/update-videopress-add-anchor-support-to-v6 b/projects/packages/videopress/changelog/update-videopress-add-anchor-support-to-v6 deleted file mode 100644 index 814cf7edb6ae..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-add-anchor-support-to-v6 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -VideoPress: add anchor support to VideoPress video block diff --git a/projects/packages/videopress/changelog/update-videopress-avoid-requesting-unneeded-video-preview b/projects/packages/videopress/changelog/update-videopress-avoid-requesting-unneeded-video-preview deleted file mode 100644 index 9f222cfba7f2..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-avoid-requesting-unneeded-video-preview +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -VideoPress: avoid requesting unneeded preview when block mounts diff --git a/projects/packages/videopress/changelog/update-videopress-decode-title-and-description b/projects/packages/videopress/changelog/update-videopress-decode-title-and-description deleted file mode 100644 index bfac9b582804..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-decode-title-and-description +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -VideoPress: Render properly title and description inputs of the video block diff --git a/projects/packages/videopress/changelog/update-videopress-fix-rendering-player b/projects/packages/videopress/changelog/update-videopress-fix-rendering-player deleted file mode 100644 index 25259c0025fa..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-fix-rendering-player +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -VideoPress: fix render player once file uploads issue diff --git a/projects/packages/videopress/changelog/update-videopress-handle-title-when-uploading-file b/projects/packages/videopress/changelog/update-videopress-handle-title-when-uploading-file deleted file mode 100644 index 29a47c783357..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-handle-title-when-uploading-file +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -VideoPress: fix setting title when uploading video file diff --git a/projects/packages/videopress/changelog/update-videopress-skip-rating-checking-in-editor-context b/projects/packages/videopress/changelog/update-videopress-skip-rating-checking-in-editor-context deleted file mode 100644 index 0b12528c5dae..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-skip-rating-checking-in-editor-context +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -VideoPress: skip rating checking when pulling video data for the block diff --git a/projects/packages/videopress/changelog/update-videopress-tweak-uploader-component-footer b/projects/packages/videopress/changelog/update-videopress-tweak-uploader-component-footer deleted file mode 100644 index 79b96a498cb7..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-tweak-uploader-component-footer +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -VideoPress: tweak the footer of the uploader component diff --git a/projects/packages/videopress/changelog/update-videopress-use-core-pkg-to-handle-entities b/projects/packages/videopress/changelog/update-videopress-use-core-pkg-to-handle-entities deleted file mode 100644 index 5dca25067a83..000000000000 --- a/projects/packages/videopress/changelog/update-videopress-use-core-pkg-to-handle-entities +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -VideoPress: use @wordpress/html-entities to handle html entities diff --git a/projects/packages/videopress/package.json b/projects/packages/videopress/package.json index e69c000941ea..39fc1cebfccc 100644 --- a/projects/packages/videopress/package.json +++ b/projects/packages/videopress/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-videopress", - "version": "0.10.3-alpha", + "version": "0.10.3", "description": "VideoPress package", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/packages/videopress/#readme", "bugs": { diff --git a/projects/packages/videopress/src/class-package-version.php b/projects/packages/videopress/src/class-package-version.php index 4640586f92a7..9f3038521489 100644 --- a/projects/packages/videopress/src/class-package-version.php +++ b/projects/packages/videopress/src/class-package-version.php @@ -11,7 +11,7 @@ * The Package_Version class. */ class Package_Version { - const PACKAGE_VERSION = '0.10.3-alpha'; + const PACKAGE_VERSION = '0.10.3'; const PACKAGE_SLUG = 'videopress'; diff --git a/projects/plugins/jetpack/CHANGELOG.md b/projects/plugins/jetpack/CHANGELOG.md index 8e3674e48024..02aff7547c64 100644 --- a/projects/plugins/jetpack/CHANGELOG.md +++ b/projects/plugins/jetpack/CHANGELOG.md @@ -2,6 +2,31 @@ ### This is a list detailing changes for all Jetpack releases. +## 11.8-a.5 - 2023-01-16 +### Enhancements +- Add a randomized prompt amongst the best prompts to serve as a placeholder for the AI Image block [#28339] +- AI Features now have a link to the Forums thread to gather feedback, different icon and simplified way of enabling for testing [#28338] +- AI Paragraph block now is aware of the rest of editor canvas and can work without any input [#28321] +- Blaze: Show Advertising in menu for Jetpack sites [#28088] + +### Improved compatibility +- Add support for the 'connection_disabled' error code. [#28334] + +### Bug fixes +- Jetpack: fix the fullscreen option when using videopress shortcode [#28342] + +### Other changes +- Add user stories for earn features for ease of testing [#28283] +- E2E tests: add test for subscribe block [#28289] +- For the admin-menus wpcom API endpoint, treat menu urls pointing back to the site as internal URLs rather than blanking them. + + This means that menu items that previously pointed to the current page due to being blanked, are now more likely to point to an actual page. [#28301] +- JSON Endpoint: Introducing new '/sites/%s/dropdown-pages/' endpoint [#28132] +- Masterbar: update Blaze conditions to rely on the existing method from the package. [#28340] +- Mention `jetpack_blocks_variation` filter in Beta Extensions doc [#28382] +- Site Settings API: Expose Jetpack's related posts 'show_date' and 'show_context' options [#28305] +- Updated package dependencies. + ## 11.8-a.3 - 2023-01-12 ### Bug fixes - Reverts PR #27958 as it conflicts with the way WooCommerce updates submenus. [#28312] diff --git a/projects/plugins/jetpack/_inc/lib/class-jetpack-ai-helper.php b/projects/plugins/jetpack/_inc/lib/class-jetpack-ai-helper.php index 56f99e6d324a..205cbd52921d 100644 --- a/projects/plugins/jetpack/_inc/lib/class-jetpack-ai-helper.php +++ b/projects/plugins/jetpack/_inc/lib/class-jetpack-ai-helper.php @@ -71,7 +71,7 @@ public static function is_enabled() { /** * Filter whether the AI features are enabled in the Jetpack plugin. * - * @since $$next-version$$ + * @since 11.8 * * @param bool $default Are AI features enabled? Defaults to false. */ diff --git a/projects/plugins/jetpack/changelog/add-json-endpoint-get-dropdown-pages b/projects/plugins/jetpack/changelog/add-json-endpoint-get-dropdown-pages deleted file mode 100644 index 1479a14e3967..000000000000 --- a/projects/plugins/jetpack/changelog/add-json-endpoint-get-dropdown-pages +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -JSON Endpoint: Introducing new '/sites/%s/dropdown-pages/' endpoint diff --git a/projects/plugins/jetpack/changelog/add-openai-placeholder-prompts b/projects/plugins/jetpack/changelog/add-openai-placeholder-prompts deleted file mode 100644 index 39dae57d906b..000000000000 --- a/projects/plugins/jetpack/changelog/add-openai-placeholder-prompts +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: enhancement - -Add a randomized prompt amongst the best prompts to serve as a placeholder for the AI Image block diff --git a/projects/plugins/jetpack/changelog/add-status-private-coming-soon-site b/projects/plugins/jetpack/changelog/add-status-private-coming-soon-site deleted file mode 100644 index a1c1831fa1ef..000000000000 --- a/projects/plugins/jetpack/changelog/add-status-private-coming-soon-site +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Updated composer.lock. - - diff --git a/projects/plugins/jetpack/changelog/add-user-stories-for-earn-features b/projects/plugins/jetpack/changelog/add-user-stories-for-earn-features deleted file mode 100644 index a1d9755d3348..000000000000 --- a/projects/plugins/jetpack/changelog/add-user-stories-for-earn-features +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Add user stories for earn features for ease of testing diff --git a/projects/plugins/jetpack/changelog/e2e-subscription-block b/projects/plugins/jetpack/changelog/e2e-subscription-block deleted file mode 100644 index c12916dd8b16..000000000000 --- a/projects/plugins/jetpack/changelog/e2e-subscription-block +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -E2E tests: add test for subscribe block diff --git a/projects/plugins/jetpack/changelog/fix-jetpack-site-blaze-menu b/projects/plugins/jetpack/changelog/fix-jetpack-site-blaze-menu deleted file mode 100644 index 0be5fbf4fa28..000000000000 --- a/projects/plugins/jetpack/changelog/fix-jetpack-site-blaze-menu +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -Blaze: Show Advertising in menu for Jetpack sites diff --git a/projects/plugins/jetpack/changelog/improve-jetpack-blocks-variation-filter b/projects/plugins/jetpack/changelog/improve-jetpack-blocks-variation-filter deleted file mode 100644 index 70bd1d39da02..000000000000 --- a/projects/plugins/jetpack/changelog/improve-jetpack-blocks-variation-filter +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Mention `jetpack_blocks_variation` filter in Beta Extensions doc diff --git a/projects/plugins/jetpack/changelog/init-release-cycle b/projects/plugins/jetpack/changelog/init-release-cycle index 75cc8526247d..72c3b7e73da5 100644 --- a/projects/plugins/jetpack/changelog/init-release-cycle +++ b/projects/plugins/jetpack/changelog/init-release-cycle @@ -1,5 +1,5 @@ Significance: patch Type: other -Comment: Init 11.8-a.2 +Comment: Init 11.8-a.6 diff --git a/projects/plugins/jetpack/changelog/init-release-cycle#2 b/projects/plugins/jetpack/changelog/init-release-cycle#2 deleted file mode 100644 index 1b028e2c8f2b..000000000000 --- a/projects/plugins/jetpack/changelog/init-release-cycle#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Init 11.8-a.4 - - diff --git a/projects/plugins/jetpack/changelog/jetpack-ai-block-tweaks b/projects/plugins/jetpack/changelog/jetpack-ai-block-tweaks deleted file mode 100644 index b8f7d576450d..000000000000 --- a/projects/plugins/jetpack/changelog/jetpack-ai-block-tweaks +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -AI Features now have a link to the Forums thread to gather feedback, different icon and simplified way of enabling for testing diff --git a/projects/plugins/jetpack/changelog/jetpack-ai-post-suggestions b/projects/plugins/jetpack/changelog/jetpack-ai-post-suggestions deleted file mode 100644 index 662f8ee42f8d..000000000000 --- a/projects/plugins/jetpack/changelog/jetpack-ai-post-suggestions +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: enhancement - -AI Paragraph block now is aware of the rest of editor canvas and can work without any input diff --git a/projects/plugins/jetpack/changelog/renovate-gridicons-3.x b/projects/plugins/jetpack/changelog/renovate-gridicons-3.x deleted file mode 100644 index 1eaea6a769e8..000000000000 --- a/projects/plugins/jetpack/changelog/renovate-gridicons-3.x +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Updated package dependencies. diff --git a/projects/plugins/jetpack/changelog/renovate-react-router-monorepo b/projects/plugins/jetpack/changelog/renovate-react-router-monorepo deleted file mode 100644 index 1eaea6a769e8..000000000000 --- a/projects/plugins/jetpack/changelog/renovate-react-router-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Updated package dependencies. diff --git a/projects/plugins/jetpack/changelog/renovate-social-logos-2.x b/projects/plugins/jetpack/changelog/renovate-social-logos-2.x deleted file mode 100644 index 1eaea6a769e8..000000000000 --- a/projects/plugins/jetpack/changelog/renovate-social-logos-2.x +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Updated package dependencies. diff --git a/projects/plugins/jetpack/changelog/update-backport-jetpack-11.7.1-changelog b/projects/plugins/jetpack/changelog/update-backport-jetpack-11.7.1-changelog deleted file mode 100644 index 1d6ea43ec1ee..000000000000 --- a/projects/plugins/jetpack/changelog/update-backport-jetpack-11.7.1-changelog +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Jetpack: backport 11.7.1 changelog - - diff --git a/projects/plugins/jetpack/changelog/update-blaze-conditions-masterbar b/projects/plugins/jetpack/changelog/update-blaze-conditions-masterbar deleted file mode 100644 index 9518c0b94f33..000000000000 --- a/projects/plugins/jetpack/changelog/update-blaze-conditions-masterbar +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: other - -Masterbar: update Blaze conditions to rely on the existing method from the package. diff --git a/projects/plugins/jetpack/changelog/update-deprecate-site-blacklisted b/projects/plugins/jetpack/changelog/update-deprecate-site-blacklisted deleted file mode 100644 index 0f1168641c0b..000000000000 --- a/projects/plugins/jetpack/changelog/update-deprecate-site-blacklisted +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: compat - -Add support for the 'connection_disabled' error code. diff --git a/projects/plugins/jetpack/changelog/update-expose-related-posts-show-date-option b/projects/plugins/jetpack/changelog/update-expose-related-posts-show-date-option deleted file mode 100644 index c80c10476d21..000000000000 --- a/projects/plugins/jetpack/changelog/update-expose-related-posts-show-date-option +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: other - -Site Settings API: Expose Jetpack's related posts 'show_date' and 'show_context' options diff --git a/projects/plugins/jetpack/changelog/update-ideopress-fix-fullscreen-option-issue b/projects/plugins/jetpack/changelog/update-ideopress-fix-fullscreen-option-issue deleted file mode 100644 index 95075f00400a..000000000000 --- a/projects/plugins/jetpack/changelog/update-ideopress-fix-fullscreen-option-issue +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: bugfix - -Jetpack: fix the fullscreen option when using videopress shortcode diff --git a/projects/plugins/jetpack/changelog/update-nav-unification-internal-external b/projects/plugins/jetpack/changelog/update-nav-unification-internal-external deleted file mode 100644 index 22765e0128fb..000000000000 --- a/projects/plugins/jetpack/changelog/update-nav-unification-internal-external +++ /dev/null @@ -1,8 +0,0 @@ -Significance: patch -Type: other - -For the admin-menus wpcom API endpoint, treat menu urls pointing back to the site as internal URLs rather than blanking them. - -This means that menu items that previously pointed to the current page due to being blanked, are now more likely to point to an actual page. - - diff --git a/projects/plugins/jetpack/changelog/update-patch-phpcs-usage-for-wpcom-compat b/projects/plugins/jetpack/changelog/update-patch-phpcs-usage-for-wpcom-compat deleted file mode 100644 index 3e238c5456db..000000000000 --- a/projects/plugins/jetpack/changelog/update-patch-phpcs-usage-for-wpcom-compat +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: other -Comment: Move a phpcs ignore so that wpcom doesn't throw linting error. - - diff --git a/projects/plugins/jetpack/composer.json b/projects/plugins/jetpack/composer.json index badd097e8f97..10e2292d30b4 100644 --- a/projects/plugins/jetpack/composer.json +++ b/projects/plugins/jetpack/composer.json @@ -102,7 +102,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackā“„11_8_a_4", + "autoloader-suffix": "f11009ded9fc4592b6a05b61ce272b3c_jetpackā“„11_8_a_6", "allow-plugins": { "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true diff --git a/projects/plugins/jetpack/jetpack.php b/projects/plugins/jetpack/jetpack.php index ba465cc6273e..baacc66ebec5 100644 --- a/projects/plugins/jetpack/jetpack.php +++ b/projects/plugins/jetpack/jetpack.php @@ -4,7 +4,7 @@ * Plugin URI: https://jetpack.com * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things. * Author: Automattic - * Version: 11.8-a.4 + * Version: 11.8-a.6 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -32,7 +32,7 @@ define( 'JETPACK__MINIMUM_WP_VERSION', '6.0' ); define( 'JETPACK__MINIMUM_PHP_VERSION', '5.6' ); -define( 'JETPACK__VERSION', '11.8-a.4' ); +define( 'JETPACK__VERSION', '11.8-a.6' ); /** * Constant used to fetch the connection owner token diff --git a/projects/plugins/jetpack/package.json b/projects/plugins/jetpack/package.json index 2ae48857220b..d153d359b53c 100644 --- a/projects/plugins/jetpack/package.json +++ b/projects/plugins/jetpack/package.json @@ -1,6 +1,6 @@ { "name": "Jetpack", - "version": "11.8.0-a.4", + "version": "11.8.0-a.6", "private": true, "description": "[Jetpack](https://jetpack.com/) is a WordPress plugin that supercharges your self-hosted WordPress site with the awesome cloud power of [WordPress.com](https://wordpress.com).", "homepage": "https://jetpack.com",