Skip to content

Conversation

@renovate
Copy link

@renovate renovate bot commented Aug 7, 2025

This PR contains the following updates:

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

Release Notes

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

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

v1.11.0

Compare Source

Minor Changes
  • #​925 62fee71 Thanks @​krzysztof-palka-monogo! - feature: optional batch upload for faster R2 cache population

    This update adds optional batch upload support for R2 cache population, significantly improving upload performance for large caches when enabled via .env or environment variables.

    Key Changes:

    1. Optional Batch Upload: Configure R2 credentials via .env or environment variables to enable faster batch uploads:

      • R2_ACCESS_KEY_ID
      • R2_SECRET_ACCESS_KEY
      • CF_ACCOUNT_ID
    2. Automatic Detection: When credentials are detected, batch upload is automatically used for better performance

    3. Smart Fallback: If credentials are not configured, the CLI falls back to standard Wrangler uploads with a helpful message about enabling batch upload for better performance

    All deployment commands support batch upload:

    • populateCache - Explicit cache population
    • deploy - Deploy with cache population
    • upload - Upload version with cache population
    • preview - Preview with cache population

    Performance Benefits (when batch upload is enabled):

    • Parallel transfer capabilities (32 concurrent transfers)
    • Significantly faster for large caches
    • Reduced API calls to Cloudflare

    Usage:

    Add the credentials in a .env/.dev.vars file in your project root:

    R2_ACCESS_KEY_ID=your_key
    R2_SECRET_ACCESS_KEY=your_secret
    CF_ACCOUNT_ID=your_account

    You can also set the environment variables for CI builds.

    Note:

    You can follow documentation https://developers.cloudflare.com/r2/api/tokens/ for creating API tokens with appropriate permissions for R2 access.

Patch Changes

v1.10.1

Compare Source

Patch Changes

v1.10.0

Compare Source

Minor Changes
  • #​937 32ba91a Thanks @​vicb! - feat: retrieve CLI environment variables from process.env and .env* files

    Recommended usage on CI:

    • Add your secrets to process.env (i.e. CF_ACCOUNT_ID)
    • Add public values to the wrangler config wrangler.jsonc (i.e. R2_CACHE_PREFIX_ENV_NAME)

    Recommended usage for local dev:

    • Add your secrets to either a .dev.vars* or .env* file (i.e. CF_ACCOUNT_ID)
    • Add public values to the wrangler config wrangler.jsonc (i.e. R2_CACHE_PREFIX_ENV_NAME)
Patch Changes

v1.9.2

Compare Source

Patch Changes

v1.9.1

Compare Source

Patch Changes

v1.9.0

Compare Source

Minor Changes
Patch Changes

v1.8.5

Compare Source

Patch Changes
  • #​901 17a4bea Thanks @​vicb! - chore: bump wrangler to ^4.38.0

  • #​903 7fced0f Thanks @​vicb! - fix: enable using workerd process v2

    process v2 is an updated version of node:process active by default after 2025-09-15

v1.8.4

Compare Source

Patch Changes
  • #​888 51322a8 Thanks @​james-elicx! - fix: remote flag not working for preview command's cache population

    Previously, passing the --remote flag when running opennextjs-cloudflare preview --remote would not result in the remote preview binding being populated, and would throw errors due to a missing preview flag when populating Workers KV. The remote flag is now supported for the cache popoulation step when running the preview command.

    • opennextjs-cloudflare preview --remote will populate the remote binding for the preview ID specified in your Wrangler config.
    • opennextjs-cloudflare preview will continue to populate the local binding in your Wrangler config.

v1.8.3

Compare Source

Patch Changes

v1.8.2

Compare Source

Patch Changes

v1.8.1

Compare Source

Patch Changes

v1.8.0

Compare Source

Minor Changes
Patch Changes

v1.7.1

Compare Source

Patch Changes

v1.7.0

Compare Source

Minor Changes
  • #​848 f80c801 Thanks @​sommeeeer! - Ensure that the initial request.signal is passed to the wrapper

    request.signal.onabort is now supported in route handlers. It requires that the signal from the original worker's request is passed to the handler. It will then pass along that AbortSignal through the streamCreator in the wrapper. This signal will destroy the response sent to NextServer when a client aborts, thus triggering the signal in the route handler.

    See the changelog in Cloudflare here.

    Note:
    If you have a custom worker, you must update your code to pass the original request.signal to the handler. You also need to enable the compatibility flag enable_request_signal to use this feature.

    For example:

    // Before:
    return handler(reqOrResp, env, ctx);
    
    // After:
    return handler(reqOrResp, env, ctx, request.signal);
  • #​850 ce5c7b4 Thanks @​dario-piotrowicz! - Add option for regional cache to skip tagCache on cache hits

    When the tag regional cache finds a value in the incremental cache, checking such value in the tagCache can be skipped, this helps reducing response times at the tradeoff that the user needs to either use the automatic cache purging or manually purge the cache when appropriate. For this the bypassTagCacheOnCacheHit option is being added to the RegionalCache class.

    Example:

    import { defineCloudflareConfig } from "@​opennextjs/cloudflare";
    import d1NextTagCache from "@​opennextjs/cloudflare/overrides/tag-cache/d1-next-tag-cache";
    import memoryQueue from "@​opennextjs/cloudflare/overrides/queue/memory-queue";
    import r2IncrementalCache from "@​opennextjs/cloudflare/overrides/incremental-cache/r2-incremental-cache";
    import { withRegionalCache } from "@​opennextjs/cloudflare/overrides/incremental-cache/regional-cache";
    
    export default defineCloudflareConfig({
    	incrementalCache: withRegionalCache(r2IncrementalCache, {
    		mode: "long-lived",
    		bypassTagCacheOnCacheHit: true,
    	}),
    	tagCache: d1NextTagCache,
    	queue: memoryQueue,
    });
Patch Changes

v1.6.5

Compare Source

Patch Changes

v1.6.4

Compare Source

Patch Changes

v1.6.3

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot enabled auto-merge (squash) August 7, 2025 11:39
@coderabbitai
Copy link

coderabbitai bot commented Aug 7, 2025

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.


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

@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from d0af9a7 to 34880e9 Compare September 6, 2025 22:44
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.6.5 chore(deps): update dependency @opennextjs/cloudflare to v1.8.0 Sep 6, 2025
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.8.0 chore(deps): update dependency @opennextjs/cloudflare to v1.8.1 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 2 times, most recently from cc06c36 to 3505bce Compare September 9, 2025 20:49
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.8.1 chore(deps): update dependency @opennextjs/cloudflare to v1.8.2 Sep 9, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 3505bce to 8af24ee Compare September 18, 2025 14:26
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.8.2 chore(deps): update dependency @opennextjs/cloudflare to v1.8.3 Sep 18, 2025
@socket-security
Copy link

socket-security bot commented Sep 18, 2025

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​opennextjs/​cloudflare@​1.6.2 ⏵ 1.15.199 +110090 +196 +1100

View full report

@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 3 times, most recently from 35509c1 to b362dbb Compare September 23, 2025 09:47
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.8.3 chore(deps): update dependency @opennextjs/cloudflare to v1.8.4 Sep 23, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from b362dbb to 9d094d5 Compare September 23, 2025 21:47
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.8.4 chore(deps): update dependency @opennextjs/cloudflare to v1.8.5 Sep 23, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 9d094d5 to 1818b67 Compare September 26, 2025 10:09
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.8.5 chore(deps): update dependency @opennextjs/cloudflare to v1.9.0 Sep 26, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 3 times, most recently from 57efe68 to 1a24ec0 Compare October 1, 2025 22:12
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.9.0 chore(deps): update dependency @opennextjs/cloudflare to v1.9.1 Oct 1, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 1a24ec0 to d71d8b8 Compare October 8, 2025 17:02
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.9.1 chore(deps): update dependency @opennextjs/cloudflare to v1.9.2 Oct 8, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from d71d8b8 to 890a0f5 Compare October 10, 2025 14:12
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.9.2 chore(deps): update dependency @opennextjs/cloudflare to v1.10.0 Oct 10, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 890a0f5 to fda7f79 Compare October 10, 2025 20:48
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.10.0 chore(deps): update dependency @opennextjs/cloudflare to v1.10.1 Oct 10, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from fda7f79 to d2c23fe Compare October 15, 2025 10:45
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 06614c6 to 5dabe01 Compare December 3, 2025 21:10
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.14.2 chore(deps): update dependency @opennextjs/cloudflare to v1.14.3 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 5dabe01 to 9fc1123 Compare December 6, 2025 11:15
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.14.3 chore(deps): update dependency @opennextjs/cloudflare to v1.14.4 Dec 6, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 9fc1123 to 071f687 Compare December 12, 2025 04:42
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.14.4 chore(deps): update dependency @opennextjs/cloudflare to v1.14.5 Dec 12, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 071f687 to 5f7310f Compare December 12, 2025 09:38
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.14.5 chore(deps): update dependency @opennextjs/cloudflare to v1.14.6 Dec 12, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 5 times, most recently from 165af5a to 3d80f2c Compare December 17, 2025 09:05
@renovate renovate bot changed the title chore(deps): update dependency @opennextjs/cloudflare to v1.14.6 Update dependency @opennextjs/cloudflare to v1.14.6 Dec 17, 2025
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch 4 times, most recently from eda80d3 to 9faf4ce Compare December 19, 2025 18:11
@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 9faf4ce to 671fcd8 Compare January 6, 2026 13:37
@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
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 671fcd8 to 36c3d0e Compare January 16, 2026 18:11
@renovate renovate bot changed the title Update dependency @opennextjs/cloudflare to v1.14.8 Update dependency @opennextjs/cloudflare to v1.14.9 Jan 16, 2026
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from 36c3d0e to d7488c0 Compare January 20, 2026 12:48
@renovate renovate bot changed the title Update dependency @opennextjs/cloudflare to v1.14.9 Update dependency @opennextjs/cloudflare to v1.14.10 Jan 20, 2026
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from d7488c0 to d28e786 Compare January 21, 2026 12:54
@renovate renovate bot changed the title Update dependency @opennextjs/cloudflare to v1.14.10 Update dependency @opennextjs/cloudflare to v1.15.0 Jan 21, 2026
@renovate renovate bot force-pushed the renovate/opennextjs-cloudflare-1.x branch from d28e786 to 1a5c5cc Compare January 22, 2026 13:49
@renovate renovate bot changed the title Update dependency @opennextjs/cloudflare to v1.15.0 Update dependency @opennextjs/cloudflare to v1.15.1 Jan 22, 2026
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