diff --git a/.changeset/brown-insects-protect.md b/.changeset/brown-insects-protect.md deleted file mode 100644 index aa75790c9..000000000 --- a/.changeset/brown-insects-protect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Set `x-vercel-sc-host` request header for older versions of Next.js for the suspense cache. diff --git a/.changeset/empty-cups-pull.md b/.changeset/empty-cups-pull.md deleted file mode 100644 index 4dd3c92fd..000000000 --- a/.changeset/empty-cups-pull.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Falling back to header if cache tags are not given from fetched CachedFetchValue object. The change was introduced from Next.js 13.5+. diff --git a/.changeset/twelve-cobras-double.md b/.changeset/twelve-cobras-double.md deleted file mode 100644 index 7813e480b..000000000 --- a/.changeset/twelve-cobras-double.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'@cloudflare/next-on-pages': minor ---- - -Add support for using a KV to implement the Suspense Cache via naming convention - -With this change users can have their suspense cache implemented via a KV binding, in order to -opt-in to such implementation they simply need to make sure that their application has a KV binding -named `__NEXT_ON_PAGES__KV_SUSPENSE_CACHE` (the next-on-pages worker will pick up such -binding and use it to implement the suspense cache instead of using the default workers cache API). diff --git a/.changeset/wicked-shoes-crash.md b/.changeset/wicked-shoes-crash.md deleted file mode 100644 index 458b7a6f8..000000000 --- a/.changeset/wicked-shoes-crash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/next-on-pages': patch ---- - -Update the matcher for the temp fix for a Next.js bug to match more chars. diff --git a/packages/eslint-plugin-next-on-pages/CHANGELOG.md b/packages/eslint-plugin-next-on-pages/CHANGELOG.md index d554d4393..a6624758b 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.8.0 + ## 1.7.4 ### Patch Changes diff --git a/packages/eslint-plugin-next-on-pages/package.json b/packages/eslint-plugin-next-on-pages/package.json index 6b84c2ae0..5762c6991 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.7.4", + "version": "1.8.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 0e8b9360d..cfd0e1e32 100644 --- a/packages/next-on-pages/CHANGELOG.md +++ b/packages/next-on-pages/CHANGELOG.md @@ -1,5 +1,22 @@ # @cloudflare/next-on-pages +## 1.8.0 + +### Minor Changes + +- 888ae85: Add support for using a KV to implement the Suspense Cache via naming convention + + With this change users can have their suspense cache implemented via a KV binding, in order to + opt-in to such implementation they simply need to make sure that their application has a KV binding + named `__NEXT_ON_PAGES__KV_SUSPENSE_CACHE` (the next-on-pages worker will pick up such + binding and use it to implement the suspense cache instead of using the default workers cache API). + +### Patch Changes + +- f364224: Set `x-vercel-sc-host` request header for older versions of Next.js for the suspense cache. +- d7b34cc: Falling back to header if cache tags are not given from fetched CachedFetchValue object. The change was introduced from Next.js 13.5+. +- dbe2c78: Update the matcher for the temp fix for a Next.js bug to match more chars. + ## 1.7.4 ### Patch Changes diff --git a/packages/next-on-pages/package.json b/packages/next-on-pages/package.json index 7dc956e93..2870ef82f 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.7.4", + "version": "1.8.0", "bin": "./bin/index.js", "exports": { "./__experimental__next-dev": "./dist/next-dev/index.cjs"