From 8f0361c525c9c58a96122d803ebc046421b082f7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 25 Feb 2025 20:42:32 +0000 Subject: [PATCH] Version Packages --- .changeset/five-balloons-walk.md | 5 ----- .changeset/grumpy-trainers-learn.md | 9 --------- .changeset/long-items-poke.md | 10 ---------- .changeset/warm-lizards-lick.md | 9 --------- packages/cloudflare/CHANGELOG.md | 25 +++++++++++++++++++++++++ packages/cloudflare/package.json | 2 +- 6 files changed, 26 insertions(+), 34 deletions(-) delete mode 100644 .changeset/five-balloons-walk.md delete mode 100644 .changeset/grumpy-trainers-learn.md delete mode 100644 .changeset/long-items-poke.md delete mode 100644 .changeset/warm-lizards-lick.md diff --git a/.changeset/five-balloons-walk.md b/.changeset/five-balloons-walk.md deleted file mode 100644 index 826b300e..00000000 --- a/.changeset/five-balloons-walk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@opennextjs/cloudflare": patch ---- - -feat: d1 adapter for the tag cache diff --git a/.changeset/grumpy-trainers-learn.md b/.changeset/grumpy-trainers-learn.md deleted file mode 100644 index 512c8e33..00000000 --- a/.changeset/grumpy-trainers-learn.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@opennextjs/cloudflare": patch ---- - -make sure that instrumentation files work - -currently [instrumentation files](https://nextjs.org/docs/app/building-your-application/optimizing/instrumentation) -in applications built using the adapter are ignored, the changes here -make sure that those are instead properly included in the applications diff --git a/.changeset/long-items-poke.md b/.changeset/long-items-poke.md deleted file mode 100644 index fd3a963b..00000000 --- a/.changeset/long-items-poke.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@opennextjs/cloudflare": patch ---- - -remove `eval` calls introduced by `depd` wrapped functions - -Some dependencies of Next.js (`raw-body` and `send`) use `depd` to deprecate some of their functions, -`depd` uses `eval` to generate a deprecated version of such functions, this causes `eval` warnings in -the terminal even if these functions are never called, the changes here by patching the depd `wrapfunction` -function so that it still retains the same type of behavior but without using `eval` diff --git a/.changeset/warm-lizards-lick.md b/.changeset/warm-lizards-lick.md deleted file mode 100644 index 18820575..00000000 --- a/.changeset/warm-lizards-lick.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@opennextjs/cloudflare": patch ---- - -fix incorrect (sync) `getCloudflareContext` error message - -currently `getCloudflareContext` run in sync mode at the top level of a not static route -gives a misleading error message saying that the function needs to be run in a not static -route, the changes here correct this error message clarifying that the problem actually is diff --git a/packages/cloudflare/CHANGELOG.md b/packages/cloudflare/CHANGELOG.md index 66a27693..49e3cd0b 100644 --- a/packages/cloudflare/CHANGELOG.md +++ b/packages/cloudflare/CHANGELOG.md @@ -1,5 +1,30 @@ # @opennextjs/cloudflare +## 0.5.4 + +### Patch Changes + +- [#320](https://github.com/opennextjs/opennextjs-cloudflare/pull/320) [`ff2dd55`](https://github.com/opennextjs/opennextjs-cloudflare/commit/ff2dd55aa5645f9c54b064ced02719ff83321a04) Thanks [@james-elicx](https://github.com/james-elicx)! - feat: d1 adapter for the tag cache + +- [#409](https://github.com/opennextjs/opennextjs-cloudflare/pull/409) [`a604c85`](https://github.com/opennextjs/opennextjs-cloudflare/commit/a604c8512c90921e90293c1e96a71926930234db) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - make sure that instrumentation files work + + currently [instrumentation files](https://nextjs.org/docs/app/building-your-application/optimizing/instrumentation) + in applications built using the adapter are ignored, the changes here + make sure that those are instead properly included in the applications + +- [#410](https://github.com/opennextjs/opennextjs-cloudflare/pull/410) [`d30424b`](https://github.com/opennextjs/opennextjs-cloudflare/commit/d30424baff219792a52e3b6c766398189be5f19e) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - remove `eval` calls introduced by `depd` wrapped functions + + Some dependencies of Next.js (`raw-body` and `send`) use `depd` to deprecate some of their functions, + `depd` uses `eval` to generate a deprecated version of such functions, this causes `eval` warnings in + the terminal even if these functions are never called, the changes here by patching the depd `wrapfunction` + function so that it still retains the same type of behavior but without using `eval` + +- [#404](https://github.com/opennextjs/opennextjs-cloudflare/pull/404) [`12d385d`](https://github.com/opennextjs/opennextjs-cloudflare/commit/12d385d84ff0ab7e3475cd9fea01d03b6876c46d) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - fix incorrect (sync) `getCloudflareContext` error message + + currently `getCloudflareContext` run in sync mode at the top level of a not static route + gives a misleading error message saying that the function needs to be run in a not static + route, the changes here correct this error message clarifying that the problem actually is + ## 0.5.3 ### Patch Changes diff --git a/packages/cloudflare/package.json b/packages/cloudflare/package.json index cd289081..63c5b025 100644 --- a/packages/cloudflare/package.json +++ b/packages/cloudflare/package.json @@ -1,7 +1,7 @@ { "name": "@opennextjs/cloudflare", "description": "Cloudflare builder for next apps", - "version": "0.5.3", + "version": "0.5.4", "type": "module", "scripts": { "clean": "rimraf dist",