diff --git a/.changeset/orange-birds-invent.md b/.changeset/orange-birds-invent.md deleted file mode 100644 index b66849c91..000000000 --- a/.changeset/orange-birds-invent.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Adds missing TextAreaControl handler when specifing a `control: 'textarea'` in Component.config.editorFields. - -Adding this configuration to your blocks will render TextAreaControls component in the editor. - -```js -// Component.js - -Component.config = { - name: 'CreateBlockBlockB', - editorFields: { - textArea: { - type: 'string', - label: 'My Message', - location: 'editor', - control: 'textarea' // <--- Render a TextAreaControl field in the Gutenberg editor - }, - }, -}; -``` diff --git a/.changeset/wet-ladybugs-rush.md b/.changeset/wet-ladybugs-rush.md deleted file mode 100644 index c2d1055a7..000000000 --- a/.changeset/wet-ladybugs-rush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/wordpress-plugin': patch ---- - -Bug: Fixes issue with blocks not showing in the block editor when running blockset command on WP >=v6.5 diff --git a/examples/next/block-support/package.json b/examples/next/block-support/package.json index 7e27e96d1..019f1eb42 100644 --- a/examples/next/block-support/package.json +++ b/examples/next/block-support/package.json @@ -23,7 +23,7 @@ "sass": "^1.54.9" }, "devDependencies": { - "@faustwp/block-editor-utils": "0.2.0", + "@faustwp/block-editor-utils": "0.2.1", "@wordpress/base-styles": "^4.41.0", "@wordpress/block-library": "^8.27.0", "@wordpress/scripts": "26.18.0", diff --git a/packages/block-editor-utils/CHANGELOG.md b/packages/block-editor-utils/CHANGELOG.md index 061d8d8bf..ab1f76ea9 100644 --- a/packages/block-editor-utils/CHANGELOG.md +++ b/packages/block-editor-utils/CHANGELOG.md @@ -1,5 +1,29 @@ # @faustwp/block-editor-utils +## 0.2.1 + +### Patch Changes + +- f0543e0: Adds missing TextAreaControl handler when specifing a `control: 'textarea'` in Component.config.editorFields. + + Adding this configuration to your blocks will render TextAreaControls component in the editor. + + ```js + // Component.js + + Component.config = { + name: 'CreateBlockBlockB', + editorFields: { + textArea: { + type: 'string', + label: 'My Message', + location: 'editor', + control: 'textarea', // <--- Render a TextAreaControl field in the Gutenberg editor + }, + }, + }; + ``` + ## 0.2.0 ### Minor Changes diff --git a/packages/block-editor-utils/package.json b/packages/block-editor-utils/package.json index 4f9fcde8e..e8674bf7d 100644 --- a/packages/block-editor-utils/package.json +++ b/packages/block-editor-utils/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/block-editor-utils", - "version": "0.2.0", + "version": "0.2.1", "description": "Faust Block Editor Utils Package", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/plugins/faustwp/CHANGELOG.md b/plugins/faustwp/CHANGELOG.md index 1921b891b..657cb8d18 100644 --- a/plugins/faustwp/CHANGELOG.md +++ b/plugins/faustwp/CHANGELOG.md @@ -1,5 +1,11 @@ # Faust +## 1.3.2 + +### Patch Changes + +- 84076cd: Bug: Fixes issue with blocks not showing in the block editor when running blockset command on WP >=v6.5 + ## 1.3.1 ### Patch Changes diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php index 5bee41161..c35019aa6 100644 --- a/plugins/faustwp/faustwp.php +++ b/plugins/faustwp/faustwp.php @@ -9,7 +9,7 @@ * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: faustwp * Domain Path: /languages - * Version: 1.3.1 + * Version: 1.3.2 * Requires PHP: 7.2 * Requires at least: 5.7 * diff --git a/plugins/faustwp/package.json b/plugins/faustwp/package.json index 6a2539cf6..83bc22e49 100644 --- a/plugins/faustwp/package.json +++ b/plugins/faustwp/package.json @@ -1,5 +1,5 @@ { "name": "@faustwp/wordpress-plugin", - "version": "1.3.1", + "version": "1.3.2", "private": true } diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt index 079480ff9..4c9d41246 100644 --- a/plugins/faustwp/readme.txt +++ b/plugins/faustwp/readme.txt @@ -3,7 +3,7 @@ Contributors: antpb, apmatthe, blakewpe, chriswiegman, claygriffiths, jasonkonen Tags: faustjs, faust, headless, decoupled, composable-architecture Requires at least: 5.7 Tested up to: 6.5 -Stable tag: 1.3.1 +Stable tag: 1.3.2 Requires PHP: 7.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -54,6 +54,12 @@ plugins/faustwp/.wordpress-org/screenshot-3.png == Changelog == += 1.3.2 = + +### Patch Changes + +- 84076cd: Bug: Fixes issue with blocks not showing in the block editor when running blockset command on WP >=v6.5 + = 1.3.1 = ### Patch Changes @@ -70,10 +76,4 @@ plugins/faustwp/.wordpress-org/screenshot-3.png - bced682: Ensure's any related translations will properly load by calling `load_text_domain` -= 1.2.3 = - -### Patch Changes - -- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings. - [View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md) \ No newline at end of file