Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ 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.3.1 - May 2nd, 2025 =

* Fixed: Resolve issue with `get_block_wrapper_attributes()` usage. (@sc0ttkclark)

= 3.3 - May 1st, 2025 =

* New minimum WP version required: WordPress 6.3+ (previously: WP 6.0+)
Expand Down
2 changes: 1 addition & 1 deletion classes/PodsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public static function attributes( $attributes, $name = null, $type = null, $opt
}

if (pods_render_is_in_block()) {
echo get_block_wrapper_attributes( $final_attributes );
echo ' ' . get_block_wrapper_attributes( $final_attributes );

return;
}
Expand Down
2 changes: 1 addition & 1 deletion includes/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static function( $class_name ) {
$div_classes = implode( ' ', $div_classes );

if ( pods_render_is_in_block() ) {
$attrs = get_block_wrapper_attributes(
$attrs = ' ' . get_block_wrapper_attributes(
array_filter(
[
'id' => $div_id,
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.3.0
* Version: 3.3.1
* 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.3.0' );
define( 'PODS_VERSION', '3.3.1' );

// Current database version, this is the last version the database changed.
define( 'PODS_DB_VERSION', '2.3.5' );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pods",
"version": "3.3.0",
"version": "3.3.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/",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: pods, custom post types, custom taxonomies, content types, custom fields
Requires at least: 6.3
Tested up to: 6.8
Requires PHP: 7.2
Stable tag: 3.3.0
Stable tag: 3.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -182,6 +182,10 @@ Pods really wouldn't be where it is without all the contributions from our [dono

== Changelog ==

= 3.3.1 - May 2nd, 2025 =

* Fixed: Resolve issue with `get_block_wrapper_attributes()` usage. (@sc0ttkclark)

= 3.3 - May 1st, 2025 =

* New minimum WP version required: WordPress 6.3+ (previously: WP 6.0+)
Expand Down
Loading