diff --git a/.changeset/blockset-cleanup-on-failed-extraction.md b/.changeset/blockset-cleanup-on-failed-extraction.md deleted file mode 100644 index f99669046..000000000 --- a/.changeset/blockset-cleanup-on-failed-extraction.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@faustwp/wordpress-plugin": patch ---- - -fix[faustwp]: clean up uploaded blockset zip when extraction fails diff --git a/.changeset/handle-generate-home-url.md b/.changeset/handle-generate-home-url.md deleted file mode 100644 index c53e9b08e..000000000 --- a/.changeset/handle-generate-home-url.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@faustwp/wordpress-plugin": patch ---- - -fix[faustwp]: use home_url() in handle_generate_endpoint so Bedrock-style installs (where WordPress core lives under /wp/) match against the public REQUEST_URI diff --git a/.changeset/hash-equals-secret-comparison.md b/.changeset/hash-equals-secret-comparison.md deleted file mode 100644 index 36a3702a8..000000000 --- a/.changeset/hash-equals-secret-comparison.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@faustwp/wordpress-plugin": patch ---- - -fix[faustwp]: use hash_equals() for constant-time secret key comparison in REST and GraphQL permission callbacks diff --git a/plugins/faustwp/CHANGELOG.md b/plugins/faustwp/CHANGELOG.md index 0db69c513..0e05c61e5 100644 --- a/plugins/faustwp/CHANGELOG.md +++ b/plugins/faustwp/CHANGELOG.md @@ -1,5 +1,13 @@ # Faust +## 1.8.8 + +### Patch Changes + +- 6efeeda: fix[faustwp]: clean up uploaded blockset zip when extraction fails +- b6eebd5: fix[faustwp]: use home_url() in handle_generate_endpoint so Bedrock-style installs (where WordPress core lives under /wp/) match against the public REQUEST_URI +- 5d73ec8: fix[faustwp]: use hash_equals() for constant-time secret key comparison in REST and GraphQL permission callbacks + ## 1.8.7 ### Patch Changes diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php index 34ef1c10a..77eafc8d2 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.8.7 + * Version: 1.8.8 * Requires PHP: 7.4 * Requires at least: 5.7 * Tested up to: 6.9 diff --git a/plugins/faustwp/package.json b/plugins/faustwp/package.json index 3941b576c..1c02da2e5 100644 --- a/plugins/faustwp/package.json +++ b/plugins/faustwp/package.json @@ -1,5 +1,5 @@ { "name": "@faustwp/wordpress-plugin", - "version": "1.8.7", + "version": "1.8.8", "private": true } diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt index a2bd0a5d5..b51721ca5 100644 --- a/plugins/faustwp/readme.txt +++ b/plugins/faustwp/readme.txt @@ -3,7 +3,7 @@ Contributors: antpb, apmatthe, blakewpe, chriswiegman, claygriffiths, colin-murp Tags: faustjs, faust, headless, decoupled, composable-architecture Requires at least: 5.7 Tested up to: 6.9 -Stable tag: 1.8.7 +Stable tag: 1.8.8 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -54,6 +54,14 @@ plugins/faustwp/.wordpress-org/screenshot-3.png == Changelog == += 1.8.8 = + +### Patch Changes + +- 6efeeda: fix[faustwp]: clean up uploaded blockset zip when extraction fails +- b6eebd5: fix[faustwp]: use home_url() in handle_generate_endpoint so Bedrock-style installs (where WordPress core lives under /wp/) match against the public REQUEST_URI +- 5d73ec8: fix[faustwp]: use hash_equals() for constant-time secret key comparison in REST and GraphQL permission callbacks + = 1.8.7 = ### Patch Changes @@ -69,10 +77,4 @@ plugins/faustwp/.wordpress-org/screenshot-3.png - Updated `phpunit/phpunit` from 9.6.22 to 9.6.33 - Updated `symfony/process` from v6.4.15 to v6.4.33 -= 1.8.5 = - -### Patch Changes - -- 6bf8a7e: Add WordPress 6.9 to the CI test matrix and update the plugin "Tested up to" header to 6.9. - [View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md) \ No newline at end of file