fix(deps): update dependency @opennextjs/cloudflare to ^1.20.6 - #22
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update dependency @opennextjs/cloudflare to ^1.20.6#22renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
floren | 424da54 | Commit Preview URL Branch Preview URL |
Sep 06 2026, 03:27 AM |
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
July 16, 2026 04:02
fb625f8 to
0d5e641
Compare
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
July 25, 2026 07:04
0d5e641 to
796065b
Compare
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
August 1, 2026 13:01
796065b to
4d99833
Compare
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
August 16, 2026 03:46
4d99833 to
52c0dc9
Compare
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
August 29, 2026 05:36
52c0dc9 to
16bdebb
Compare
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
September 1, 2026 08:01
16bdebb to
63bbbaa
Compare
renovate
Bot
force-pushed
the
renovate/opennextjs-cloudflare-1.x
branch
from
September 6, 2026 03:26
63bbbaa to
424da54
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.19.0→^1.20.6Release Notes
opennextjs/opennextjs-cloudflare (@opennextjs/cloudflare)
v1.20.6Compare Source
Patch Changes
#1378
7a990e7Thanks @vicb! - Bump Next to 16.3.4 and@opennextjs/awsto 4.1.4See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v4.1.4
v1.20.5Compare Source
Patch Changes
#1374
64a69ecThanks @conico974! - chore: bump@opennextjs/awsto 4.1.3See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v4.1.3
v1.20.4Compare Source
Patch Changes
#1365
bf52109Thanks @vicb! - chore: bump@opennextjs/awsto 4.1.2See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v4.1.2
v1.20.3Compare Source
Patch Changes
#1361
8c31fbcThanks @vicb! - chore: bump@opennextjs/awsto 4.1.1See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v4.1.1
#1359
65e4487Thanks @vicb! - chore: bump the Next.js peer dependency to 15.5.24 / 16.3.3#1359
65e4487Thanks @vicb! - fix: patch the Turbopack wasm helpers that Next.js 16.3 emits in the chunksUntil Next.js 16.2 the Turbopack wasm loaders were named
loadWebAssemblyandloadWebAssemblyModulefunctions living in[turbopack]_runtime.js, which the adapter rewrote toresolve the chunk through a static
import(). Next.js 16.3 emits them on demand in the chunksinstead (
[turbopack-wasm]/node/loadWasm.ts), so the existing patch silently stopped matching andWebAssembly.compileStreaming- which workerd does not implement - survived into the Worker.Every wasm backed import then threw
TypeError: WebAssembly.compileStreaming is not a functionatruntime, most visibly breaking Prisma with the
workerdclient runtime.The chunks emitted by Turbopack are now patched as well, for both the server and the Node.js
middleware bundles.
#1309
56dfaccThanks @ScienHAC! - feature: support Node.js middleware (proxy.ts)Next.js 16 replaces
middleware.tswithproxy.tswhich always runs on the Node.js runtime.The Node.js middleware is now bundled into a Workers compatible
middleware/handler.mjs:the OpenNext config manifests are inlined at build time (as for the edge middleware) and the
middleware compiled by Next.js is statically bundled instead of being loaded from the
filesystem at runtime (workerd can not access the filesystem nor load modules at runtime).
The support is experimental and requires the
nodejs_compatcompatibility flag.#1359
65e4487Thanks @vicb! - fix: do not load the instrumentation hook from the Node.js middleware bundleNext.js 16.3 registers the instrumentation hook from the middleware itself when the middleware
does not run on the edge runtime, by dynamically requiring
.next/server/instrumentation.js.workerd does not support dynamic requires so every request handled by the Node.js middleware
(
proxy.ts) failed withDynamic require of ".next/server/instrumentation.js" is not supported.The guard Next.js uses (
process.env.NEXT_RUNTIME !== "edge") is inlined by Next.js when itcompiles the middleware, so it can not be eliminated when the middleware is re-bundled. The loader
is stubbed out instead, which matches the edge runtime behaviour: the server function - which
shares the isolate - keeps registering the hook.
v1.20.2Compare Source
Patch Changes
#1312
38ea40bThanks @james-elicx! - fix: handle encoded middleware and cache paths safelyUpgrade
@opennextjs/awsto prevent encoded paths from bypassing middleware matching or selecting partially decoded cache entries.#1313
766eee9Thanks @james-elicx! - chore: bump the Next.js peer dependency to 15.5.21 / 16.2.11#1306
97ef330Thanks @james-elicx! - fix: normalize Windows paths when patching the Turbopack runtimeEnsure traced Turbopack chunks are included in the generated runtime loaders when builds run on Windows.
v1.20.1Compare Source
Patch Changes
#1297
780a21cThanks @james-elicx! - fix: disable response compression for skew protection API requestsAvoid truncated compressed Cloudflare API responses causing worker version lookups to fail during deployment.
v1.20.0Compare Source
Minor Changes
#1290
46c50fcThanks @james-elicx! - feature: add opt-in batch upload viarclonefor fast R2 cache population.Key Changes:
Optional
rcloneUpload: Install the optionalrclone.jspeer dependency and pass--rcloneto opt in torclonebased batch uploads.R2_ACCESS_KEY_IDR2_SECRET_ACCESS_KEYCF_ACCOUNT_IDExplicit Opt-in: The existing worker-based population path remains the default.
rcloneis only loaded when--rcloneis used for a remote cache.Clear Errors: The CLI reports missing credentials or a missing
rclone.jsinstallation when the option is used.Usage:
Install
rclone.js, then add the secrets in a.env/.dev.varsfile in your project root:pnpm add rclone.js pnpm approve-builds # select rclone.js pnpm rebuild rclone.js R2_ACCESS_KEY_ID=your_key R2_SECRET_ACCESS_KEY=your_secret CF_ACCOUNT_ID=your_account opennextjs-cloudflare deploy --rcloneYou can also set the environment variables for CI builds.
Notes:
rclonemay not be supported on all platforms.Patch Changes
#1289
eef243fThanks @thatssoheil! - fix: spread SQLite bindings in BucketCachePurge alarm so tag purges runBucketCachePurge.alarm()passed its tag bindings toSqlStorage.execas asingle array.
exec(query, ...bindings)is variadic over its bindings, so for amulti-tag
DELETE ... WHERE tag IN (?, ?, …)the binding count (1) disagreedwith the placeholder count (N) and
execthrew "Wrong number of parameterbindings" on every flush. On-demand
revalidateTagpurges therefore neverreached the Cloudflare cache, and with
bypassTagCacheOnCacheHitenabled pagesserved stale until the ISR TTL expired.
Spread the bindings, normalise the
INSERTto the same variadic form, andtighten the drain loop's guard from
while (tags.length >= 0)(which neverexits via the condition) to
while (tags.length > 0).#1291
51439b1Thanks @james-elicx! - fix: disable response compression when provisioning R2 cache bucketsAvoid truncated compressed Cloudflare API responses causing R2 cache bucket provisioning to fail.
v1.19.11Compare Source
Patch Changes
#1270
802047eThanks @alex-all3dp! - fix: skip non-upload-triggered worker versions when building skew-protection deployment mappingWorker versions created by metadata-only operations (e.g. Cloudflare API secret updates) do not include the static assets bundle. Previously, such versions could become the "latest" target in the skew-protection mapping, causing
/_next/static/*requests to return 404 on past deployments. Versions are now filtered to those withworkers/triggered_byin{upload, version_upload}.Closes #1230
v1.19.10Compare Source
Patch Changes
#1261
780dd4fThanks @vicb! - Allow populating R2 when the domain is protected by Cloudflare AccessYou need to:
v1.19.9Compare Source
Patch Changes
3b35c6eThanks @vicb! - chore: bump Next.js to 15.5.18 / 16.2.6 and @opennextjs/aws to 4.0.2v1.19.8Compare Source
Patch Changes
#1256
9696cd0Thanks @vicb! - bump@opennextjs/awsto 4.0.1See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v4.0.1
v1.19.7Compare Source
Patch Changes
#1252
29fe15dThanks @vicb! - bump the number of retries for r2 cache uploadsIncrease the retry count from 5 to 15 with a capped exponential backoff to improve resilience against transient R2 write failures during cache population.
#1255
364b7d9Thanks @vicb! - Bump react and nextv1.19.6Compare Source
Patch Changes
#1246
5d2014fThanks @vicb! - fix: do not log expected expected D1 errorsThe
populateCachecommand adds columns to the D1 tag cache for SWR support.This is required for older deployments made before those column were added.
SQLite errors when the columns exist and we should not log those errors.
#1244
01babceThanks @tahmid-23! - fix: drop streaming wasm calls in Turbopack runtimeTurbopack replaces wasm imports using
WebAssembly.compileStreamingandWebAssembly.instantiateStreaming. These functions are not available inthe workerd runtime.
We add a helper
loadWasmChunkFn. This is a generated switch statementthat contains an import for each wasm chunk. We use static strings for
all imports to ensure that all necessary wasm chunks will be detected
and bundled for the final build.
The Turbopack patcher replaces the invocations in
loadWebAssemblyandloadWebAssemblyModule, using the synchronousWebAssembly.instantiateand redirecting to
loadWasmChunkFn.#1243
1c815deThanks @tahmid-23! - fix: detect object-valued conditionsThe pre-existing build condition transform logic had subtle errors:
(e.g. "workerd": { "import": ..., "require": ... })
Now, we fully support object conditions. Furthermore, we prune siblings,
unless its subtree also contains the build condition.
v1.19.5Compare Source
Patch Changes
dd7de1dThanks @vicb! - fix: add missing git ignored files for the migrate commandConfiguration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.