From 93355c7bc5b51ff3922e91f9f532072921ca0820 Mon Sep 17 00:00:00 2001 From: Scott Kingsley Clark Date: Fri, 29 Mar 2024 11:11:20 -0500 Subject: [PATCH] Pods 3.2.1 --- changelog.txt | 7 +++++++ init.php | 4 ++-- package.json | 2 +- readme.txt | 7 +++++++ 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 557d05125f..09d91ad853 100644 --- a/changelog.txt +++ b/changelog.txt @@ -2,6 +2,13 @@ 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 += 3.2.1 - March 29th, 2024 = + +* Performance: The Advanced Filters popup now uses Autocomplete for relationship fields to improve performance for large itemsets. FYI filters are a feature in the Manage Content UI for Advanced Content Types only. (@sc0ttkclark) +* Fixed: Conditional logic for display callbacks 'allowed' field now showing when choosing the Customized option. (@sc0ttkclark) +* Fixed: PHP 8.1 compatibility fix for null values passed to esc_* functions in WP. (@sc0ttkclark) +* Fixed: PHP 8.1 compatibility fix for html_entity_decode. (@sc0ttkclark) + = 3.2.0 - March 25th, 2024 = * Feature: New support for Custom Field revisions in Pods that are Post Types that use Meta storage. You can optionally enable the feature per-pod or per-field. #7265 (@sc0ttkclark) diff --git a/init.php b/init.php index 87bee2e90d..79119c6132 100644 --- a/init.php +++ b/init.php @@ -10,7 +10,7 @@ * Plugin Name: Pods - Custom Content Types and Fields * Plugin URI: https://pods.io/ * Description: Pods is a framework for creating, managing, and deploying customized content types and fields - * Version: 3.2.1-a-1 + * Version: 3.2.1 * Author: Pods Framework Team * Author URI: https://pods.io/about/ * Text Domain: pods @@ -43,7 +43,7 @@ add_action( 'init', 'pods_deactivate_pods_ui' ); } else { // Current version. - define( 'PODS_VERSION', '3.2.1-a-1' ); + define( 'PODS_VERSION', '3.2.1' ); // Current database version, this is the last version the database changed. define( 'PODS_DB_VERSION', '2.3.5' ); diff --git a/package.json b/package.json index fe14c281fc..1dd980dc24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pods", - "version": "3.2.1-a-1", + "version": "3.2.1", "description": "Pods is a development framework for creating, extending, managing, and deploying customized content types in WordPress.", "author": "Pods Foundation, Inc", "homepage": "https://pods.io/", diff --git a/readme.txt b/readme.txt index 5e83b217e0..fb823dcd20 100644 --- a/readme.txt +++ b/readme.txt @@ -182,6 +182,13 @@ Pods really wouldn't be where it is without all the contributions from our [dono == Changelog == += 3.2.1 - March 29th, 2024 = + +* Performance: The Advanced Filters popup now uses Autocomplete for relationship fields to improve performance for large itemsets. FYI filters are a feature in the Manage Content UI for Advanced Content Types only. (@sc0ttkclark) +* Fixed: Conditional logic for display callbacks 'allowed' field now showing when choosing the Customized option. (@sc0ttkclark) +* Fixed: PHP 8.1 compatibility fix for null values passed to esc_* functions in WP. (@sc0ttkclark) +* Fixed: PHP 8.1 compatibility fix for html_entity_decode. (@sc0ttkclark) + = 3.2.0 - March 25th, 2024 = * Feature: New support for Custom Field revisions in Pods that are Post Types that use Meta storage. You can optionally enable the feature per-pod or per-field. #7265 (@sc0ttkclark)