diff --git a/projects/js-packages/publicize-components/CHANGELOG.md b/projects/js-packages/publicize-components/CHANGELOG.md index 784fa78e9ceb0..0ea6582f9b093 100644 --- a/projects/js-packages/publicize-components/CHANGELOG.md +++ b/projects/js-packages/publicize-components/CHANGELOG.md @@ -5,6 +5,16 @@ 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.53.0] - 2024-05-29 +### Added +- Added tests for manage connections modal and services [#37582] + +### Removed +- Social | Removed sharing buttons info from connections modal [#37593] + +### Fixed +- Social | Hide "Mark as shared" for non-admin authors [#37595] + ## [0.52.0] - 2024-05-27 ### Added - Added tests. [#37516] @@ -702,6 +712,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated package dependencies. [#24470] +[0.53.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.52.0...v0.53.0 [0.52.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.51.1...v0.52.0 [0.51.1]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.51.0...v0.51.1 [0.51.0]: https://github.com/Automattic/jetpack-publicize-components/compare/v0.50.0...v0.51.0 diff --git a/projects/js-packages/publicize-components/changelog/add-social-mmanage-connection-modal-tests b/projects/js-packages/publicize-components/changelog/add-social-mmanage-connection-modal-tests deleted file mode 100644 index 10225e822cec2..0000000000000 --- a/projects/js-packages/publicize-components/changelog/add-social-mmanage-connection-modal-tests +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Added tests for manage connections modal and services diff --git a/projects/js-packages/publicize-components/changelog/update-social-hide-mark-as-shared-for-non-admin-authors b/projects/js-packages/publicize-components/changelog/update-social-hide-mark-as-shared-for-non-admin-authors deleted file mode 100644 index 484757cf9beef..0000000000000 --- a/projects/js-packages/publicize-components/changelog/update-social-hide-mark-as-shared-for-non-admin-authors +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Social | Hide "Mark as shared" for non-admin authors diff --git a/projects/js-packages/publicize-components/changelog/update-social-remove-sharing-buttons-info-from-connections-modal b/projects/js-packages/publicize-components/changelog/update-social-remove-sharing-buttons-info-from-connections-modal deleted file mode 100644 index 5c3990f058e12..0000000000000 --- a/projects/js-packages/publicize-components/changelog/update-social-remove-sharing-buttons-info-from-connections-modal +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: removed - -Social | Removed sharing buttons info from connections modal diff --git a/projects/js-packages/publicize-components/package.json b/projects/js-packages/publicize-components/package.json index 4fa0b74ea448c..2337239109fe0 100644 --- a/projects/js-packages/publicize-components/package.json +++ b/projects/js-packages/publicize-components/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "@automattic/jetpack-publicize-components", - "version": "0.53.0-alpha", + "version": "0.53.0", "description": "A library of JS components required by the Publicize editor plugin", "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/publicize-components/#readme", "bugs": { diff --git a/projects/packages/autoloader/CHANGELOG.md b/projects/packages/autoloader/CHANGELOG.md index 705fa2f2f9488..3d579e6761679 100644 --- a/projects/packages/autoloader/CHANGELOG.md +++ b/projects/packages/autoloader/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). +## [3.0.8] - 2024-05-29 +### Fixed +- `AutoloadGenerator::__construct` no longer pretends `$io` is nullable. That never worked. [#37608] + ## [3.0.7] - 2024-05-06 ### Fixed - Avoid deprecation notices when plugin path is null. [#37174] @@ -360,6 +364,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add Custom Autoloader +[3.0.8]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.7...v3.0.8 [3.0.7]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.6...v3.0.7 [3.0.6]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.5...v3.0.6 [3.0.5]: https://github.com/Automattic/jetpack-autoloader/compare/v3.0.4...v3.0.5 diff --git a/projects/packages/autoloader/changelog/fix-phan-issues-in-autoloader b/projects/packages/autoloader/changelog/fix-phan-issues-in-autoloader deleted file mode 100644 index 973b2c2c4cc08..0000000000000 --- a/projects/packages/autoloader/changelog/fix-phan-issues-in-autoloader +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -`AutoloadGenerator::__construct` no longer pretends `$io` is nullable. That never worked. diff --git a/projects/packages/autoloader/src/AutoloadGenerator.php b/projects/packages/autoloader/src/AutoloadGenerator.php index fd8c864b41f20..594ebb59faec4 100644 --- a/projects/packages/autoloader/src/AutoloadGenerator.php +++ b/projects/packages/autoloader/src/AutoloadGenerator.php @@ -21,7 +21,7 @@ */ class AutoloadGenerator { - const VERSION = '3.0.8-alpha'; + const VERSION = '3.0.8'; /** * IO object. diff --git a/projects/packages/connection/CHANGELOG.md b/projects/packages/connection/CHANGELOG.md index 3bf96d5c7728c..9b0d3fbbbcabd 100644 --- a/projects/packages/connection/CHANGELOG.md +++ b/projects/packages/connection/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.9.0] - 2024-05-29 +### Added +- Move Identity Crisis handling functionality into the package. [#36968] + ## [2.8.6] - 2024-05-28 ### Changed - Internal updates. @@ -1088,6 +1092,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Separate the connection library into its own package. +[2.9.0]: https://github.com/Automattic/jetpack-connection/compare/v2.8.6...v2.9.0 [2.8.6]: https://github.com/Automattic/jetpack-connection/compare/v2.8.5...v2.8.6 [2.8.5]: https://github.com/Automattic/jetpack-connection/compare/v2.8.4...v2.8.5 [2.8.4]: https://github.com/Automattic/jetpack-connection/compare/v2.8.3...v2.8.4 diff --git a/projects/packages/connection/changelog/update-idc-to-connection b/projects/packages/connection/changelog/update-idc-to-connection deleted file mode 100644 index c2a7bf5af8dbc..0000000000000 --- a/projects/packages/connection/changelog/update-idc-to-connection +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Move Identity Crisis handling functionality into the package. diff --git a/projects/packages/connection/src/class-package-version.php b/projects/packages/connection/src/class-package-version.php index 7690c802a1af9..25321261679e5 100644 --- a/projects/packages/connection/src/class-package-version.php +++ b/projects/packages/connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '2.9.0-alpha'; + const PACKAGE_VERSION = '2.9.0'; const PACKAGE_SLUG = 'connection'; diff --git a/projects/packages/connection/src/identity-crisis/class-identity-crisis.php b/projects/packages/connection/src/identity-crisis/class-identity-crisis.php index f216fe5a0e114..989e4264954d3 100644 --- a/projects/packages/connection/src/identity-crisis/class-identity-crisis.php +++ b/projects/packages/connection/src/identity-crisis/class-identity-crisis.php @@ -20,7 +20,7 @@ * * @since automattic/jetpack-identity-crisis:0.2.0 * @since-jetpack 4.4.0 - * @since $$next-version$$ + * @since 2.9.0 */ class Identity_Crisis { /** diff --git a/projects/packages/connection/src/identity-crisis/class-rest-endpoints.php b/projects/packages/connection/src/identity-crisis/class-rest-endpoints.php index 5c0b4a06fe785..0f3842dbf72a4 100644 --- a/projects/packages/connection/src/identity-crisis/class-rest-endpoints.php +++ b/projects/packages/connection/src/identity-crisis/class-rest-endpoints.php @@ -18,7 +18,7 @@ * This class will handle Identity Crisis Endpoints * * @since automattic/jetpack-identity-crisis:0.2.0 - * @since $$next-version$$ + * @since 2.9.0 */ class REST_Endpoints { diff --git a/projects/packages/constants/CHANGELOG.md b/projects/packages/constants/CHANGELOG.md index e4a7fc6ddd4c6..15d729d465dc4 100644 --- a/projects/packages/constants/CHANGELOG.md +++ b/projects/packages/constants/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.0.3] - 2024-05-29 +### Fixed +- Fix phpdoc type on `Constants::set_constant()` value parameter. [#37606] + ## [2.0.2] - 2024-04-30 ### Changed - Internal updates. @@ -166,6 +170,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Finish the constants package +[2.0.3]: https://github.com/Automattic/jetpack-constants/compare/v2.0.2...v2.0.3 [2.0.2]: https://github.com/Automattic/jetpack-constants/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/Automattic/jetpack-constants/compare/v2.0.0...v2.0.1 [2.0.0]: https://github.com/Automattic/jetpack-constants/compare/v1.6.23...v2.0.0 diff --git a/projects/packages/constants/changelog/fix-phan-issues-in-constants-pkg b/projects/packages/constants/changelog/fix-phan-issues-in-constants-pkg deleted file mode 100644 index d592e0686c904..0000000000000 --- a/projects/packages/constants/changelog/fix-phan-issues-in-constants-pkg +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fix phpdoc type on `Constants::set_constant()` value parameter. diff --git a/projects/packages/constants/changelog/update-idc-to-connection b/projects/packages/constants/changelog/update-idc-to-connection deleted file mode 100644 index b3a5985559347..0000000000000 --- a/projects/packages/constants/changelog/update-idc-to-connection +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: fixed -Comment: Insignificant phpdoc adjustment. - - diff --git a/projects/packages/status/CHANGELOG.md b/projects/packages/status/CHANGELOG.md index 805e757145a26..fcf5524972dba 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). +## [3.2.2] - 2024-05-29 +### Changed +- Phab baseline file update. [#36968] + ## [3.2.1] - 2024-05-28 ### Changed - Internal updates. @@ -361,6 +365,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Introduce a status package +[3.2.2]: https://github.com/Automattic/jetpack-status/compare/v3.2.1...v3.2.2 [3.2.1]: https://github.com/Automattic/jetpack-status/compare/v3.2.0...v3.2.1 [3.2.0]: https://github.com/Automattic/jetpack-status/compare/v3.1.0...v3.2.0 [3.1.0]: https://github.com/Automattic/jetpack-status/compare/v3.0.3...v3.1.0 diff --git a/projects/packages/status/changelog/update-idc-to-connection b/projects/packages/status/changelog/update-idc-to-connection deleted file mode 100644 index c77ea485fa524..0000000000000 --- a/projects/packages/status/changelog/update-idc-to-connection +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Phab baseline file update. diff --git a/projects/packages/sync/CHANGELOG.md b/projects/packages/sync/CHANGELOG.md index 41c13b23de7d0..cf6a7486baffa 100644 --- a/projects/packages/sync/CHANGELOG.md +++ b/projects/packages/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). +## [3.0.1] - 2024-05-29 +### Changed +- Remove the 'jetpack-identity-crisis' dependency. [#36968] + ## [3.0.0] - 2024-05-27 ### Removed - Jetpack Sync: Remove 'admin_action_update' hook from Sync Plugins module. [#37488] @@ -1164,6 +1168,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[3.0.1]: https://github.com/Automattic/jetpack-sync/compare/v3.0.0...v3.0.1 [3.0.0]: https://github.com/Automattic/jetpack-sync/compare/v2.16.6...v3.0.0 [2.16.6]: https://github.com/Automattic/jetpack-sync/compare/v2.16.5...v2.16.6 [2.16.5]: https://github.com/Automattic/jetpack-sync/compare/v2.16.4...v2.16.5 diff --git a/projects/packages/sync/changelog/update-idc-to-connection b/projects/packages/sync/changelog/update-idc-to-connection deleted file mode 100644 index a81e4000da338..0000000000000 --- a/projects/packages/sync/changelog/update-idc-to-connection +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Remove the 'jetpack-identity-crisis' dependency. diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index f740093e0655d..5daac8999d9fd 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.0.1-alpha'; + const PACKAGE_VERSION = '3.0.1'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/social/CHANGELOG.md b/projects/plugins/social/CHANGELOG.md index 0b56f83bbc651..f6d6cced71311 100644 --- a/projects/plugins/social/CHANGELOG.md +++ b/projects/plugins/social/CHANGELOG.md @@ -5,6 +5,34 @@ 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). +## 4.3.0 - 2024-05-29 +### Added +- Add connect form/button for connection management [#37196] +- Added a CTA button to create a social note [#36972] +- Added and rendered GlobalNotices component [#37237] +- Added feature flag for new social admin ui [#37134] +- Added more E2E tests [#37046] +- Added the connection modal to the editor [#37405] +- Add Woocommerce event remove_order_items to Jetpack Sync [#33748] +- Disabled the Note config toggles while the API calls are pending [#36872] +- Social: Added add connection modal [#37211] +- Social Admin page: Added connection management component [#37120] +- Social Limits: Added clarification of cycle reset [#37350] + +### Changed +- General: update WordPress version requirements to WordPress 6.4. [#37047] +- General: use wp_admin_notice function introduced in WP 6.4 to display notices. [#37051] +- Remove explicit Plugin Install package dependency. [#37430] +- Remove the 'jetpack-identity-crisis' dependency. [#36968] +- Social | Updated the connection test results endpoint for front-end [#37531] +- Updated package dependencies. [#37147] [#37148] [#37348] [#37379] [#37380] [#37382] +- Update the Social sidebar share post panel to direct non-admin authors to user connection if there is no user connection. [#36976] + +### Fixed +- Adjusted the webpack config so the social icon colours are picked up by PostCSS [#37327] +- Fixed CSS variables not loaded for modals on Social admin page [#37391] +- Fixed timeouts in E2E tests [#37045] + ## 4.2.0 - 2024-04-11 ### Added - Added functions to display share urls [#36328] diff --git a/projects/plugins/social/changelog/add-connection-errors-notice b/projects/plugins/social/changelog/add-connection-errors-notice deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-connection-errors-notice +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-e2e-tests-for-social b/projects/plugins/social/changelog/add-e2e-tests-for-social deleted file mode 100644 index 8b345d7df67fd..0000000000000 --- a/projects/plugins/social/changelog/add-e2e-tests-for-social +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Added more E2E tests diff --git a/projects/plugins/social/changelog/add-is_automattician-check-for-Atomic-sites b/projects/plugins/social/changelog/add-is_automattician-check-for-Atomic-sites deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-is_automattician-check-for-Atomic-sites +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-is_automattician-check-for-Atomic-sites#2 b/projects/plugins/social/changelog/add-is_automattician-check-for-Atomic-sites#2 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-is_automattician-check-for-Atomic-sites#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-lots-of-missing-deps b/projects/plugins/social/changelog/add-lots-of-missing-deps deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-lots-of-missing-deps +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-proxy-endpoints-publicize b/projects/plugins/social/changelog/add-proxy-endpoints-publicize deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-proxy-endpoints-publicize +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-scheduled-updates-sync b/projects/plugins/social/changelog/add-scheduled-updates-sync deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-scheduled-updates-sync +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-scheduled-updates-sync-2 b/projects/plugins/social/changelog/add-scheduled-updates-sync-2 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-scheduled-updates-sync-2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-social-add-connection-modal b/projects/plugins/social/changelog/add-social-add-connection-modal deleted file mode 100644 index ca75984c66759..0000000000000 --- a/projects/plugins/social/changelog/add-social-add-connection-modal +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Social: Added add connection modal diff --git a/projects/plugins/social/changelog/add-social-admin-ui-feature-flag b/projects/plugins/social/changelog/add-social-admin-ui-feature-flag deleted file mode 100644 index db19d8dd40814..0000000000000 --- a/projects/plugins/social/changelog/add-social-admin-ui-feature-flag +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Added feature flag for new social admin ui diff --git a/projects/plugins/social/changelog/add-social-connect-button b/projects/plugins/social/changelog/add-social-connect-button deleted file mode 100644 index 766e0ff8c9e9d..0000000000000 --- a/projects/plugins/social/changelog/add-social-connect-button +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Add connect form/button for connection management diff --git a/projects/plugins/social/changelog/add-social-connection-management-component b/projects/plugins/social/changelog/add-social-connection-management-component deleted file mode 100644 index da50b23232b70..0000000000000 --- a/projects/plugins/social/changelog/add-social-connection-management-component +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Social Admin page: Added connection management component diff --git a/projects/plugins/social/changelog/add-social-connection-management-component#2 b/projects/plugins/social/changelog/add-social-connection-management-component#2 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-social-connection-management-component#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-social-connection-management-editor-fixed b/projects/plugins/social/changelog/add-social-connection-management-editor-fixed deleted file mode 100644 index e69f753689f60..0000000000000 --- a/projects/plugins/social/changelog/add-social-connection-management-editor-fixed +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Added the connection modal to the editor diff --git a/projects/plugins/social/changelog/add-social-connection-management-editor-fixed#2 b/projects/plugins/social/changelog/add-social-connection-management-editor-fixed#2 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-social-connection-management-editor-fixed#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-social-connections-disconnection-dialog b/projects/plugins/social/changelog/add-social-connections-disconnection-dialog deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-social-connections-disconnection-dialog +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-social-disconnect-reconnect-ui b/projects/plugins/social/changelog/add-social-disconnect-reconnect-ui deleted file mode 100644 index 9c121760186eb..0000000000000 --- a/projects/plugins/social/changelog/add-social-disconnect-reconnect-ui +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: added - -Added and rendered GlobalNotices component diff --git a/projects/plugins/social/changelog/add-social-limit-clarification b/projects/plugins/social/changelog/add-social-limit-clarification deleted file mode 100644 index b179e31583b19..0000000000000 --- a/projects/plugins/social/changelog/add-social-limit-clarification +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Social Limits: Added clarification of cycle reset diff --git a/projects/plugins/social/changelog/add-social-notes-cta-button b/projects/plugins/social/changelog/add-social-notes-cta-button deleted file mode 100644 index 0780b24ff612f..0000000000000 --- a/projects/plugins/social/changelog/add-social-notes-cta-button +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Added a CTA button to create a social note diff --git a/projects/plugins/social/changelog/add-sso-classes-connection b/projects/plugins/social/changelog/add-sso-classes-connection deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-sso-classes-connection +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-sync-woo-remove-order-items b/projects/plugins/social/changelog/add-sync-woo-remove-order-items deleted file mode 100644 index 048174b97ff2d..0000000000000 --- a/projects/plugins/social/changelog/add-sync-woo-remove-order-items +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Add Woocommerce event remove_order_items to Jetpack Sync diff --git a/projects/plugins/social/changelog/add-sync-woo-remove-order-items#2 b/projects/plugins/social/changelog/add-sync-woo-remove-order-items#2 deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-sync-woo-remove-order-items#2 +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/add-wordads-blaze b/projects/plugins/social/changelog/add-wordads-blaze deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/add-wordads-blaze +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/fix-phan-comment-errors b/projects/plugins/social/changelog/fix-phan-comment-errors deleted file mode 100644 index 6b993f7441230..0000000000000 --- a/projects/plugins/social/changelog/fix-phan-comment-errors +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: fixed -Comment: Fix phpdoc comments to make Phan happier. No change to functionality. - - diff --git a/projects/plugins/social/changelog/fix-social-admin-modal-css-vars b/projects/plugins/social/changelog/fix-social-admin-modal-css-vars deleted file mode 100644 index 86f64392f5f09..0000000000000 --- a/projects/plugins/social/changelog/fix-social-admin-modal-css-vars +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fixed CSS variables not loaded for modals on Social admin page diff --git a/projects/plugins/social/changelog/fix-social-icon-colours b/projects/plugins/social/changelog/fix-social-icon-colours deleted file mode 100644 index bd70fda8cea92..0000000000000 --- a/projects/plugins/social/changelog/fix-social-icon-colours +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Adjusted the webpack config so the social icon colours are picked up by PostCSS diff --git a/projects/plugins/social/changelog/fix-social-notes-toggle-state b/projects/plugins/social/changelog/fix-social-notes-toggle-state deleted file mode 100644 index 2a9ebdb358a43..0000000000000 --- a/projects/plugins/social/changelog/fix-social-notes-toggle-state +++ /dev/null @@ -1,4 +0,0 @@ -Significance: minor -Type: added - -Disabled the Note config toggles while the API calls are pending diff --git a/projects/plugins/social/changelog/fix-timeout-issues-in-e2e b/projects/plugins/social/changelog/fix-timeout-issues-in-e2e deleted file mode 100644 index 50a42748787a0..0000000000000 --- a/projects/plugins/social/changelog/fix-timeout-issues-in-e2e +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Fixed timeouts in E2E tests diff --git a/projects/plugins/social/changelog/remove-deprecate-errors-class b/projects/plugins/social/changelog/remove-deprecate-errors-class deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/remove-deprecate-errors-class +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/remove-deprecated_offline_omed_methods b/projects/plugins/social/changelog/remove-deprecated_offline_omed_methods deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/remove-deprecated_offline_omed_methods +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/renovate-definitelytyped b/projects/plugins/social/changelog/renovate-definitelytyped deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-definitelytyped +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/renovate-lock-file-maintenance b/projects/plugins/social/changelog/renovate-lock-file-maintenance deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-lock-file-maintenance +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/renovate-major-js-unit-testing-packages b/projects/plugins/social/changelog/renovate-major-js-unit-testing-packages deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-major-js-unit-testing-packages +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/renovate-react-monorepo b/projects/plugins/social/changelog/renovate-react-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-react-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/renovate-wordpress-monorepo b/projects/plugins/social/changelog/renovate-wordpress-monorepo deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-wordpress-monorepo +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/renovate-wordpress-monorepo#2 b/projects/plugins/social/changelog/renovate-wordpress-monorepo#2 deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/plugins/social/changelog/renovate-wordpress-monorepo#2 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/plugins/social/changelog/update-direct-authors-to-user-connection b/projects/plugins/social/changelog/update-direct-authors-to-user-connection deleted file mode 100644 index 1b561bc7a665e..0000000000000 --- a/projects/plugins/social/changelog/update-direct-authors-to-user-connection +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Update the Social sidebar share post panel to direct non-admin authors to user connection if there is no user connection. diff --git a/projects/plugins/social/changelog/update-escape-echoed-variables b/projects/plugins/social/changelog/update-escape-echoed-variables deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-escape-echoed-variables +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-idc-to-connection b/projects/plugins/social/changelog/update-idc-to-connection deleted file mode 100644 index a81e4000da338..0000000000000 --- a/projects/plugins/social/changelog/update-idc-to-connection +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Remove the 'jetpack-identity-crisis' dependency. diff --git a/projects/plugins/social/changelog/update-invite-user-error-response-logging b/projects/plugins/social/changelog/update-invite-user-error-response-logging deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-invite-user-error-response-logging +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-my-jetpack-status-handling b/projects/plugins/social/changelog/update-my-jetpack-status-handling deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-my-jetpack-status-handling +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-plugin-installer-extraction b/projects/plugins/social/changelog/update-plugin-installer-extraction deleted file mode 100644 index 046d85052b70e..0000000000000 --- a/projects/plugins/social/changelog/update-plugin-installer-extraction +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Remove explicit Plugin Install package dependency. diff --git a/projects/plugins/social/changelog/update-remove-identity-crisis-deprecated-code b/projects/plugins/social/changelog/update-remove-identity-crisis-deprecated-code deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-remove-identity-crisis-deprecated-code +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-remove-redundant-sync-action b/projects/plugins/social/changelog/update-remove-redundant-sync-action deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-remove-redundant-sync-action +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-send-post-for-jetpack-published-post b/projects/plugins/social/changelog/update-send-post-for-jetpack-published-post deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-send-post-for-jetpack-published-post +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-social-use-new-endpoint-for-connection-test-results b/projects/plugins/social/changelog/update-social-use-new-endpoint-for-connection-test-results deleted file mode 100644 index b4326fd849987..0000000000000 --- a/projects/plugins/social/changelog/update-social-use-new-endpoint-for-connection-test-results +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Social | Updated the connection test results endpoint for front-end diff --git a/projects/plugins/social/changelog/update-symfony-console b/projects/plugins/social/changelog/update-symfony-console deleted file mode 100644 index 9aa70e3ec1f75..0000000000000 --- a/projects/plugins/social/changelog/update-symfony-console +++ /dev/null @@ -1,5 +0,0 @@ -Significance: patch -Type: changed -Comment: Updated composer.lock. - - diff --git a/projects/plugins/social/changelog/update-use-wp-admin-notice b/projects/plugins/social/changelog/update-use-wp-admin-notice deleted file mode 100644 index 2988ba2249366..0000000000000 --- a/projects/plugins/social/changelog/update-use-wp-admin-notice +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -General: use wp_admin_notice function introduced in WP 6.4 to display notices. diff --git a/projects/plugins/social/changelog/update-wp-requirements-64 b/projects/plugins/social/changelog/update-wp-requirements-64 deleted file mode 100644 index b8c73497d011a..0000000000000 --- a/projects/plugins/social/changelog/update-wp-requirements-64 +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -General: update WordPress version requirements to WordPress 6.4. diff --git a/projects/plugins/social/composer.json b/projects/plugins/social/composer.json index 70c1237e9515b..93a234751686c 100644 --- a/projects/plugins/social/composer.json +++ b/projects/plugins/social/composer.json @@ -84,6 +84,6 @@ "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true }, - "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_3_0_alpha" + "autoloader-suffix": "c4802e05bbcf59fd3b6350e8d3e5482c_socialⓥ4_3_0" } } diff --git a/projects/plugins/social/jetpack-social.php b/projects/plugins/social/jetpack-social.php index a4e4af9be43c8..7776c475d54fc 100644 --- a/projects/plugins/social/jetpack-social.php +++ b/projects/plugins/social/jetpack-social.php @@ -4,7 +4,7 @@ * Plugin Name: Jetpack Social * Plugin URI: https://wordpress.org/plugins/jetpack-social * Description: Share your site’s posts on several social media networks automatically when you publish a new post. - * Version: 4.3.0-alpha + * Version: 4.3.0 * Author: Automattic - Jetpack Social team * Author URI: https://jetpack.com/social/ * License: GPLv2 or later diff --git a/projects/plugins/social/readme.txt b/projects/plugins/social/readme.txt index fcdb677a93762..18fe6d6a8a97b 100644 --- a/projects/plugins/social/readme.txt +++ b/projects/plugins/social/readme.txt @@ -100,27 +100,33 @@ The easiest way is to use the Custom Message option in the publishing options bo 4. Manage your Jetpack Social and other Jetpack plugins from My Jetpack. == Changelog == -### 4.2.0 - 2024-04-11 +### 4.3.0 - 2024-05-29 #### Added -- Added functions to display share urls -- Added options and UI for link formatting -- Added support for comments on Social Notes -- Packages: add version tracking for identity-crisis package. -- Trigger red bubble notification when bad install is detected +- Add connect form/button for connection management +- Added a CTA button to create a social note +- Added and rendered GlobalNotices component +- Added feature flag for new social admin ui +- Added more E2E tests +- Added the connection modal to the editor +- Add Woocommerce event remove_order_items to Jetpack Sync +- Disabled the Note config toggles while the API calls are pending +- Social: Added add connection modal +- Social Admin page: Added connection management component +- Social Limits: Added clarification of cycle reset #### Changed -- Allow multiple paragraphs for Social Notes -- Only show custom media picker for normal posts -- Only show installation errors on plugins page -- Removed the featured image block from the template -- Simplified social network selection for post sharing -- Updated package dependencies. [#36309] [#36325] [#36585] [#36760] [#36761] [#36775] -- Update to the most recent version of Color Studio, 2.6.0. -- Update to the most recent version of the @automattic/calypso-color-schemes package. +- General: update WordPress version requirements to WordPress 6.4. +- General: use wp_admin_notice function introduced in WP 6.4 to display notices. +- Remove explicit Plugin Install package dependency. +- Remove the 'jetpack-identity-crisis' dependency. +- Social | Updated the connection test results endpoint for front-end +- Updated package dependencies. +- Update the Social sidebar share post panel to direct non-admin authors to user connection if there is no user connection. #### Fixed -- Fixed typos -- Prevent enqueuing of admin styles on the frontend +- Adjusted the webpack config so the social icon colours are picked up by PostCSS +- Fixed CSS variables not loaded for modals on Social admin page +- Fixed timeouts in E2E tests == Upgrade Notice ==