From 82dacc5483ab3d77d8b1ff95e948521b87752001 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 26 Aug 2023 20:36:07 +0100 Subject: [PATCH] Version Packages (#434) Co-authored-by: github-actions[bot] --- .changeset/brown-eagles-sparkle.md | 21 ------------- .changeset/few-icons-shop.md | 5 --- .changeset/forty-seas-hug.md | 5 --- .changeset/nervous-socks-reply.md | 5 --- .changeset/proud-lamps-tie.md | 5 --- .changeset/sweet-grapes-dance.md | 5 --- .../eslint-plugin-next-on-pages/CHANGELOG.md | 2 ++ .../eslint-plugin-next-on-pages/package.json | 2 +- packages/next-on-pages/CHANGELOG.md | 31 +++++++++++++++++++ packages/next-on-pages/package.json | 2 +- 10 files changed, 35 insertions(+), 48 deletions(-) delete mode 100644 .changeset/brown-eagles-sparkle.md delete mode 100644 .changeset/few-icons-shop.md delete mode 100644 .changeset/forty-seas-hug.md delete mode 100644 .changeset/nervous-socks-reply.md delete mode 100644 .changeset/proud-lamps-tie.md delete mode 100644 .changeset/sweet-grapes-dance.md diff --git a/.changeset/brown-eagles-sparkle.md b/.changeset/brown-eagles-sparkle.md deleted file mode 100644 index 9ec7fad8d..000000000 --- a/.changeset/brown-eagles-sparkle.md +++ /dev/null @@ -1,21 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -avoid the default is not a function unclear error - -if there is some issue evaluating a lazy loaded edge function -its default export ends up not being a function and that results -in an unhelpful error like the following: - -``` - TypeError: u.default is not a function -``` - -slightly improve the user experience by catching such error and -letting the user know that something went wrong with the edge -function's evaluation: - -``` - Error: An error occurred while evaluating the target edge function () -``` diff --git a/.changeset/few-icons-shop.md b/.changeset/few-icons-shop.md deleted file mode 100644 index 2efd34828..000000000 --- a/.changeset/few-icons-shop.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Stop the `cache` property in fetch requests causing internal server error. diff --git a/.changeset/forty-seas-hug.md b/.changeset/forty-seas-hug.md deleted file mode 100644 index 91155ebfd..000000000 --- a/.changeset/forty-seas-hug.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': minor ---- - -Support for the internal fetch (suspense) cache, and `next/cache` data revalidation. diff --git a/.changeset/nervous-socks-reply.md b/.changeset/nervous-socks-reply.md deleted file mode 100644 index d436d6754..000000000 --- a/.changeset/nervous-socks-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -add vercel@31 as a peer dependency diff --git a/.changeset/proud-lamps-tie.md b/.changeset/proud-lamps-tie.md deleted file mode 100644 index e69f181db..000000000 --- a/.changeset/proud-lamps-tie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -fix package version detection for yarn diff --git a/.changeset/sweet-grapes-dance.md b/.changeset/sweet-grapes-dance.md deleted file mode 100644 index 38fdd94d7..000000000 --- a/.changeset/sweet-grapes-dance.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Add vercel@32 as a peer dependency diff --git a/packages/eslint-plugin-next-on-pages/CHANGELOG.md b/packages/eslint-plugin-next-on-pages/CHANGELOG.md index 449ce6efe..58a033586 100644 --- a/packages/eslint-plugin-next-on-pages/CHANGELOG.md +++ b/packages/eslint-plugin-next-on-pages/CHANGELOG.md @@ -1,5 +1,7 @@ # eslint-plugin-next-on-pages +## 1.6.0 + ## 1.5.1 ### Patch Changes diff --git a/packages/eslint-plugin-next-on-pages/package.json b/packages/eslint-plugin-next-on-pages/package.json index e6a58e7c5..ac0aa95ea 100644 --- a/packages/eslint-plugin-next-on-pages/package.json +++ b/packages/eslint-plugin-next-on-pages/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-next-on-pages", - "version": "1.5.1", + "version": "1.6.0", "main": "dist/index.js", "scripts": { "prebuild": "rimraf dist", diff --git a/packages/next-on-pages/CHANGELOG.md b/packages/next-on-pages/CHANGELOG.md index 593cffc51..6c8a5529e 100644 --- a/packages/next-on-pages/CHANGELOG.md +++ b/packages/next-on-pages/CHANGELOG.md @@ -1,5 +1,36 @@ # @cloudflare/next-on-pages +## 1.6.0 + +### Minor Changes + +- 291bfde: Support for the internal fetch (suspense) cache, and `next/cache` data revalidation. + +### Patch Changes + +- cb32baf: avoid the default is not a function unclear error + + if there is some issue evaluating a lazy loaded edge function + its default export ends up not being a function and that results + in an unhelpful error like the following: + + ``` + TypeError: u.default is not a function + ``` + + slightly improve the user experience by catching such error and + letting the user know that something went wrong with the edge + function's evaluation: + + ``` + Error: An error occurred while evaluating the target edge function () + ``` + +- 291bfde: Stop the `cache` property in fetch requests causing internal server error. +- 4570aa6: add vercel@31 as a peer dependency +- c788def: fix package version detection for yarn +- fe6ea04: Add vercel@32 as a peer dependency + ## 1.5.1 ### Patch Changes diff --git a/packages/next-on-pages/package.json b/packages/next-on-pages/package.json index 17d2d9dcc..60e400238 100644 --- a/packages/next-on-pages/package.json +++ b/packages/next-on-pages/package.json @@ -1,6 +1,6 @@ { "name": "@cloudflare/next-on-pages", - "version": "1.5.1", + "version": "1.6.0", "bin": "./bin/index.js", "scripts": { "lint": "eslint src templates",