From d2e4cb2fa4e3ab589fd6669a996c50d1a7e7d2d7 Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Wed, 3 Dec 2025 13:28:40 -0500 Subject: [PATCH 1/4] chore: Testing with WordPress 6.9 --- .changeset/wp-6.9-support.md | 5 ++++ plugins/faustwp/faustwp.php | 2 +- plugins/faustwp/readme.txt | 46 ++++++++++++++++++------------------ 3 files changed, 29 insertions(+), 24 deletions(-) create mode 100644 .changeset/wp-6.9-support.md diff --git a/.changeset/wp-6.9-support.md b/.changeset/wp-6.9-support.md new file mode 100644 index 000000000..16e21b40e --- /dev/null +++ b/.changeset/wp-6.9-support.md @@ -0,0 +1,5 @@ +--- +"@faustwp/wordpress-plugin": patch +--- + +Tested Faust on WordPress 6.9 diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php index 23bf3a5c7..2955d4483 100644 --- a/plugins/faustwp/faustwp.php +++ b/plugins/faustwp/faustwp.php @@ -12,7 +12,7 @@ * Version: 1.8.4 * Requires PHP: 7.4 * Requires at least: 5.7 - * Tested up to: 6.8.1 + * Tested up to: 6.9 * Update URI: false * * @package FaustWP diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt index 678e9f83a..753b9e38d 100644 --- a/plugins/faustwp/readme.txt +++ b/plugins/faustwp/readme.txt @@ -2,7 +2,7 @@ Contributors: antpb, apmatthe, blakewpe, chriswiegman, claygriffiths, colin-murphy, jasonkonen, joefusco, markkelnar, matthewguywright, mindctrl, modernnerd, rfmeier, TeresaGobble, thdespou, wpengine, Tags: faustjs, faust, headless, decoupled, composable-architecture Requires at least: 5.7 -Tested up to: 6.8.1 +Tested up to: 6.9 Stable tag: 1.8.4 Requires PHP: 7.4 License: GPLv2 or later @@ -52,26 +52,26 @@ plugins/faustwp/.wordpress-org/screenshot-1.png plugins/faustwp/.wordpress-org/screenshot-2.png plugins/faustwp/.wordpress-org/screenshot-3.png -== Changelog == - -= 1.8.4 = - -### Patch Changes - -- 5ce074a: Tested Faust on WordPress 6.8.1 -- 8684b83: Fixed issue in content_replacement when site_url() contains port - -= 1.8.3 = - -### Patch Changes - -- 089ea0a: Fix for adding assets to the correct release for Github Actions. - Small fix for Github actions to upload assets to the correct release - -= 1.8.2 = - -### Patch Changes - -- b1898f8: Fix for adding assets to the correct release for Github Actions. - +== Changelog == + += 1.8.4 = + +### Patch Changes + +- 5ce074a: Tested Faust on WordPress 6.8.1 +- 8684b83: Fixed issue in content_replacement when site_url() contains port + += 1.8.3 = + +### Patch Changes + +- 089ea0a: Fix for adding assets to the correct release for Github Actions. + Small fix for Github actions to upload assets to the correct release + += 1.8.2 = + +### Patch Changes + +- b1898f8: Fix for adding assets to the correct release for Github Actions. + [View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md) \ No newline at end of file From 8278ba37890d3413d859c650d0aa3c990f786a2e Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Tue, 10 Feb 2026 10:48:31 -0500 Subject: [PATCH 2/4] ci: add WordPress 6.9 to unit test matrix Add WordPress 6.9 to the CI test matrix to verify compatibility with the latest WordPress version. --- .github/workflows/unit-test-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test-plugin.yml b/.github/workflows/unit-test-plugin.yml index 48fb6141e..412deac26 100644 --- a/.github/workflows/unit-test-plugin.yml +++ b/.github/workflows/unit-test-plugin.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - wordpress: [ '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2'] + wordpress: [ '6.9', '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2'] steps: - name: Checkout uses: actions/checkout@v4 From 2abfff4a00ef1086102d5de52e1530a711b75633 Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Tue, 10 Feb 2026 11:21:37 -0500 Subject: [PATCH 3/4] Drop lowest WP version --- .github/workflows/unit-test-plugin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-test-plugin.yml b/.github/workflows/unit-test-plugin.yml index 412deac26..f899a67c8 100644 --- a/.github/workflows/unit-test-plugin.yml +++ b/.github/workflows/unit-test-plugin.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - wordpress: [ '6.9', '6.8', '6.7', '6.6', '6.5', '6.4', '6.3', '6.2'] + wordpress: [ '6.9', '6.8', '6.7', '6.6', '6.5', '6.4', '6.3' ] steps: - name: Checkout uses: actions/checkout@v4 From a737631ed31e0d4fd514c1298d8d7ae3f2ea24ed Mon Sep 17 00:00:00 2001 From: Joe Fusco Date: Tue, 10 Feb 2026 11:32:34 -0500 Subject: [PATCH 4/4] Update .changeset/wp-6.9-support.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .changeset/wp-6.9-support.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/wp-6.9-support.md b/.changeset/wp-6.9-support.md index 16e21b40e..4c698dd38 100644 --- a/.changeset/wp-6.9-support.md +++ b/.changeset/wp-6.9-support.md @@ -2,4 +2,4 @@ "@faustwp/wordpress-plugin": patch --- -Tested Faust on WordPress 6.9 +Add WordPress 6.9 to the CI test matrix and update the plugin "Tested up to" header to 6.9.