Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jun 7, 2024
1 parent 84076cd commit 76afc3f
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 39 deletions.
23 changes: 0 additions & 23 deletions .changeset/orange-birds-invent.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-ladybugs-rush.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/next/block-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
24 changes: 24 additions & 0 deletions packages/block-editor-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/block-editor-utils/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions plugins/faustwp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/faustwp.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down
2 changes: 1 addition & 1 deletion plugins/faustwp/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@faustwp/wordpress-plugin",
"version": "1.3.1",
"version": "1.3.2",
"private": true
}
14 changes: 7 additions & 7 deletions plugins/faustwp/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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)

0 comments on commit 76afc3f

Please sign in to comment.