diff --git a/.changeset/brave-cougars-lie.md b/.changeset/brave-cougars-lie.md deleted file mode 100644 index e1359eec0..000000000 --- a/.changeset/brave-cougars-lie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Fixed the behavior of a request to the `api/faust/auth/token` endpoint on every page load when the toolbar is enabled. We now set a `WP_URL-has-rt` token with a `0` or `1` value that can be read client side (aka, not an `httpOnly` cookie) for determining if there is a logged in user or not. diff --git a/examples/next/app-router/package.json b/examples/next/app-router/package.json index bcee824ad..0041237f0 100644 --- a/examples/next/app-router/package.json +++ b/examples/next/app-router/package.json @@ -13,7 +13,7 @@ "@apollo/client": "^3.8.0", "@apollo/experimental-nextjs-app-support": "^0.8.0", "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", + "@faustwp/core": "^3.0.1", "@faustwp/experimental-app-router": "^0.3.0", "graphql": "^16.7.1", "next": "^14.0.1", diff --git a/examples/next/block-support/package.json b/examples/next/block-support/package.json index e732d2369..db8ff69c4 100644 --- a/examples/next/block-support/package.json +++ b/examples/next/block-support/package.json @@ -14,7 +14,7 @@ "@apollo/client": "^3.8.8", "@faustwp/blocks": "4.0.0", "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", + "@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..bf196dc95 100644 --- a/examples/next/faustwp-getting-started/package.json +++ b/examples/next/faustwp-getting-started/package.json @@ -12,7 +12,7 @@ "dependencies": { "@apollo/client": "^3.6.6", "@faustwp/cli": "^3.0.0", - "@faustwp/core": "^3.0.0", + "@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/faustwp-core/CHANGELOG.md b/packages/faustwp-core/CHANGELOG.md index 478e9f34b..4b2c4ec89 100644 --- a/packages/faustwp-core/CHANGELOG.md +++ b/packages/faustwp-core/CHANGELOG.md @@ -1,5 +1,11 @@ # @faustwp/core +## 3.0.1 + +### Patch Changes + +- 0759959: Fixed the behavior of a request to the `api/faust/auth/token` endpoint on every page load when the toolbar is enabled. We now set a `WP_URL-has-rt` token with a `0` or `1` value that can be read client side (aka, not an `httpOnly` cookie) for determining if there is a logged in user or not. + ## 3.0.0 ### Major Changes diff --git a/packages/faustwp-core/package.json b/packages/faustwp-core/package.json index 5efc54808..2a963be3e 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",