Skip to content

Update dependency @opennextjs/cloudflare to v1.20.2 - #14

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/opennextjs-cloudflare-1.x
Open

Update dependency @opennextjs/cloudflare to v1.20.2#14
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/opennextjs-cloudflare-1.x

Conversation

@renovate

@renovate renovate Bot commented Jul 4, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@opennextjs/cloudflare (source) 1.3.11.20.2 age confidence

Release Notes

opennextjs/opennextjs-cloudflare (@​opennextjs/cloudflare)

v1.20.2

Compare Source

Patch Changes
  • #​1312 38ea40b Thanks @​james-elicx! - fix: handle encoded middleware and cache paths safely

    Upgrade @opennextjs/aws to prevent encoded paths from bypassing middleware matching or selecting partially decoded cache entries.

  • #​1313 766eee9 Thanks @​james-elicx! - chore: bump the Next.js peer dependency to 15.5.21 / 16.2.11

  • #​1306 97ef330 Thanks @​james-elicx! - fix: normalize Windows paths when patching the Turbopack runtime

    Ensure traced Turbopack chunks are included in the generated runtime loaders when builds run on Windows.

v1.20.1

Compare Source

Patch Changes
  • #​1297 780a21c Thanks @​james-elicx! - fix: disable response compression for skew protection API requests

    Avoid truncated compressed Cloudflare API responses causing worker version lookups to fail during deployment.

v1.20.0

Compare Source

Minor Changes
  • #​1290 46c50fc Thanks @​james-elicx! - feature: add opt-in batch upload via rclone for fast R2 cache population.

    Key Changes:

    1. Optional rclone Upload: Install the optional rclone.js peer dependency and pass --rclone to opt in to rclone based batch uploads.

      • R2_ACCESS_KEY_ID
      • R2_SECRET_ACCESS_KEY
      • CF_ACCOUNT_ID
    2. Explicit Opt-in: The existing worker-based population path remains the default. rclone is only loaded when --rclone is used for a remote cache.

    3. Clear Errors: The CLI reports missing credentials or a missing rclone.js installation when the option is used.

    Usage:

    Install rclone.js, then add the secrets in a .env/.dev.vars file 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 --rclone

    You can also set the environment variables for CI builds.

    Notes:

Patch Changes
  • #​1289 eef243f Thanks @​thatssoheil! - fix: spread SQLite bindings in BucketCachePurge alarm so tag purges run

    BucketCachePurge.alarm() passed its tag bindings to SqlStorage.exec as a
    single array. exec(query, ...bindings) is variadic over its bindings, so for a
    multi-tag DELETE ... WHERE tag IN (?, ?, …) the binding count (1) disagreed
    with the placeholder count (N) and exec threw "Wrong number of parameter
    bindings" on every flush. On-demand revalidateTag purges therefore never
    reached the Cloudflare cache, and with bypassTagCacheOnCacheHit enabled pages
    served stale until the ISR TTL expired.

    Spread the bindings, normalise the INSERT to the same variadic form, and
    tighten the drain loop's guard from while (tags.length >= 0) (which never
    exits via the condition) to while (tags.length > 0).

  • #​1291 51439b1 Thanks @​james-elicx! - fix: disable response compression when provisioning R2 cache buckets

    Avoid truncated compressed Cloudflare API responses causing R2 cache bucket provisioning to fail.

v1.19.11

Compare Source

Patch Changes
  • #​1270 802047e Thanks @​alex-all3dp! - fix: skip non-upload-triggered worker versions when building skew-protection deployment mapping

    Worker 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 with workers/triggered_by in {upload, version_upload}.

    Closes #​1230

v1.19.10

Compare Source

Patch Changes
  • #​1261 780dd4f Thanks @​vicb! - Allow populating R2 when the domain is protected by Cloudflare Access

    You need to:

    • create a "Service Auth" policy for "open-next-cache-populate..workers.dev"
    • add an "Include" rule for "Any Access Service Token" or for a given service token ("Service Token")
    • populate the env variables CLOUDFLARE_ACCESS_CLIENT_ID and CLOUDFLARE_ACCESS_CLIENT_SECRET

v1.19.9

Compare Source

Patch Changes

v1.19.8

Compare Source

Patch Changes

v1.19.7

Compare Source

Patch Changes
  • #​1252 29fe15d Thanks @​vicb! - bump the number of retries for r2 cache uploads

    Increase the retry count from 5 to 15 with a capped exponential backoff to improve resilience against transient R2 write failures during cache population.

  • #​1255 364b7d9 Thanks @​vicb! - Bump react and next

v1.19.6

Compare Source

Patch Changes
  • #​1246 5d2014f Thanks @​vicb! - fix: do not log expected expected D1 errors

    The populateCache command 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 01babce Thanks @​tahmid-23! - fix: drop streaming wasm calls in Turbopack runtime

    Turbopack replaces wasm imports using WebAssembly.compileStreaming and
    WebAssembly.instantiateStreaming. These functions are not available in
    the workerd runtime.

    We add a helper loadWasmChunkFn. This is a generated switch statement
    that 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 loadWebAssembly and
    loadWebAssemblyModule, using the synchronous WebAssembly.instantiate
    and redirecting to loadWasmChunkFn.

  • #​1243 1c815de Thanks @​tahmid-23! - fix: detect object-valued conditions

    The pre-existing build condition transform logic had subtle errors:

    • failed to recognize object conditions
      (e.g. "workerd": { "import": ..., "require": ... })
    • sibling pruning only applied to strings, not objects

    Now, we fully support object conditions. Furthermore, we prune siblings,
    unless its subtree also contains the build condition.

v1.19.5

Compare Source

Patch Changes

v1.19.4

Compare Source

Patch Changes
  • #​1221 a2679bf Thanks @​mushan0x0! - Stop bundling @vercel/og (and its ~1.4 MiB resvg.wasm) when the app does not use it.

    Next.js's externalImport helper keeps a dynamic import("next/dist/compiled/@vercel/og/index.edge.js") in the emitted handler even for apps that never use ImageResponse / opengraph-image. Previously this module was marked as external when useOg was false, which left Wrangler to resolve and bundle it — pulling in ~800 KiB of JS plus resvg.wasm and pushing many Workers over the Cloudflare free-tier 3 MiB gzip limit.

    When useOg is false, the edge entry is now aliased to the existing throw.js shim, so the unreachable dynamic import resolves to a tiny module and the real @vercel/og library is no longer pulled into the Worker bundle.

  • #​1208 2c5b472 Thanks @​edmundhung! - Use OPEN_NEXT_BUILD_ID instead of NEXT_BUILD_ID in the cache keys.

    As of Next 16.2 NEXT_BUILD_ID is a fixed value when deploymentId is set explicitly.

    See opennextjs/opennextjs-aws#1144

  • #​1193 1e8d232 Thanks @​conico974! - Fix tag cache stale logic

v1.19.3

Compare Source

Patch Changes
  • #​1215 608893e Thanks @​vicb! - Factor large repeated values in manifests

    This reduce the size of the generated code.

  • #​1218 f0d0226 Thanks @​314systems! - remove process.version override

    Remove process.version / process.versions.node overrides now that unjs/unenv#493 is merged and shipped in [email protected] (project uses 2.0.0-rc.24)

  • #​1199 32594d6 Thanks @​SdSadat! - fix(cli): fail fast in non-TTY environments instead of hanging on config-creation prompts

    When open-next.config.ts (or wrangler.(toml|json|jsonc)) is missing, the CLI
    prompts the user to auto-create it. In non-TTY environments (Cloudflare Workers
    Builds, Docker, CI) the Enquirer prompt can't read stdin, so the build hangs or
    fails with a truncated prompt and a cryptic exit code — the user sees
    ? Missing required open-next.config.ts file, do you want to create one? (Y/n)
    and then ELIFECYCLE Command failed with exit code 13, with no hint at what
    to do next.

    Now, in non-interactive environments, both prompts throw an actionable error
    with the exact template to paste (for open-next.config.ts) or point at the
    existing --skipWranglerConfigCheck / SKIP_WRANGLER_CONFIG_CHECK escape
    hatch (for the wrangler config). Interactive behavior is unchanged.

v1.19.2

Compare Source

Patch Changes
  • #​1207 0958726 Thanks @​edmundhung! - bump @opennextjs/aws to 3.10.2

    See details at https://github.com/opennextjs/opennextjs-aws/releases/tag/v3.10.2

  • #​1139 79b01b8 Thanks @​james-elicx! - Fix Turbopack external module resolution by dynamically discovering external imports at build time.

    When packages are listed in serverExternalPackages, Turbopack externalizes them via externalImport() which uses dynamic await import(id). The bundler (ESBuild) can't statically analyze import(id) with a variable, so these modules aren't included in the worker bundle.

    This patch:

    • Discovers hashed Turbopack external module mappings from .next/node_modules/ symlinks (e.g. shiki-43d062b67f27bbdcshiki)
    • Scans traced chunk files for bare external imports (e.g. externalImport("shiki")) and subpath imports (e.g. shiki/engine/javascript)
    • Generates explicit switch/case entries so the bundler can statically resolve and include these modules
  • #​1203 6f02d12 Thanks @​314systems! - fix: exclude unsupported Next.js 16 releases from peer dependencies.

    The previous range allowed Next.js 16.0.0 through 16.2.2 without a peer dependency warning because >=16.2.3 was already covered by >=15.5.15.

    The range now explicitly supports Next.js 15.5.15 and above in the 15.x line, and Next.js 16.2.3 and above in the 16.x line.

  • #​1200 7820ad0 Thanks @​NathanDrake2406! - fix: reuse sharded tag data when filling the regional cache.

    The sharded tag cache miss path already reads tag data from the Durable Object before answering the request. Reuse that fetched data when populating the regional cache so a shard miss does not immediately trigger a second identical Durable Object read.

  • #​1206 585795d Thanks @​314systems! - fix: regression where getEnvFromPlatformProxy received wrong options type

    This fixes a regression introduced in 32ba91a where getEnvFromPlatformProxy call sites passed OpenNextConfig even though the function expects Wrangler GetPlatformProxyOptions.

    The fix restores the pre-32ba91a argument shape by passing { configPath, environment } from CLI arguments, so env resolution follows the selected Wrangler config/environment.

v1.19.1

Compare Source

Patch Changes

v1.19.0

Compare Source

Minor Changes
Patch Changes

v1.18.1

Compare Source

Patch Changes
  • #​1176 2232651 Thanks @​conico974! - fix for OG with Next 16.2.2

  • #​1166 f89fba1 Thanks @​ash1day! - fix: sort .endsWith() checks by path length descending to prevent suffix collisions in dynamic requires

    Routes whose paths are suffixes of other routes (e.g. /test/app vs /) were resolved incorrectly because the shorter path matched first in the generated .endsWith() chain. Sorting by path length descending ensures more specific (longer) paths are always checked first.

    Fixes #​1156.

v1.18.0

Compare Source

Minor Changes
  • #​1159 75f5f0a Thanks @​edmundhung! - Use remote dev for R2 cache population

    Using remote dev is not subject to the Cloudflare API rate limit of 1,200 requests per 5 minutes that caused failures for large applications with thousands of prerendered pages.

v1.17.3

Compare Source

Patch Changes
  • #​1160 161e726 Thanks @​matthewvolk! - fix(patches): include prefetch-hints.json in loadManifest build-time inlining

    Next.js 16.2.0 introduced prefetch-hints.json as a new server manifest loaded unconditionally
    by NextNodeServer.getPrefetchHints(). The file exists in the build output but wasn't matched by
    the glob pattern *-manifest.json, causing the patched loadManifest() to throw at runtime.

v1.17.2

Compare Source

Patch Changes
  • #​1151 a143282 Thanks @​nathanschram! - fix: handle known optional manifests gracefully in loadManifest/evalManifest patches

    Next.js loads certain manifests with handleMissing: true (returning {} when the file doesn't
    exist). The adapter's build-time glob scan doesn't find these files when they're conditionally
    generated, so the patched function threw at runtime, crashing dynamic routes with 500.

    Instead of a blanket catch-all, handle only the specific optional manifests from Next.js
    route-module.ts:

    • react-loadable-manifest (Turbopack per-route, not all routes have dynamic imports)
    • subresource-integrity-manifest (only when experimental.sri configured)
    • server-reference-manifest (App Router only)
    • dynamic-css-manifest (Pages Router + Webpack only)
    • fallback-build-manifest (only for /_error page)
    • prefetch-hints (new in Next.js 16.2)
    • _client-reference-manifest.js (optional for static metadata routes, evalManifest)

    Manifest matching strips .json before comparison since some Next.js constants omit
    the extension (SUBRESOURCE_INTEGRITY_MANIFEST, DYNAMIC_CSS_MANIFEST, etc.).

    Unknown manifests still throw to surface genuine errors.

    Fixes #​1141.

v1.17.1

Compare Source

Patch Changes

v1.17.0

Compare Source

Minor Changes
  • #​1133 25d5835 Thanks @​dario-piotrowicz! - Update the migrate command to attempt to create an R2 bucket for caching, if that is not possible an application without caching enabled will be generated instead.

v1.16.6

Compare Source

Patch Changes
  • #​1138 4487f1f Thanks @​james-elicx! - Fix the CLI potentially setting a future compatibility date in the wrangler config when workerd has published a version matching a future date, by capping to the current date.

v1.16.5

Compare Source

Patch Changes

v1.16.4

Compare Source

Patch Changes

v1.16.3

Compare Source

Patch Changes

v1.16.2

Compare Source

Patch Changes

v1.16.1

Compare Source

Patch Changes

v1.16.0

Compare Source

Minor Changes
  • #​1083 b062597 Thanks @​dario-piotrowicz! - feature: add migrate command to set up OpenNext for Cloudflare adapter

    This command helps users migrate existing Next.js applications to the OpenNext Cloudflare adapter by automatically setting up all necessary configuration files, dependencies, and scripts.

    To use the command simply run: npx opennextjs-cloudflare migrate

Patch Changes
  • #​1092 4279043 Thanks @​vicb! - Check for supported Next version

    The build will now error for unsupported Next version which may contain unpatched security vulnerabilities.
    You can bypass the check using the --dangerouslyUseUnsupportedNextVersion flag.

v1.15.1

Compare Source

Patch Changes

v1.15.0

Compare Source

Minor Changes
Patch Changes

v1.14.10

Compare Source

Patch Changes

v1.14.9

Compare Source

Patch Changes

v1.14.8

Compare Source

Patch Changes

v1.14.7

Compare Source

Patch Changes

v1.14.6

Compare Source

Patch Changes

v1.14.5

Compare Source

Patch Changes

v1.14.4

Compare Source

Patch Changes

v1.14.3

Compare Source

Patch Changes

v1.14.2

Compare Source

Patch Changes

v1.14.1

Compare Source

Patch Changes

v1.14.0

Compare Source

Minor Changes

v1.13.1

Compare Source

Patch Changes

v1.13.0

Compare Source

Minor Changes
Patch Changes

v1.12.0

Compare Source

Minor Changes

v1.11.1

Compare Source

Patch Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.


This change is Reviewable

@coderabbitai

coderabbitai Bot commented Jul 4, 2025

Copy link
Copy Markdown

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

  • 🔍 Trigger a full review

Comment @coderabbitai help to get the list of available commands and usage tips.

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jul 4, 2025

Copy link
Copy Markdown
Contributor

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
❌ Deployment failed
View logs
web4 1277175 Jul 21 2026, 06:52 PM

@guardrails

guardrails Bot commented Jul 4, 2025

Copy link
Copy Markdown

⚠️ We detected 2 security issues in this pull request:

Vulnerable Libraries (2)
Severity Details
High pkg:npm/[email protected] (t) upgrade to: 3.114.17,4.59.1
High pkg:npm/@opennextjs/[email protected] upgrade to: > 1.3.1

More info on how to fix Vulnerable Libraries in JavaScript.


👉 Go to the dashboard for detailed results.

📥 Happy? Share your feedback with us.

@openzeppelin-code

openzeppelin-code Bot commented Jul 4, 2025

Copy link
Copy Markdown

Update dependency @opennextjs/cloudflare to v1.19.7

Generated at commit: 6eaf84cd57a0a8d5182a83c013e3e0e8b234e8cc

🚨 Report Summary

Severity Level Results
Contracts Critical
High
Medium
Low
Note
Total
0
0
0
0
0
0
Dependencies Critical
High
Medium
Low
Note
Total
0
0
0
0
0
0

For more details view the full report in OpenZeppelin Code Inspector

@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from a343c05 to 860ee11 Compare July 11, 2025 14:29
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.4.0 Update dependency @opennextjs/cloudflare to v1.5.0 Jul 11, 2025
@renovate

renovate Bot commented Jul 11, 2025

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm. See `npm help npmrc` for supported config options.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: web4@undefined
npm error Found: [email protected]
npm error node_modules/next
npm error   next@"15.4.5" from the root project
npm error
npm error Could not resolve dependency:
npm error peer next@">=15.5.21 <16 || >=16.2.11" from @opennextjs/[email protected]
npm error node_modules/@opennextjs/cloudflare
npm error   @opennextjs/cloudflare@"1.20.2" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry this command with --force or --legacy-peer-deps to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-08-11T21_33_25_713Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-08-11T21_33_25_713Z-debug-0.log

@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 860ee11 to 6188618 Compare July 11, 2025 20:26
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.5.0 Update dependency @opennextjs/cloudflare to v1.5.1 Jul 11, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 2 times, most recently from 76d837a to 39a2640 Compare July 21, 2025 11:37
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.5.1 Update dependency @opennextjs/cloudflare to v1.5.2 Jul 21, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 39a2640 to 390c8ad Compare July 22, 2025 15:11
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.5.2 Update dependency @opennextjs/cloudflare to v1.5.3 Jul 22, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 390c8ad to 71b5f2a Compare July 23, 2025 16:38
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.5.3 Update dependency @opennextjs/cloudflare to v1.6.0 Jul 23, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 71b5f2a to e66cbb3 Compare July 24, 2025 13:53
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.6.0 Update dependency @opennextjs/cloudflare to v1.6.1 Jul 24, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from e66cbb3 to b341db1 Compare July 29, 2025 11:02
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.6.1 Update dependency @opennextjs/cloudflare to v1.6.2 Jul 29, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 2 times, most recently from a9e6634 to 5fee50c Compare August 1, 2025 18:15
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.6.2 Update dependency @opennextjs/cloudflare to v1.6.3 Aug 1, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 5fee50c to 217f2b2 Compare August 4, 2025 20:28
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.6.3 Update dependency @opennextjs/cloudflare to v1.6.4 Aug 4, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 217f2b2 to 4da8f57 Compare August 5, 2025 01:10
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.6.4 Update dependency @opennextjs/cloudflare to v1.6.5 Aug 5, 2025
@sonarqubecloud

sonarqubecloud Bot commented Aug 5, 2025

Copy link
Copy Markdown

@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 4da8f57 to 83a6790 Compare September 6, 2025 20:04
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.6.5 Update dependency @opennextjs/cloudflare to v1.8.0 Sep 6, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 4a7a367 to a4cc940 Compare November 6, 2025 22:46
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.11.0 Update dependency @opennextjs/cloudflare to v1.11.1 Nov 6, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from a4cc940 to 17b2e32 Compare November 11, 2025 12:59
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.11.1 Update dependency @opennextjs/cloudflare to v1.12.0 Nov 11, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 17b2e32 to 74b5ae7 Compare November 18, 2025 22:39
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.12.0 Update dependency @opennextjs/cloudflare to v1.13.0 Nov 18, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 74b5ae7 to b3785c8 Compare November 20, 2025 17:11
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.13.0 Update dependency @opennextjs/cloudflare to v1.13.1 Nov 20, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from b3785c8 to 106163a Compare November 28, 2025 10:58
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.13.1 Update dependency @opennextjs/cloudflare to v1.14.0 Nov 28, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 106163a to da67846 Compare December 2, 2025 09:03
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.0 Update dependency @opennextjs/cloudflare to v1.14.1 Dec 2, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from da67846 to b1b1ac5 Compare December 3, 2025 21:02
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.1 Update dependency @opennextjs/cloudflare to v1.14.3 Dec 3, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from b1b1ac5 to 792d860 Compare December 6, 2025 08:40
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.3 Update dependency @opennextjs/cloudflare to v1.14.4 Dec 6, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 792d860 to acbbfd3 Compare December 12, 2025 04:14
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.4 Update dependency @opennextjs/cloudflare to v1.14.5 Dec 12, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from acbbfd3 to e0a72eb Compare December 12, 2025 09:09
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.5 Update dependency @opennextjs/cloudflare to v1.14.6 Dec 12, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from e0a72eb to fd6e9c3 Compare December 19, 2025 16:38
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.6 Update dependency @opennextjs/cloudflare to v1.14.7 Dec 19, 2025
@renovate
renovate Bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from fd6e9c3 to 260c38d Compare January 6, 2026 12:55
@renovate renovate Bot changed the title Update dependency @opennextjs/cloudflare to v1.14.7 Update dependency @opennextjs/cloudflare to v1.14.8 Jan 6, 2026
Comment thread package.json Outdated
},
"dependencies": {
"@opennextjs/cloudflare": "1.3.1",
"@opennextjs/cloudflare": "1.15.1",

This comment was marked as outdated.

Comment thread package.json Outdated
},
"dependencies": {
"@opennextjs/cloudflare": "1.3.1",
"@opennextjs/cloudflare": "1.16.0",

This comment was marked as outdated.

@sonarqubecloud

Copy link
Copy Markdown

1 similar comment
@sonarqubecloud

Copy link
Copy Markdown

@sonarqubecloud

Copy link
Copy Markdown

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants