From 9b8bf3d7241d4f9c6b195c1484878089b4aad70a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 17 Feb 2025 10:20:00 +0000 Subject: [PATCH] Version Packages --- .changeset/tough-tables-talk.md | 10 ---------- packages/cloudflare/CHANGELOG.md | 11 +++++++++++ packages/cloudflare/package.json | 2 +- 3 files changed, 12 insertions(+), 11 deletions(-) delete mode 100644 .changeset/tough-tables-talk.md diff --git a/.changeset/tough-tables-talk.md b/.changeset/tough-tables-talk.md deleted file mode 100644 index 2918135a..00000000 --- a/.changeset/tough-tables-talk.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@opennextjs/cloudflare": patch ---- - -add "async mode" to `getCloudflareContext` - -Add an `async` option to `getCloudflareContext({async})` to run it in "async mode", the difference being that the returned value is a -promise of the Cloudflare context instead of the context itself - -The main of this is that it allows the function to also run during SSG (since the missing context can be created on demand). diff --git a/packages/cloudflare/CHANGELOG.md b/packages/cloudflare/CHANGELOG.md index f4fc2c00..5bc193b9 100644 --- a/packages/cloudflare/CHANGELOG.md +++ b/packages/cloudflare/CHANGELOG.md @@ -1,5 +1,16 @@ # @opennextjs/cloudflare +## 0.5.2 + +### Patch Changes + +- [#372](https://github.com/opennextjs/opennextjs-cloudflare/pull/372) [`522076b`](https://github.com/opennextjs/opennextjs-cloudflare/commit/522076b2972c4e7038f38dc20c2c7a25855d479e) Thanks [@dario-piotrowicz](https://github.com/dario-piotrowicz)! - add "async mode" to `getCloudflareContext` + + Add an `async` option to `getCloudflareContext({async})` to run it in "async mode", the difference being that the returned value is a + promise of the Cloudflare context instead of the context itself + + The main of this is that it allows the function to also run during SSG (since the missing context can be created on demand). + ## 0.5.1 ### Patch Changes diff --git a/packages/cloudflare/package.json b/packages/cloudflare/package.json index b7d267cf..de61dced 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.1", + "version": "0.5.2", "type": "module", "scripts": { "clean": "rimraf dist",