From 6455355531dbd8ca16978c442a8f6a591f032d96 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 6 Jun 2023 21:33:34 +0100 Subject: [PATCH] Version Packages (#281) Co-authored-by: github-actions[bot] --- .changeset/chilly-fishes-double.md | 5 ----- .changeset/grumpy-seas-search.md | 5 ----- .changeset/itchy-humans-tease.md | 5 ----- .changeset/serious-cobras-run.md | 5 ----- .changeset/smooth-pumpkins-press.md | 5 ----- CHANGELOG.md | 10 ++++++++++ package.json | 2 +- 7 files changed, 11 insertions(+), 26 deletions(-) delete mode 100644 .changeset/chilly-fishes-double.md delete mode 100644 .changeset/grumpy-seas-search.md delete mode 100644 .changeset/itchy-humans-tease.md delete mode 100644 .changeset/serious-cobras-run.md delete mode 100644 .changeset/smooth-pumpkins-press.md diff --git a/.changeset/chilly-fishes-double.md b/.changeset/chilly-fishes-double.md deleted file mode 100644 index 613a455d2..000000000 --- a/.changeset/chilly-fishes-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -update the runtime error message so that it provides accurate up-to-date information diff --git a/.changeset/grumpy-seas-search.md b/.changeset/grumpy-seas-search.md deleted file mode 100644 index 41931f251..000000000 --- a/.changeset/grumpy-seas-search.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Remove rsc functions from the worker output directory as we replace them with non-rsc variants in the config given to the router. This reduces the final bundle size. diff --git a/.changeset/itchy-humans-tease.md b/.changeset/itchy-humans-tease.md deleted file mode 100644 index 73246e8bd..000000000 --- a/.changeset/itchy-humans-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Fix dynamic params not being derived correctly in some cases when running a page's function. diff --git a/.changeset/serious-cobras-run.md b/.changeset/serious-cobras-run.md deleted file mode 100644 index 774432235..000000000 --- a/.changeset/serious-cobras-run.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Fix middleware not returning a response with `new NextResponse` and when there is no `x-middleware-next` header present. diff --git a/.changeset/smooth-pumpkins-press.md b/.changeset/smooth-pumpkins-press.md deleted file mode 100644 index 490734e4d..000000000 --- a/.changeset/smooth-pumpkins-press.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Fix non-index pages with trailing slash rewriting to /index for rsc requests. diff --git a/CHANGELOG.md b/CHANGELOG.md index 52a534404..5710b6c6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # @cloudflare/next-on-pages +## 1.0.2 + +### Patch Changes + +- f687d25: update the runtime error message so that it provides accurate up-to-date information +- ff90dde: Remove rsc functions from the worker output directory as we replace them with non-rsc variants in the config given to the router. This reduces the final bundle size. +- cb62938: Fix dynamic params not being derived correctly in some cases when running a page's function. +- d91b24b: Fix middleware not returning a response with `new NextResponse` and when there is no `x-middleware-next` header present. +- 7deb9d8: Fix non-index pages with trailing slash rewriting to /index for rsc requests. + ## 1.0.1 ### Patch Changes diff --git a/package.json b/package.json index da24cb97e..a748bd80d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cloudflare/next-on-pages", - "version": "1.0.1", + "version": "1.0.2", "bin": "./bin/index.js", "scripts": { "prettier": "npx prettier --ignore-unknown --ignore-path=.gitignore .",