From 8f1164b72c80b645e741b7698455576374a576fa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 24 Jun 2024 12:27:30 +0000 Subject: [PATCH] Version Packages --- .changeset/heavy-rats-enjoy.md | 5 ---- .changeset/orange-birds-invent.md | 23 ------------------ .changeset/wet-ladybugs-rush.md | 5 ---- examples/next/app-router/package.json | 2 +- examples/next/block-support/package.json | 4 ++-- .../next/faustwp-getting-started/package.json | 2 +- packages/block-editor-utils/CHANGELOG.md | 24 +++++++++++++++++++ packages/block-editor-utils/package.json | 2 +- packages/faustwp-core/CHANGELOG.md | 6 +++++ packages/faustwp-core/package.json | 2 +- plugins/faustwp/CHANGELOG.md | 6 +++++ plugins/faustwp/faustwp.php | 2 +- plugins/faustwp/package.json | 2 +- plugins/faustwp/readme.txt | 14 +++++------ 14 files changed, 51 insertions(+), 48 deletions(-) delete mode 100644 .changeset/heavy-rats-enjoy.md delete mode 100644 .changeset/orange-birds-invent.md delete mode 100644 .changeset/wet-ladybugs-rush.md diff --git a/.changeset/heavy-rats-enjoy.md b/.changeset/heavy-rats-enjoy.md deleted file mode 100644 index 376401c28..000000000 --- a/.changeset/heavy-rats-enjoy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Bug: Fixes issue with review detection via query string is too greedy and catches non WP previews 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/app-router/package.json b/examples/next/app-router/package.json index 133c76ae2..7f7606aa3 100644 --- a/examples/next/app-router/package.json +++ b/examples/next/app-router/package.json @@ -13,7 +13,7 @@ "@apollo/client": "^3.8.0", "@apollo/experimental-nextjs-app-support": "^0.8.0", "@faustwp/cli": "^3.0.2", - "@faustwp/core": "^3.0.1", + "@faustwp/core": "^3.0.3", "@faustwp/experimental-app-router": "^0.3.1", "graphql": "^16.7.1", "next": "^14.2.3", diff --git a/examples/next/block-support/package.json b/examples/next/block-support/package.json index 7e27e96d1..e1cb9a999 100644 --- a/examples/next/block-support/package.json +++ b/examples/next/block-support/package.json @@ -14,7 +14,7 @@ "@apollo/client": "^3.8.8", "@faustwp/blocks": "4.0.0", "@faustwp/cli": "^3.0.2", - "@faustwp/core": "^3.0.1", + "@faustwp/core": "^3.0.3", "classnames": "^2.3.1", "graphql": "^16.8.1", "next": "^14.2.3", @@ -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/examples/next/faustwp-getting-started/package.json b/examples/next/faustwp-getting-started/package.json index a9320b463..b5ff21b5c 100644 --- a/examples/next/faustwp-getting-started/package.json +++ b/examples/next/faustwp-getting-started/package.json @@ -12,7 +12,7 @@ "dependencies": { "@apollo/client": "^3.10.4", "@faustwp/cli": "^3.0.2", - "@faustwp/core": "^3.0.1", + "@faustwp/core": "^3.0.3", "@wordpress/base-styles": "^4.49.0", "@wordpress/block-library": "^7.19.0", "classnames": "^2.5.1", diff --git a/packages/block-editor-utils/CHANGELOG.md b/packages/block-editor-utils/CHANGELOG.md index 061d8d8bf..a0d0e860d 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 + +- f0543e0e: 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/packages/faustwp-core/CHANGELOG.md b/packages/faustwp-core/CHANGELOG.md index 65dd1980a..985980047 100644 --- a/packages/faustwp-core/CHANGELOG.md +++ b/packages/faustwp-core/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/core +## 3.0.3 + +### Patch Changes + +- beb546a5: Bug: Fixes issue with review detection via query string is too greedy and catches non WP previews + ## 3.0.1 ### Patch Changes diff --git a/packages/faustwp-core/package.json b/packages/faustwp-core/package.json index b6c2a9c8e..3d594a13c 100644 --- a/packages/faustwp-core/package.json +++ b/packages/faustwp-core/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/core", - "version": "3.0.1", + "version": "3.0.3", "description": "Faust is a framework that aims to make headless WordPress as streamlined as classic WordPress for both developers and publishers", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/plugins/faustwp/CHANGELOG.md b/plugins/faustwp/CHANGELOG.md index 1921b891b..070e07dac 100644 --- a/plugins/faustwp/CHANGELOG.md +++ b/plugins/faustwp/CHANGELOG.md @@ -1,5 +1,11 @@ # Faust +## 1.3.2 + +### Patch Changes + +- 84076cd1: 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..b9367d72d 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 + +- 84076cd1: 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