Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/cyan-ears-know.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fast-goats-fix.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/modern-yaks-add.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/shaggy-bobcats-battle.md

This file was deleted.

24 changes: 24 additions & 0 deletions packages/cloudflare/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @opennextjs/cloudflare

## 0.6.6

### Patch Changes

- [#520](https://github.com/opennextjs/opennextjs-cloudflare/pull/520) [`3bd200a`](https://github.com/opennextjs/opennextjs-cloudflare/commit/3bd200a3ef9a85856a7004395aa7b27b6069b8ee) Thanks [@vicb](https://github.com/vicb)! - Define `process.version` and `process.versions.node`

- [#522](https://github.com/opennextjs/opennextjs-cloudflare/pull/522) [`79fadc4`](https://github.com/opennextjs/opennextjs-cloudflare/commit/79fadc49d303052165c70800b785fd488fad4c41) Thanks [@vicb](https://github.com/vicb)! - Log exceptions in `requirePage` and `NodeModuleLoader` when `OPEN_NEXT_DEBUG=1`

- [#523](https://github.com/opennextjs/opennextjs-cloudflare/pull/523) [`19dedc7`](https://github.com/opennextjs/opennextjs-cloudflare/commit/19dedc75bfa805802cee0f0e727e6c5355c5c747) Thanks [@vicb](https://github.com/vicb)! - fix: process.env has a higher loading priority than .env files

- [#469](https://github.com/opennextjs/opennextjs-cloudflare/pull/469) [`aef8e51`](https://github.com/opennextjs/opennextjs-cloudflare/commit/aef8e517eba94fe5ece23427c410c0cad15b5917) Thanks [@Juuldamen](https://github.com/Juuldamen)! - Adds support for passing options to `initOpenNextCloudflareForDev()`. This allows you to configure how your Cloudflare bindings will behave during [local development](https://opennext.js.org/cloudflare/get-started#11-develop-locally).

For example, the below configuration will persist the local state of bindings to a custom directory. Which can be useful if you want to share the state between different apps that reuse the same bindings in a monorepo.

```ts
initOpenNextCloudflareForDev({
persist: {
path: "../../.wrangler/state/v3/custom-dir",
},
});
```

You can find the configuration type with it's available options [here](https://github.com/cloudflare/workers-sdk/blob/main/packages/wrangler/src/api/integrations/platform/index.ts#L32) in the Wrangler source code.

## 0.6.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/cloudflare/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@opennextjs/cloudflare",
"description": "Cloudflare builder for next apps",
"version": "0.6.5",
"version": "0.6.6",
"type": "module",
"scripts": {
"clean": "rimraf dist",
Expand Down