From 122013b1891e34d3ebd117529ee149861005610b Mon Sep 17 00:00:00 2001 From: mmtr Date: Fri, 19 Nov 2021 13:23:21 +0100 Subject: [PATCH 1/2] Post List: Release version 0.2.4 --- projects/packages/post-list/CHANGELOG.md | 11 ++++++++++- .../changelog/add-assets-wp_register_script-wrapper | 4 ---- .../post-list/changelog/fix-post-list-quick-edit | 4 ---- .../changelog/fix-post-list-stretched-thumbnail | 4 ---- projects/packages/post-list/src/class-post-list.php | 2 +- 5 files changed, 11 insertions(+), 14 deletions(-) delete mode 100644 projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper delete mode 100644 projects/packages/post-list/changelog/fix-post-list-quick-edit delete mode 100644 projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail diff --git a/projects/packages/post-list/CHANGELOG.md b/projects/packages/post-list/CHANGELOG.md index 8fee18a7fa38f..da4653d50d895 100644 --- a/projects/packages/post-list/CHANGELOG.md +++ b/projects/packages/post-list/CHANGELOG.md @@ -5,13 +5,21 @@ 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.2.3] - 2021-11-02 +## [0.2.4] - 2021-11-19 ### Changed - Set `convertDeprecationsToExceptions` true in PHPUnit config. - Thumbnails only available on "Pages" and "Posts". Share action only when publicize and block-editor supported. - Updated package dependencies. - Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't. +## [0.2.3] - 2021-11-02 +### Fixed +- Fixed the stretched thumbnails when using a non-square image. +- Fixed the broken layout after making a quick edit. + +### Changed +- Updated package dependencies + ## [0.2.2] - 2021-10-08 ### Fixed - Fixed the check for a valid thumbnail @@ -36,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated the default columns displayed on the post and page list screens - Refactored thumbnail preview to function server side. All javascript removed. +[0.2.4]: https://github.com/automattic/jetpack-post-list/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/automattic/jetpack-post-list/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/automattic/jetpack-post-list/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/automattic/jetpack-post-list/compare/v0.2.0...v0.2.1 diff --git a/projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper b/projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper deleted file mode 100644 index c47cb18e82997..0000000000000 --- a/projects/packages/post-list/changelog/add-assets-wp_register_script-wrapper +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: changed - -Updated package dependencies. diff --git a/projects/packages/post-list/changelog/fix-post-list-quick-edit b/projects/packages/post-list/changelog/fix-post-list-quick-edit deleted file mode 100644 index 9e69c7a8a0ed3..0000000000000 --- a/projects/packages/post-list/changelog/fix-post-list-quick-edit +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Ensured that the thumbnail and Share action are included in the quick edit response. diff --git a/projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail b/projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail deleted file mode 100644 index 74ff8eee4e456..0000000000000 --- a/projects/packages/post-list/changelog/fix-post-list-stretched-thumbnail +++ /dev/null @@ -1,4 +0,0 @@ -Significance: patch -Type: fixed - -Crop thumbnail images using the correct aspect ratio diff --git a/projects/packages/post-list/src/class-post-list.php b/projects/packages/post-list/src/class-post-list.php index 7e2c06cf6d5a1..203a8ebc82d94 100644 --- a/projects/packages/post-list/src/class-post-list.php +++ b/projects/packages/post-list/src/class-post-list.php @@ -12,7 +12,7 @@ */ class Post_List { - const PACKAGE_VERSION = '0.2.4-alpha'; + const PACKAGE_VERSION = '0.2.4'; /** * The configuration method that is called from the jetpack-config package. From e21517f032d781c1fd7758fcac2fa819396dd5a7 Mon Sep 17 00:00:00 2001 From: mmtr Date: Fri, 19 Nov 2021 13:50:13 +0100 Subject: [PATCH 2/2] Fix changelog order --- projects/packages/post-list/CHANGELOG.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/projects/packages/post-list/CHANGELOG.md b/projects/packages/post-list/CHANGELOG.md index da4653d50d895..3ddec6edc7515 100644 --- a/projects/packages/post-list/CHANGELOG.md +++ b/projects/packages/post-list/CHANGELOG.md @@ -6,13 +6,6 @@ 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.2.4] - 2021-11-19 -### Changed -- Set `convertDeprecationsToExceptions` true in PHPUnit config. -- Thumbnails only available on "Pages" and "Posts". Share action only when publicize and block-editor supported. -- Updated package dependencies. -- Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't. - -## [0.2.3] - 2021-11-02 ### Fixed - Fixed the stretched thumbnails when using a non-square image. - Fixed the broken layout after making a quick edit. @@ -20,6 +13,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Updated package dependencies +## [0.2.3] - 2021-11-02 +### Changed +- Set `convertDeprecationsToExceptions` true in PHPUnit config. +- Thumbnails only available on "Pages" and "Posts". Share action only when publicize and block-editor supported. +- Updated package dependencies. +- Update PHPUnit configs to include just what needs coverage rather than include everything then try to exclude stuff that doesn't. + ## [0.2.2] - 2021-10-08 ### Fixed - Fixed the check for a valid thumbnail