Skip to content

Commit 52983ab

Browse files
Version Packages (#447)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 6a389fe commit 52983ab

File tree

3 files changed

+22
-21
lines changed

3 files changed

+22
-21
lines changed

.changeset/spicy-seas-appear.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

packages/cloudflare/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @opennextjs/cloudflare
22

3+
## 0.5.10
4+
5+
### Patch Changes
6+
7+
- [#445](https://github.com/opennextjs/opennextjs-cloudflare/pull/445) [`6a389fe`](https://github.com/opennextjs/opennextjs-cloudflare/commit/6a389fe54b360e542e4db0266e29f0e818176651) Thanks [@james-elicx](https://github.com/james-elicx)! - fix: deployed worker unable to invoke itself in memory queue
8+
9+
In deployments, Cloudflare Workers are unable to invoke workers on the same account via fetch, and the recommended way to call a worker is to use a service binding. This change switches to use service bindings for the memory queue to avoid issues with worker-to-worker subrequests.
10+
11+
To continue using the memory queue, add a service binding to your wrangler config for the binding `NEXT_CACHE_REVALIDATION_WORKER`.
12+
13+
```json
14+
{
15+
"services": [
16+
{
17+
"binding": "NEXT_CACHE_REVALIDATION_WORKER",
18+
"service": "<WORKER_NAME>"
19+
}
20+
]
21+
}
22+
```
23+
324
## 0.5.9
425

526
### Patch Changes

packages/cloudflare/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@opennextjs/cloudflare",
33
"description": "Cloudflare builder for next apps",
4-
"version": "0.5.9",
4+
"version": "0.5.10",
55
"type": "module",
66
"scripts": {
77
"clean": "rimraf dist",

0 commit comments

Comments
 (0)