diff --git a/.changeset/dry-toys-speak.md b/.changeset/dry-toys-speak.md deleted file mode 100644 index fe6c5bc64..000000000 --- a/.changeset/dry-toys-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Feat: Handle NumberControl fields in the block-editor-utils. diff --git a/.changeset/gold-bags-flow.md b/.changeset/gold-bags-flow.md deleted file mode 100644 index 4ecd01efb..000000000 --- a/.changeset/gold-bags-flow.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'@faustwp/experimental-app-router': patch ---- - -Added the `onLogin` server action to login a user: - -```tsx -import { onLogin } from '@faustwp/experimental-app-router'; - -
-
- - -
- -
- - -
- - -
; -``` diff --git a/.changeset/good-coats-give.md b/.changeset/good-coats-give.md deleted file mode 100644 index 26ec8cf28..000000000 --- a/.changeset/good-coats-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Feat: Handle RadioControl fields in the block-editor-utils. diff --git a/.changeset/heavy-geese-give.md b/.changeset/heavy-geese-give.md deleted file mode 100644 index dfd3126d0..000000000 --- a/.changeset/heavy-geese-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Feat: Handle SelectControl fields in the block-editor-utils. diff --git a/.changeset/many-houses-push.md b/.changeset/many-houses-push.md deleted file mode 100644 index 8701abefb..000000000 --- a/.changeset/many-houses-push.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/cli': patch ---- - -Fixed a regression where an improper exit code was being thrown when 1. the `NEXT_PUBLIC_WORDPRESS_URL` environment variable was not set or 2. the GraphQL endpoint was not available diff --git a/.changeset/quick-nails-listen.md b/.changeset/quick-nails-listen.md deleted file mode 100644 index b68a15b75..000000000 --- a/.changeset/quick-nails-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Feat: Handle TextControl fields in block-editor-utils. diff --git a/.changeset/shiny-steaks-cough.md b/.changeset/shiny-steaks-cough.md deleted file mode 100644 index c70241650..000000000 --- a/.changeset/shiny-steaks-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Feat: Handle ColorControl fields in block-editor-utils diff --git a/.changeset/soft-cooks-peel.md b/.changeset/soft-cooks-peel.md deleted file mode 100644 index af337b22d..000000000 --- a/.changeset/soft-cooks-peel.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/wordpress-plugin': patch ---- - -Fixed a bug in the block editor screen where the preview link was missing the `p` and `previewPathName` query arguments after saving a draft. diff --git a/examples/next/app-router/package.json b/examples/next/app-router/package.json index 39f53e4df..33c8ad79f 100644 --- a/examples/next/app-router/package.json +++ b/examples/next/app-router/package.json @@ -11,9 +11,9 @@ }, "dependencies": { "@apollo/client": "^3.8.0", - "@faustwp/cli": "1.1.1", + "@faustwp/cli": "1.1.3", "@faustwp/core": "1.1.2", - "@faustwp/experimental-app-router": "^0.0.3", + "@faustwp/experimental-app-router": "^0.0.4", "@apollo/experimental-nextjs-app-support": "^0.4.1", "graphql": "^16.7.1", "next": "^13.4.20-canary.18", diff --git a/examples/next/faustwp-getting-started/package.json b/examples/next/faustwp-getting-started/package.json index 23c7b6b77..20b8b7ba6 100644 --- a/examples/next/faustwp-getting-started/package.json +++ b/examples/next/faustwp-getting-started/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@apollo/client": "^3.6.6", - "@faustwp/cli": "1.1.1", + "@faustwp/cli": "1.1.3", "@faustwp/core": "1.1.2", "@wordpress/base-styles": "^4.26.0", "@wordpress/block-library": "^7.19.0", diff --git a/packages/block-editor-utils/CHANGELOG.md b/packages/block-editor-utils/CHANGELOG.md index cf51199f6..69c159ecf 100644 --- a/packages/block-editor-utils/CHANGELOG.md +++ b/packages/block-editor-utils/CHANGELOG.md @@ -1,5 +1,15 @@ # @faustwp/block-editor-utils +## 0.0.3 + +### Patch Changes + +- 457933b: Feat: Handle NumberControl fields in the block-editor-utils. +- 40c836a: Feat: Handle RadioControl fields in the block-editor-utils. +- deb5767: Feat: Handle SelectControl fields in the block-editor-utils. +- db848c4: Feat: Handle TextControl fields in block-editor-utils. +- 1bb5e94: Feat: Handle ColorControl fields in block-editor-utils + ## 0.0.2 ### Patch Changes diff --git a/packages/block-editor-utils/package.json b/packages/block-editor-utils/package.json index d43acf76b..0d429d971 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.0.2", + "version": "0.0.3", "description": "Faust Block Editor Utils Package", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", diff --git a/packages/experimental-app-router/CHANGELOG.md b/packages/experimental-app-router/CHANGELOG.md index 7c12dc8d9..e4a2b67c2 100644 --- a/packages/experimental-app-router/CHANGELOG.md +++ b/packages/experimental-app-router/CHANGELOG.md @@ -1,5 +1,32 @@ # @faustwp/experimental-app-router +## 0.0.4 + +### Patch Changes + +- b2ad517: Added the `onLogin` server action to login a user: + + ```tsx + import { onLogin } from '@faustwp/experimental-app-router'; + +
+
+ + +
+ +
+ + +
+ + +
; + ``` + +- Updated dependencies [b201ba2] + - @faustwp/cli@1.1.3 + ## 0.0.3 ### Patch Changes diff --git a/packages/experimental-app-router/package.json b/packages/experimental-app-router/package.json index ffb7d6171..586c27d28 100644 --- a/packages/experimental-app-router/package.json +++ b/packages/experimental-app-router/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/experimental-app-router", - "version": "0.0.3", + "version": "0.0.4", "description": "Experimental: A Faust package to support Next.js' App Router", "main": "dist/cjs/index.js", "module": "dist/mjs/index.js", @@ -39,7 +39,7 @@ "peerDependencies": { "@apollo/client": ">=3.8.0", "@apollo/experimental-nextjs-app-support": ">=0.3.2", - "@faustwp/cli": ">=1.1.1", + "@faustwp/cli": ">=1.1.3", "@faustwp/core": ">=1.1.2", "next": ">=12.1.6", "react": ">=17.0.2", @@ -48,7 +48,7 @@ "devDependencies": { "@apollo/client": "^3.8.0", "@apollo/experimental-nextjs-app-support": "^0.4.1", - "@faustwp/cli": "^1.1.1", + "@faustwp/cli": "^1.1.3", "@faustwp/core": "^1.1.2", "@testing-library/jest-dom": "^5.17.0", "@types/node": "^20.4.6", diff --git a/packages/faustwp-cli/CHANGELOG.md b/packages/faustwp-cli/CHANGELOG.md index 24c84f676..c9bb104be 100644 --- a/packages/faustwp-cli/CHANGELOG.md +++ b/packages/faustwp-cli/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/cli +## 1.1.3 + +### Patch Changes + +- b201ba2: Fixed a regression where an improper exit code was being thrown when 1. the `NEXT_PUBLIC_WORDPRESS_URL` environment variable was not set or 2. the GraphQL endpoint was not available + ## 1.1.1 ### Patch Changes diff --git a/packages/faustwp-cli/package.json b/packages/faustwp-cli/package.json index 9aad3ba14..39c8aeb91 100644 --- a/packages/faustwp-cli/package.json +++ b/packages/faustwp-cli/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/cli", - "version": "1.1.1", + "version": "1.1.3", "description": "This modules provides a CLI to develop, build, and serve your Faust apps", "main": "dist/index.js", "type": "module", diff --git a/plugins/faustwp/CHANGELOG.md b/plugins/faustwp/CHANGELOG.md index b0110882e..d44486c94 100644 --- a/plugins/faustwp/CHANGELOG.md +++ b/plugins/faustwp/CHANGELOG.md @@ -1,5 +1,11 @@ # Faust +## 1.0.4 + +### Patch Changes + +- fcc6d37: Fixed a bug in the block editor screen where the preview link was missing the `p` and `previewPathName` query arguments after saving a draft. + ## 1.0.3 ### Patch Changes diff --git a/plugins/faustwp/faustwp.php b/plugins/faustwp/faustwp.php index e9029f136..e262c508a 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.0.3 + * Version: 1.0.4 * Requires PHP: 7.2 * Requires at least: 5.7 * diff --git a/plugins/faustwp/package.json b/plugins/faustwp/package.json index 9544f2fac..b9ba038b7 100644 --- a/plugins/faustwp/package.json +++ b/plugins/faustwp/package.json @@ -1,5 +1,5 @@ { "name": "@faustwp/wordpress-plugin", - "version": "1.0.3", + "version": "1.0.4", "private": true } diff --git a/plugins/faustwp/readme.txt b/plugins/faustwp/readme.txt index 9b56b0697..b0a0cf1e1 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.3 -Stable tag: 1.0.3 +Stable tag: 1.0.4 Requires PHP: 7.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -54,22 +54,22 @@ plugins/faustwp/.wordpress-org/screenshot-3.png == Changelog == -= 1.0.3 = += 1.0.4 = ### Patch Changes -- 188bd75: Auto-update enqueued asset versions whenenever the plugin is updated. +- fcc6d37: Fixed a bug in the block editor screen where the preview link was missing the `p` and `previewPathName` query arguments after saving a draft. -= 1.0.2 = += 1.0.3 = ### Patch Changes -- 0c9f9b5: Image URLs (and any URLs with file extensions) are now excluded from the replacement that Faust does in the GraphQL query results. +- 188bd75: Auto-update enqueued asset versions whenenever the plugin is updated. -= 1.0.1 = += 1.0.2 = ### Patch Changes -- 9ed3c40: Bug: Fixed an issue where the preview button could crash the browser +- 0c9f9b5: Image URLs (and any URLs with file extensions) are now excluded from the replacement that Faust does in the GraphQL query results. [View the full changelog](https://github.com/wpengine/faustjs/blob/canary/plugins/faustwp/CHANGELOG.md) \ No newline at end of file