Skip to content

Commit

Permalink
Pods 3.2.5 (#7325)
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark authored Jul 19, 2024
2 parents 03f0cd5 + 8b44fda commit 11c5d30
Show file tree
Hide file tree
Showing 14 changed files with 17,890 additions and 47,018 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.16.0
22.5.0
2 changes: 1 addition & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
"@babel/transform-runtime",
"babel-plugin-transform-html-import-to-string",
"@babel/plugin-transform-strict-mode",
"@babel/plugin-proposal-optional-chaining"
"@babel/plugin-transform-optional-chaining"
],
"env": {
"development": {
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ 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.5 - July 19th, 2024 =

* Fixed: Resolve issue with WordPress 6.6 compatibility that caused Pods Admin > Edit Pod and Pods forms to stop working properly on some sites. (@sc0ttkclark, @swissspidy)
* Fixed: Resolve PHP deprecated notices with null being passed into certain htmlspecialchars related functions. (@sc0ttkclark)

= 3.2.4 - July 15th, 2024 =

* Feature: Allow restricting media library for File fields to only showing attachments associated to the current post ID. (@sc0ttkclark)
Expand Down
2 changes: 1 addition & 1 deletion classes/PodsInit.php
Original file line number Diff line number Diff line change
Expand Up @@ -2065,7 +2065,7 @@ public static function object_label_fix( $args, $type = 'post_type' ) {
// Remove HTML tags and strip script/style tag contents.
wp_strip_all_tags(
// Decode potential entities at the first level to so HTML tags can be removed.
htmlspecialchars_decode( $label )
htmlspecialchars_decode( (string) $label )
)
);
}, $labels );
Expand Down
4 changes: 2 additions & 2 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.4
* Version: 3.2.5
* Author: Pods Framework Team
* Author URI: https://pods.io/about/
* Text Domain: pods
Expand Down Expand Up @@ -43,7 +43,7 @@
add_action( 'init', 'pods_deactivate_pods_ui' );
} else {
// Current version.
define( 'PODS_VERSION', '3.2.4' );
define( 'PODS_VERSION', '3.2.5' );

// Current database version, this is the last version the database changed.
define( 'PODS_DB_VERSION', '2.3.5' );
Expand Down
Loading

0 comments on commit 11c5d30

Please sign in to comment.