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
2 changes: 1 addition & 1 deletion .plugin-data
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "1.1.0",
"version": "1.1.1",
"slug": "blockparty-iframe"
}
4 changes: 2 additions & 2 deletions .wordpress-org/blueprints/blueprint.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"pluginData": {
"resource": "git:directory",
"url": "https://github.com/BeAPI/blockparty-iframe",
"ref": "1.1.0",
"refType": "tag"
"ref": "main",
"refType": "branch"
},
"options": {
"activate": true,
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ 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/).

## [1.1.1] - 2026-04-20

### Fixed

- **Dependency alignment**: Bump `@wordpress/icons` to ^12.2.0 so the block editor resolves a single icons package version alongside `@wordpress/block-editor`, `@wordpress/components`, and related packages (avoids duplicate bundles and inconsistent icons).

## [1.1.0] - 2026-01-12

### 🚀 Added
Expand Down Expand Up @@ -125,6 +131,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

---

[1.1.1]: https://github.com/BeAPI/blockparty-iframe/releases/tag/1.1.1
[1.1.0]: https://github.com/BeAPI/blockparty-iframe/releases/tag/1.1.0
[1.0.2]: https://github.com/BeAPI/blockparty-iframe/releases/tag/1.0.2
[1.0.1]: https://github.com/BeAPI/blockparty-iframe/releases/tag/1.0.1
Expand Down
4 changes: 2 additions & 2 deletions blockparty-iframe.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Blockparty Iframe
* Description: Add a block to display an embedded frame in the WordPress editor.
* Version: 1.1.0
* Version: 1.1.1
* Requires at least: 6.7
* Requires PHP: 8.1
* Author: Be API Technical team
Expand All @@ -19,7 +19,7 @@
exit; // Exit if accessed directly.
}

define( 'BLOCKPARTY_IFRAME_VERSION', '1.1.0' );
define( 'BLOCKPARTY_IFRAME_VERSION', '1.1.1' );
define( 'BLOCKPARTY_IFRAME_URL', plugin_dir_url( __FILE__ ) );
define( 'BLOCKPARTY_IFRAME_DIR', plugin_dir_path( __FILE__ ) );
define( 'BLOCKPARTY_IFRAME_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blockparty-iframe",
"version": "1.1.0",
"version": "1.1.1",
"description": "Add a block to display an embedded frame in the WordPress editor.",
"author": "Be API Technical team",
"license": "GPL-2.0-or-later",
Expand Down
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: Be API Technical team
Tags: block, iframe, editor
Tested up to: 6.7
Stable tag: 1.0.0
Stable tag: 1.1.1
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -45,6 +45,9 @@ directory take precedence. For example, `/assets/screenshot-1.png` would win ove

== Changelog ==

= 1.1.1 =
* Align @wordpress/icons with block editor packages (v12) to prevent duplicate dependencies and icon inconsistencies.

= 1.0.0 =
* Release

Expand Down
7 changes: 5 additions & 2 deletions src/blockparty-iframe/block.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,16 @@
"$schema": "https://schemas.wp.org/trunk/block.json",
"apiVersion": 3,
"name": "blockparty/iframe",
"version": "1.1.0",
"version": "1.1.1",
"title": "Iframe",
"category": "widgets",
"description": "Display an embedded frame.",
"example": {},
"supports": {
"align": [ "wide", "full" ],
"align": [
"wide",
"full"
],
"dimensions": {
"aspectRatio": true,
"height": true,
Expand Down
Loading