diff --git a/changelog.txt b/changelog.txt index 026a32d165..be15058613 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,27 +2,31 @@ Found a bug? Have a great feature idea? Get on GitHub and tell us about it and w Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases -= 2.9.10 - November 17th, 2022 = += 2.9.10.1 - December 13th, 2022 = + +* Fixed: WP_Error class usage within namespace needed to be identified correctly for `\Pods\Pod_Manager`. (@lkraav, @sc0ttkclark) + += 2.9.10 - December 13th, 2022 = * Performance: Major performance improvements have been made to decrease queries in more areas of Pods and reduce overall load on any page. (@sc0ttkclark) +* Added: New WP-CLI tool command: `wp pods tools delete-all-content [--test]` (@sc0ttkclark) +* Added: New WP-CLI tool command: `wp pods tools delete-all-groups-and-fields [--test]` (@sc0ttkclark) +* Added: New WP-CLI tool command: `wp pods tools delete-all-relationship-data [--fields] [--test]` (@sc0ttkclark) +* Added: New WP-CLI tool command: `wp pods tools repair-groups-and-fields [--test]` (@sc0ttkclark) +* Added: Pods Admin > Tools and Pod Resets can now be previewed before you run them. (@sc0ttkclark) * Tweak: Added debug backtrace to DB query errors as an admin, just add `?pods_debug_backtrace=1` to the URL to enable that to find out more details about where the query came from. (@sc0ttkclark) +* Tweak: Relationships related to a Post Type now have an option to specify "Any Status" as an option for which posts to show. (@sc0ttkclark) * Fixed: Advanced filters modal shows empty input fields as expected now for Advanced Content Types. #6949 (@sc0ttkclark) * Fixed: Implemented `num_prefix` in `Pods::ui()` for more customization capabilities. (@sc0ttkclark) * Fixed: Reduce load on block editor screen for Pods Blocks that have no preview. (@sc0ttkclark) * Fixed: PHP 8.0+ compatibility changes have been made to bypass PHP deprecation notices. #6579 (@sc0ttkclark) +* Fixed: All currently known PHP 8.0+ deprecation notices have been resolved. (@sc0ttkclark) * Fixed: Removed `%%%s%%` usage in prepared `LIKE` queries for PodsTermSplitting class. (@sc0ttkclark) - -= 2.9.9 - October 31st, 2022 = - -* Tweak: When a field has moved outside of a group, disallow deleting that group until the Pod has been saved to prevent those fields being removed/orphaned. #6940 #6937 (@zrothauser, @sc0ttkclark) -* Tweak: When registering code-based fields, if you have a relationship field that you are supplying the `'data'` option for, you can now pass in a callable function (not a string or array due to back-compat) to return the options only when the data is needed instead of every page load. (@sc0ttkclark) -* Fixed: Number and currency parsing issues resolved with HTML5 inputs. #6928 #6922 (@JoryHogeveen, @sc0ttkclark) -* Fixed: Add support for `post_thumbnail._src` and `post_thumbnail._url` variations as fallbacks for the correct `post_thumbnail_src` and `post_thumbnail_url` field usage. #6935 (@sc0ttkclark) -* Fixed: Resolve issues saving Pods Pages fields. #6942 (@sc0ttkclark) -* Fixed: Number/currency simple repeatable fields now formats as expected. #6930 #6929 (@JoryHogeveen, @sc0ttkclark) -* Fixed: Update cache group usage and flush to clear Pods post type storage cache options too. (@sc0ttkclark) -* Fixed: Allow 0 as a valid option for relationship values. -* Fixed: Updated compatibility with Custom Post Types UI migration component. +* Fixed: Pods Auto Templates now checks whether a post is password protected (and needs auth) before outputting the template. #6962 (@sc0ttkclark) +* Fixed: Excluded Pods config post types from deletion when post author is deleted. #6938 (@sc0ttkclark) +* Fixed: Settings values now get cached and cleared correctly between saves. #6964 (@sc0ttkclark) +* Fixed: Admin Columns integration no longer throws unaught type errors for field values that contain an array. #6965 #6966 (@therealgilles, @sc0ttkclark) +* Fixed: Block editor inspector controls for Pods Blocks that have dropdowns now show as full width as expected. (@sc0ttkclark) = 2.9.8 - September 29th, 2022 = diff --git a/readme.txt b/readme.txt index 2d6ed9aa27..fab7aaa33f 100644 --- a/readme.txt +++ b/readme.txt @@ -173,6 +173,10 @@ Pods really wouldn't be where it is without all the contributions from our [dono == Changelog == += 2.9.10.1 - December 13th, 2022 = + +* Fixed: WP_Error class usage within namespace needed to be identified correctly for `\Pods\Pod_Manager`. (@lkraav, @sc0ttkclark) + = 2.9.10 - December 13th, 2022 = * Performance: Major performance improvements have been made to decrease queries in more areas of Pods and reduce overall load on any page. (@sc0ttkclark)