From 87000a37bc820f667a7f08790bb8bb5407ab6a6d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 11:38:48 -0600 Subject: [PATCH] Version Packages (#1726) Co-authored-by: github-actions[bot] --- .changeset/shaggy-cooks-dream.md | 5 ----- .changeset/tame-ears-flash.md | 5 ----- examples/next/app-router/package.json | 2 +- examples/next/block-support/package.json | 2 +- examples/next/faustwp-getting-started/package.json | 2 +- packages/faustwp-core/CHANGELOG.md | 10 ++++++++++ packages/faustwp-core/package.json | 2 +- 7 files changed, 14 insertions(+), 14 deletions(-) delete mode 100644 .changeset/shaggy-cooks-dream.md delete mode 100644 .changeset/tame-ears-flash.md diff --git a/.changeset/shaggy-cooks-dream.md b/.changeset/shaggy-cooks-dream.md deleted file mode 100644 index eb725f6e8..000000000 --- a/.changeset/shaggy-cooks-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': minor ---- - -Added a new `skip` config option to `useAuth` to conditionally invoke the hook diff --git a/.changeset/tame-ears-flash.md b/.changeset/tame-ears-flash.md deleted file mode 100644 index 842fe021d..000000000 --- a/.changeset/tame-ears-flash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/core': patch ---- - -Fixed a bug that made a request to the token endpoint on every page in `@faustwp/core@2.0.0` diff --git a/examples/next/app-router/package.json b/examples/next/app-router/package.json index 22841c781..b263b995e 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.5.1", "@faustwp/cli": "^2.0.0", - "@faustwp/core": "^2.0.0", + "@faustwp/core": "^2.1.0", "@faustwp/experimental-app-router": "^0.2.2", "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 d6862d618..9e81948c5 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": "2.0.0", "@faustwp/cli": "^2.0.0", - "@faustwp/core": "^2.0.0", + "@faustwp/core": "^2.1.0", "@wordpress/base-styles": "^4.38.0", "@wordpress/block-library": "^8.24.0", "classnames": "^2.3.1", diff --git a/examples/next/faustwp-getting-started/package.json b/examples/next/faustwp-getting-started/package.json index 663859509..12880a250 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": "^2.0.0", - "@faustwp/core": "^2.0.0", + "@faustwp/core": "^2.1.0", "@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 853993961..3ed48a18b 100644 --- a/packages/faustwp-core/CHANGELOG.md +++ b/packages/faustwp-core/CHANGELOG.md @@ -1,5 +1,15 @@ # @faustwp/core +## 2.1.0 + +### Minor Changes + +- 085c30d: Added a new `skip` config option to `useAuth` to conditionally invoke the hook + +### Patch Changes + +- 085c30d: Fixed a bug that made a request to the token endpoint on every page in `@faustwp/core@2.0.0` + ## 2.0.0 ### Minor Changes diff --git a/packages/faustwp-core/package.json b/packages/faustwp-core/package.json index d371ad723..bbd09a9b2 100644 --- a/packages/faustwp-core/package.json +++ b/packages/faustwp-core/package.json @@ -1,6 +1,6 @@ { "name": "@faustwp/core", - "version": "2.0.0", + "version": "2.1.0", "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",