From 6b48533038078a152e8bf8b05b5538c5d6ce8d50 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 20 Sep 2023 08:49:39 -0500 Subject: [PATCH] Version Packages (#1578) Co-authored-by: github-actions[bot] --- .changeset/chilled-teachers-brush.md | 5 ----- .changeset/curly-toes-cross.md | 6 ------ .changeset/silent-impalas-repair.md | 5 ----- .changeset/small-planets-share.md | 5 ----- examples/next/app-router/package.json | 2 +- packages/block-editor-utils/CHANGELOG.md | 7 +++++++ packages/block-editor-utils/package.json | 2 +- packages/experimental-app-router/CHANGELOG.md | 10 ++++++++++ packages/experimental-app-router/package.json | 2 +- 9 files changed, 20 insertions(+), 24 deletions(-) delete mode 100644 .changeset/chilled-teachers-brush.md delete mode 100644 .changeset/curly-toes-cross.md delete mode 100644 .changeset/silent-impalas-repair.md delete mode 100644 .changeset/small-planets-share.md diff --git a/.changeset/chilled-teachers-brush.md b/.changeset/chilled-teachers-brush.md deleted file mode 100644 index 5a4058901..000000000 --- a/.changeset/chilled-teachers-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/experimental-app-router': patch ---- - -Fixed an issue where the Apollo Client was being shipped to the browser client bundle resulting in large bundle sizes (150kb+). For more context: https://github.com/apollographql/apollo-client-nextjs/issues/95 diff --git a/.changeset/curly-toes-cross.md b/.changeset/curly-toes-cross.md deleted file mode 100644 index 6cc256e8f..000000000 --- a/.changeset/curly-toes-cross.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@faustwp/block-editor-utils": patch ---- - -Feat: Add `CheckboxControl` field in `block-editor-utils`. - diff --git a/.changeset/silent-impalas-repair.md b/.changeset/silent-impalas-repair.md deleted file mode 100644 index b4b595071..000000000 --- a/.changeset/silent-impalas-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/experimental-app-router': minor ---- - -**BREAKING**: Removed `cjs` support. The experimental app router package now is ESM only. diff --git a/.changeset/small-planets-share.md b/.changeset/small-planets-share.md deleted file mode 100644 index 790d65dca..000000000 --- a/.changeset/small-planets-share.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@faustwp/block-editor-utils': patch ---- - -Feat: Add `RangeControl` field in `block-editor-utils`. diff --git a/examples/next/app-router/package.json b/examples/next/app-router/package.json index 33c8ad79f..5b5617473 100644 --- a/examples/next/app-router/package.json +++ b/examples/next/app-router/package.json @@ -13,7 +13,7 @@ "@apollo/client": "^3.8.0", "@faustwp/cli": "1.1.3", "@faustwp/core": "1.1.2", - "@faustwp/experimental-app-router": "^0.0.4", + "@faustwp/experimental-app-router": "^0.1.0", "@apollo/experimental-nextjs-app-support": "^0.4.1", "graphql": "^16.7.1", "next": "^13.4.20-canary.18", diff --git a/packages/block-editor-utils/CHANGELOG.md b/packages/block-editor-utils/CHANGELOG.md index 69c159ecf..5cccf2200 100644 --- a/packages/block-editor-utils/CHANGELOG.md +++ b/packages/block-editor-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @faustwp/block-editor-utils +## 0.0.4 + +### Patch Changes + +- ae69cfb: Feat: Add `CheckboxControl` field in `block-editor-utils`. +- ee8c08e: Feat: Add `RangeControl` field in `block-editor-utils`. + ## 0.0.3 ### Patch Changes diff --git a/packages/block-editor-utils/package.json b/packages/block-editor-utils/package.json index 095bc7137..b8a323b8d 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.3", + "version": "0.0.4", "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 e4a2b67c2..e00eb53d6 100644 --- a/packages/experimental-app-router/CHANGELOG.md +++ b/packages/experimental-app-router/CHANGELOG.md @@ -1,5 +1,15 @@ # @faustwp/experimental-app-router +## 0.1.0 + +### Minor Changes + +- 77c5d4f: **BREAKING**: Removed `cjs` support. The experimental app router package now is ESM only. + +### Patch Changes + +- 77c5d4f: Fixed an issue where the Apollo Client was being shipped to the browser client bundle resulting in large bundle sizes (150kb+). For more context: https://github.com/apollographql/apollo-client-nextjs/issues/95 + ## 0.0.4 ### Patch Changes diff --git a/packages/experimental-app-router/package.json b/packages/experimental-app-router/package.json index 95c60f7b6..53bab5743 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.4", + "version": "0.1.0", "description": "Experimental: A Faust package to support Next.js' App Router", "exports": { ".": "./dist/index.js",