diff --git a/.changeset/cool-stingrays-hammer.md b/.changeset/cool-stingrays-hammer.md deleted file mode 100644 index 9ec78a92b..000000000 --- a/.changeset/cool-stingrays-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/experimental-app-router': patch ---- - -Fixed issue where Faust's route handler failed to retrieve a token when trailingSlash is set to true in next.config.js. diff --git a/.changeset/hungry-yaks-push.md b/.changeset/hungry-yaks-push.md deleted file mode 100644 index 769286464..000000000 --- a/.changeset/hungry-yaks-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Fixed: FaustConfig no longer requires `plugins` or `experimentalPlugins` properties diff --git a/.changeset/lucky-sheep-promise.md b/.changeset/lucky-sheep-promise.md deleted file mode 100644 index 4dc78c482..000000000 --- a/.changeset/lucky-sheep-promise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Fixed issue where on a preview page the user could be stuck in a logout/login loop. diff --git a/.changeset/modern-tools-collect.md b/.changeset/modern-tools-collect.md deleted file mode 100644 index d05963486..000000000 --- a/.changeset/modern-tools-collect.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@faustwp/cli': patch -'@faustwp/wordpress-plugin': patch ---- - -Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings. diff --git a/.changeset/quiet-avocados-turn.md b/.changeset/quiet-avocados-turn.md deleted file mode 100644 index fad1dcd47..000000000 --- a/.changeset/quiet-avocados-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@faustwp/core": patch ---- - -Added `queries` property to FaustTemplate interface. Fixes an error when using multiple queries with TypeScript. diff --git a/.changeset/smooth-dogs-cough.md b/.changeset/smooth-dogs-cough.md deleted file mode 100644 index dd620f996..000000000 --- a/.changeset/smooth-dogs-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@faustwp/core": patch ---- - -Faust Toolbar will now respect the Show Avatars setting in WordPress. Requires WPGraphQL version 1.22.1 or higher. diff --git a/.changeset/soft-swans-chew.md b/.changeset/soft-swans-chew.md deleted file mode 100644 index ddda5388e..000000000 --- a/.changeset/soft-swans-chew.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Implemented ErrorLoggingLink class to capture GraphQL errors and server errors, providing enhanced error handling and logging capabilities. diff --git a/examples/next/app-router/package.json b/examples/next/app-router/package.json index bcee824ad..319204c86 100644 --- a/examples/next/app-router/package.json +++ b/examples/next/app-router/package.json @@ -12,9 +12,9 @@ "dependencies": { "@apollo/client": "^3.8.0", "@apollo/experimental-nextjs-app-support": "^0.8.0", - "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", - "@faustwp/experimental-app-router": "^0.3.0", + "@faustwp/cli": "^3.0.1", + "@faustwp/core": "^3.0.1", + "@faustwp/experimental-app-router": "^0.3.1", "graphql": "^16.7.1", "next": "^14.0.1", "react": "^18.2.0", diff --git a/examples/next/block-support/package.json b/examples/next/block-support/package.json index e732d2369..035cf08cf 100644 --- a/examples/next/block-support/package.json +++ b/examples/next/block-support/package.json @@ -13,8 +13,8 @@ "dependencies": { "@apollo/client": "^3.8.8", "@faustwp/blocks": "4.0.0", - "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", + "@faustwp/cli": "^3.0.1", + "@faustwp/core": "^3.0.1", "classnames": "^2.3.1", "graphql": "^16.8.1", "next": "^14.0.3", diff --git a/examples/next/faustwp-getting-started/package.json b/examples/next/faustwp-getting-started/package.json index 948c8aa2c..847e4e588 100644 --- a/examples/next/faustwp-getting-started/package.json +++ b/examples/next/faustwp-getting-started/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@apollo/client": "^3.6.6", - "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", + "@faustwp/cli": "^3.0.1", + "@faustwp/core": "^3.0.1", "@wordpress/base-styles": "^4.36.0", "@wordpress/block-library": "^7.19.0", "classnames": "^2.3.1", diff --git a/packages/experimental-app-router/CHANGELOG.md b/packages/experimental-app-router/CHANGELOG.md index 33e60e659..709e5a6a3 100644 --- a/packages/experimental-app-router/CHANGELOG.md +++ b/packages/experimental-app-router/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/experimental-app-router +## 0.3.1 + +### Patch Changes + +- aee31a5: Fixed issue where Faust's route handler failed to retrieve a token when trailingSlash is set to true in next.config.js. + ## 0.3.0 ### Minor Changes diff --git a/packages/experimental-app-router/package.json b/packages/experimental-app-router/package.json index 6160ba591..0705510e7 100644 --- a/packages/experimental-app-router/package.json +++ b/packages/experimental-app-router/package.json @@ -1,7 +1,7 @@ { "name": "@faustwp/experimental-app-router", "type": "module", - "version": "0.3.0", + "version": "0.3.1", "description": "Experimental: A Faust package to support Next.js' App Router", "exports": { ".": "./dist/index.js", @@ -58,8 +58,8 @@ "devDependencies": { "@apollo/client": "^3.8.0", "@apollo/experimental-nextjs-app-support": "^0.8.0", - "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", + "@faustwp/cli": "^3.0.1", + "@faustwp/core": "^3.0.1", "@testing-library/jest-dom": "^5.17.0", "@types/node": "^20.4.6", "concurrently": "^8.2.0", diff --git a/packages/faustwp-cli/CHANGELOG.md b/packages/faustwp-cli/CHANGELOG.md index 92b9d8d7e..d76ec3dc0 100644 --- a/packages/faustwp-cli/CHANGELOG.md +++ b/packages/faustwp-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/cli +## 3.0.1 + +### Patch Changes + +- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings. + ## 3.0.0 ### Major Changes diff --git a/packages/faustwp-cli/package.json b/packages/faustwp-cli/package.json index c71d3917f..f7246e7c3 100644 --- a/packages/faustwp-cli/package.json +++ b/packages/faustwp-cli/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/cli", - "version": "3.0.0", + "version": "3.0.1", "description": "This modules provides a CLI to develop, build, and serve your Faust apps", "main": "dist/index.js", "type": "module", diff --git a/packages/faustwp-core/CHANGELOG.md b/packages/faustwp-core/CHANGELOG.md index 478e9f34b..65dd1980a 100644 --- a/packages/faustwp-core/CHANGELOG.md +++ b/packages/faustwp-core/CHANGELOG.md @@ -1,5 +1,15 @@ # @faustwp/core +## 3.0.1 + +### Patch Changes + +- a54ce69: Fixed: FaustConfig no longer requires `plugins` or `experimentalPlugins` properties +- 50c30cb: Fixed issue where on a preview page the user could be stuck in a logout/login loop. +- 16b2384: Added `queries` property to FaustTemplate interface. Fixes an error when using multiple queries with TypeScript. +- 8e1b5db: Faust Toolbar will now respect the Show Avatars setting in WordPress. Requires WPGraphQL version 1.22.1 or higher. +- 9a43d50: Implemented ErrorLoggingLink class to capture GraphQL errors and server errors, providing enhanced error handling and logging capabilities. + ## 3.0.0 ### Major Changes diff --git a/packages/faustwp-core/package.json b/packages/faustwp-core/package.json index 6df45e0ee..b6c2a9c8e 100644 --- a/packages/faustwp-core/package.json +++ b/packages/faustwp-core/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/core", - "version": "3.0.0", + "version": "3.0.1", "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 ed936c2d6..23e89b974 100644 --- a/plugins/faustwp/CHANGELOG.md +++ b/plugins/faustwp/CHANGELOG.md @@ -1,5 +1,11 @@ # Faust +## 1.2.3 + +### Patch Changes + +- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings. + ## 1.2.2 ### Patch Changes diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php index 1e01e311c..79f8648bf 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.2.2 + * Version: 1.2.3 * Requires PHP: 7.2 * Requires at least: 5.7 * diff --git a/plugins/faustwp/package.json b/plugins/faustwp/package.json index 7caf61590..c165a74a6 100644 --- a/plugins/faustwp/package.json +++ b/plugins/faustwp/package.json @@ -1,5 +1,5 @@ { "name": "@faustwp/wordpress-plugin", - "version": "1.2.2", + "version": "1.2.3", "private": true } diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt index be24f54e1..8ce0c354e 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.2.2 +Stable tag: 1.2.3 Requires PHP: 7.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -52,31 +52,24 @@ plugins/faustwp/.wordpress-org/screenshot-1.png plugins/faustwp/.wordpress-org/screenshot-2.png plugins/faustwp/.wordpress-org/screenshot-3.png -== Changelog == - -= 1.2.2 = - -### Patch Changes - -- 47f6bd0: Faust now warns you if the secret key in your environment is invalid or incorrect. - -= 1.2.1 = - -### Patch Changes - -- 05cc940: Fix: swap traditional custom post type URLs in WordPress admin for the headless frontend custom post type URLs. - -= 1.2.0 = - -### Minor Changes - -- 5f78b15: Requests to robots.txt on the WordPress site are now accessible and are no longer redirected to the front-end site. -- c163fa5: Added support for anonymous opt-in telemetry. Previously this functionality was in the Faust CLI package, but has been moved to the WordPress plugin instead. All telemetry collection is optional and anonymous, and it is disabled by default. If you were previously opted in from Faust CLI, once you update the Faust CLI packages your site will no longer send telemetry data unless you opt in again from the WordPress plugin. - -### Patch Changes - -- 205fb09: Improved plugin's process for handling blockset file uploads by leveraging WordPress' native [unzip_file](https://developer.wordpress.org/reference/functions/unzip_file/) function. -- 41a6d9c: Fixed issue where term URIs were rewritten from relative to absolute during GraphQL requests when they should not have been. This was causing nodeByUri queries for terms to fail. -- e725bda: Adds phpstan to CI/CD workflow. Runs as part of the lint step. - +== Changelog == + += 1.2.3 = + +### Patch Changes + +- 4724719: Faust now errors if the NEXT_PUBLIC_WORDPRESS_URL matches the Headless URL in Faust Plugin settings. + += 1.2.2 = + +### Patch Changes + +- 47f6bd0: Faust now warns you if the secret key in your environment is invalid or incorrect. + += 1.2.1 = + +### Patch Changes + +- 05cc940: Fix: swap traditional custom post type URLs in WordPress admin for the headless frontend custom post type URLs. + [View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md) \ No newline at end of file