Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 10, 2025

This PR contains the following updates:

Package Change Age Confidence
wrangler (source) 4.24.0 -> 4.45.0 age confidence

Release Notes

cloudflare/workers-sdk (wrangler)

v4.45.0

Compare Source

Minor Changes
  • #​11030 1a8088a Thanks @​penalosa! - Enable automatic resource provisioning by default in Wrangler. This is still an experimental feature, but we're turning on the flag by default to make it easier for people to test it and try it out. You can disable the feature using the --no-x-provision flag. It currently works for R2, D1, and KV bindings.

    To use this feature, add a binding to your config file without a resource ID:

    {
    	"kv_namespaces": [{ "binding": "MY_KV" }],
    	"d1_databases": [{ "binding": "MY_DB" }],
    	"r2_buckets": [{ "binding": "MY_R2" }],
    }

    wrangler dev will automatically create these resources for you locally, and when you next run wrangler deploy Wrangler will call the Cloudflare API to create the requested resources and link them to your Worker. They'll stay linked across deploys, and you don't need to add the resource IDs to the config file for future deploys to work. This is especially good for shared templates, which now no longer need to include account-specific resource ID when adding a binding.

Patch Changes
  • #​11037 4bd4c29 Thanks @​danielrs! - Better Wrangler subdomain defaults warning.

    Improves the warnings that we show users when either worker_dev or preview_urls are missing.

  • #​10927 31e1330 Thanks @​dom96! - Implements python_modules.excludes wrangler config field

    [python_modules]
    excludes = ["**/*.pyc", "**/__pycache__"]
  • #​10741 2f57345 Thanks @​penalosa! - Remove obsolete --x-remote-bindings flag

  • Updated dependencies [ca6c010]:

    • miniflare@​4.20251011.1

v4.44.0

Compare Source

Minor Changes
  • #​10939 d4b4c90 Thanks @​danielrs! - Config preview_urls defaults to workers_dev value.

    Originally, we were defaulting config.preview_urls to true, but we
    were accidentally enabling Preview URLs for users that only had
    config.workers_dev=false.

    Then, we set the default value of config.preview_urls to false, but we
    were accidentally disabling Preview URLs for users that only had
    config.workers_dev=true.

    Rather than defaulting config.preview_urls to true or false, we
    default to the resolved value of config.workers_dev. Should result in a
    clearer user experience.

  • #​11027 1a2bbf8 Thanks @​jamesopstad! - Statically replace the value of process.env.NODE_ENV with development for development builds and production for production builds if it is not set. Else, use the given value. This ensures that libraries, such as React, that branch code based on process.env.NODE_ENV can be properly tree shaken.

  • #​9705 0ee1a68 Thanks @​hiendv! - Add params type to Workflow type generation. E.g.

    interface Env {
    	MY_WORKFLOW: Workflow<
    		Parameters<import("./src/index").MyWorkflow["run"]>[0]["payload"]
    	>;
    }
  • #​10867 dd5f769 Thanks @​austin-mc! - Add media binding support

Patch Changes
  • #​11018 5124818 Thanks @​dario-piotrowicz! - Improve potential errors thrown by startRemoteProxySession by including more information

  • #​11019 6643bd4 Thanks @​dario-piotrowicz! - Fix observability.logs.persist being flagged as an unexpected field during the wrangler config file validation

  • #​10768 8211bc9 Thanks @​dario-piotrowicz! - Update logs handling to use the new handleStructuredLogs miniflare option

  • #​10997 3bb034f Thanks @​nikitassharma! - When either WRANGLER_OUTPUT_FILE_PATH or WRANGLER_OUTPUT_FILE_DIRECTORY are set
    in the environment, then command failures will append a line to the output file
    encoding the error code and message, if present.

  • #​10986 43503c7 Thanks @​emily-shen! - fix: cleanup any running containers again on wrangler dev exit

  • #​11000 a6de9db Thanks @​jonboulle! - always load container image into local store during build

    BuildKit supports different build drivers. When using the more modern docker-container driver (which is now the default on some systems, e.g. a standard Docker installation on Fedora Linux), it will not automatically load the built image into the local image store. Since wrangler expects the image to be there (e.g. when calling getImageRepoTags), it will thus fail, e.g.:

    ⎔ Preparing container image(s)...
    [+] Building 0.3s (8/8) FINISHED                                                                                                                                                                                                     docker-container:default
    
    [...]
    
    WARNING: No output specified with docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load
    
    ✘ [ERROR] failed inspecting image locally: Error response from daemon: failed to find image cloudflare-dev/sandbox:f86e40e4: docker.io/cloudflare-dev/sandbox:f86e40e4: No such image
    
    

    Explicitly setting the --load flag (equivalent to -o type=docker) during the build fixes this and should make the build a bit more portable without requiring users to change their default build driver configuration.

  • #​10994 d39c8b5 Thanks @​pombosilva! - Make Workflows instances list command cursor based

  • #​10892 7d0417b Thanks @​dario-piotrowicz! - improve the diffing representation for wrangler deploy (run under --x-remote-diff-check)

  • Updated dependencies [36d7054, dd5f769, ee7d710, 8211bc9]:

v4.43.0

Compare Source

Minor Changes
Patch Changes
  • #​10938 e52d0ec Thanks @​penalosa! - Acquire Cloudflare Access tokens for additional requests made during a wrangler dev --remote session

  • #​10923 2429533 Thanks @​emily-shen! - fix: update docker manifest inspect to use full image registry uri when checking if the image exists remotely

  • #​10521 88b5b7f Thanks @​penalosa! - Improves the Wrangler auto-provisioning feature (gated behind the experimental flag --x-provision) by:

    • Writing back changes to the user's config file (not necessary, but can make it resilient to binding name changes)
    • Fixing --dry-run, which previously threw an error when your config file had auto provisioned resources
    • Improve R2 bindings display to include the bucket_name from the config file on upload
    • Fixing bindings view for specific versions to not display TOML

v4.42.2

Compare Source

Patch Changes
  • #​10881 ce832d5 Thanks @​garvit-gupta! - Add table-level compaction commands for R2 Data Catalog:

    • wrangler r2 bucket catalog compaction enable <bucket> [namespace] [table]
    • wrangler r2 bucket catalog compaction disable <bucket> [namespace] [table]

    This allows you to enable and disable automatic file compaction for a specific R2 data catalog table.

  • #​10888 d0ab919 Thanks @​lrapoport-cf! - Clarify that wrangler check startup generates a local CPU profile

  • Updated dependencies [42e256f, 4462bc1]:

    • miniflare@​4.20251008.0

v4.42.1

Compare Source

Patch Changes

v4.42.0

Compare Source

Minor Changes
Patch Changes

v4.41.0

Compare Source

Minor Changes
  • #​10507 21a0bef Thanks @​dario-piotrowicz! - Add strict mode for the wrangler deploy command

    Add a new flag: --strict that makes the wrangler deploy command be more strict and not deploy workers when the deployment could be potentially problematic. This "strict mode" currently only affects non-interactive sessions where conflicts with the remote settings for the worker (for example when the worker has been re-deployed via the dashboard) will cause the deployment to fail instead of automatically overriding the remote settings.

  • #​10710 7f2386e Thanks @​penalosa! - Add prompt to resource creation flow allowing for newly created resources to be remote.

Patch Changes

v4.40.3

Compare Source

Patch Changes

v4.40.2

Compare Source

Patch Changes

v4.40.1

Compare Source

Patch Changes

v4.40.0

Compare Source

Minor Changes
  • #​10743 a7ac751 Thanks @​jonesphillip! - Changes --fileSizeMB to --file-size for wrangler r2 bucket catalog compaction command.
    Small fixes for pipelines commands.
Patch Changes
  • #​10706 81fd733 Thanks @​1000hz! - Fixed an issue that caused some Workers to have an incorrect service tag applied when using a redirected configuration file (as used by the Cloudflare Vite plugin). This resulted in these Workers not being correctly grouped with their sibling environments in the Cloudflare dashboard.

  • Updated dependencies [06e9a48]:

    • miniflare@​4.20250924.0

v4.39.0

Compare Source

Minor Changes
  • #​10647 555a6da Thanks @​efalcao! - VPC service binding support

  • #​10612 97a72cc Thanks @​jonesphillip! - Added new pipelines commands (pipelines, streams, sinks, setup), moved old pipelines commands behind --legacy

  • #​10652 acd48ed Thanks @​edmundhung! - Rename Hyperdrive local connection string environment variable from WRANGLER_HYPERDRIVE_LOCAL_CONNECTION_STRING_<BINDING_NAME> to CLOUDFLARE_HYPERDRIVE_LOCAL_CONNECTION_STRING_<BINDING_NAME>. The old variable name is still supported but will now show a deprecation warning.

  • #​10721 55a10a3 Thanks @​penalosa! - Stabilise Worker Loader bindings

Patch Changes

v4.38.0

Compare Source

Minor Changes
Patch Changes

v4.37.1

Compare Source

Patch Changes
  • #​10658 3029b9a Thanks @​1000hz! - Fixed an issue with service tags not being applied properly to Workers when the Wrangler configuration file did not include a top-level name property.

  • #​10657 31ec996 Thanks @​penalosa! - Disable remote bindings with the --local flag

  • Updated dependencies [783afeb]:

    • miniflare@​4.20250913.0

v4.37.0

Compare Source

Minor Changes
  • #​10546 d53a0bc Thanks @​1000hz! - On deploy or version upload, Workers with multiple environments are tagged with metadata that groups them together in the Cloudflare Dashboard.

  • #​10596 735785e Thanks @​penalosa! - Add Miniflare & Wrangler support for unbound Durable Objects

  • #​10622 15c34e2 Thanks @​nagraham! - Modify R2 Data Catalog compaction commands to enable/disable for Catalog (remove table/namespace args), and require Cloudflare API token on enable.

Patch Changes
  • Updated dependencies [735785e]:
    • miniflare@​4.20250906.2

v4.36.0

Compare Source

Minor Changes
Patch Changes

v4.35.0

Compare Source

Minor Changes
  • #​10491 5cb806f Thanks @​zebp! - Add traces, OTEL destinations, and configurable persistence to observability settings

    Adds a new traces field to the observability settings in your Worker configuration that configures the behavior of automatic tracing. Both traces and logs support providing a list of OpenTelemetry compliant destinations where your logs/traces will be exported to as well as an implicitly-enabled persist option that controls whether or not logs/traces are persisted to the Cloudflare observability platform and viewable in the Cloudflare dashboard.

Patch Changes

v4.34.0

Compare Source

Minor Changes
  • #​10478 cc47b51 Thanks @​danielrs! - Beta feature preview_urls is now disabled by default.

    This change makes preview_urls disabled by default when it's not provided, making
    the feature opt-in instead of opt-out.

Patch Changes

v4.33.2

Compare Source

Patch Changes

v4.33.1

Compare Source

Patch Changes

v4.33.0

Compare Source

Minor Changes
Patch Changes

v4.32.0

Compare Source

Minor Changes
  • #​10354 da40571 Thanks @​edmundhung! - Enable cross-process communication for wrangler dev with multiple config files

    Workers running in separate wrangler dev sessions can now communicate with each other regardless of whether you are running with single or multiple config files.

    Check out the Developing with multiple Workers guide to learn more about the different approaches and when to use each one.

  • #​10012 4728c68 Thanks @​penalosa! - Support unsafe dynamic worker loading bindings

Patch Changes
  • #​10245 d304055 Thanks @​edmundhung! - Migrate wrangler dev to use Miniflare dev registry implementation

    Updated wrangler dev to use a shared dev registry implementation that now powers both the Cloudflare Vite plugin and Wrangler. This internal refactoring has no user-facing changes but consolidates registry logic for better consistency across tools.

  • #​10407 f534c0d Thanks @​emily-shen! - default containers.rollout_active_grace_period to 0

  • #​10425 0a96e69 Thanks @​dario-piotrowicz! - Fix debugging logs not including headers for CF API requests and responses

    Fix the fact that wrangler, when run with the WRANGLER_LOG=DEBUG and WRANGLER_LOG_SANITIZE=false environment variables, displays {} instead of the actual headers for requests and responses for CF API fetches

  • #​10337 [f9f7519](https://redirect.github.


Configuration

📅 Schedule: 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
Copy link

coderabbitai bot commented Jul 10, 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.

@cloudflare-workers-and-pages
Copy link
Contributor

cloudflare-workers-and-pages bot commented Jul 10, 2025

Deploying with  Cloudflare Workers  Cloudflare Workers

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

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
database 1399e69 Commit Preview URL

Branch Preview URL
Oct 23 2025, 09:35 PM

@renovate renovate bot changed the title Update dependency wrangler to v4.24.1 Update dependency wrangler to v4.24.1 - autoclosed Jul 10, 2025
@renovate renovate bot closed this Jul 10, 2025
@renovate renovate bot deleted the renovate/wrangler-4.x branch July 10, 2025 17:32
@renovate renovate bot changed the title Update dependency wrangler to v4.24.1 - autoclosed Update dependency wrangler to v4.24.1 Jul 11, 2025
@renovate renovate bot reopened this Jul 11, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 78f7821 to 8df8658 Compare July 11, 2025 00:15
@renovate renovate bot changed the title Update dependency wrangler to v4.24.1 Update dependency wrangler to v4.24.3 Jul 11, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch 2 times, most recently from 0c8ed17 to 0d5c860 Compare July 16, 2025 14:54
@renovate renovate bot changed the title Update dependency wrangler to v4.24.3 Update dependency wrangler to v4.24.4 Jul 16, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 0d5c860 to 0c6c104 Compare July 17, 2025 11:46
@renovate renovate bot changed the title Update dependency wrangler to v4.24.4 Update dependency wrangler to v4.25.0 Jul 17, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 0c6c104 to d6c5e81 Compare July 22, 2025 18:14
@renovate renovate bot changed the title Update dependency wrangler to v4.25.0 Update dependency wrangler to v4.25.1 Jul 22, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from d6c5e81 to 0c20249 Compare July 24, 2025 16:37
@renovate renovate bot changed the title Update dependency wrangler to v4.25.1 Update dependency wrangler to v4.26.0 Jul 24, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 0c20249 to 8f41d12 Compare July 29, 2025 11:56
@renovate renovate bot changed the title Update dependency wrangler to v4.26.0 Update dependency wrangler to v4.26.1 Jul 29, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 8f41d12 to 6e7149f Compare July 31, 2025 19:31
@renovate renovate bot changed the title Update dependency wrangler to v4.26.1 Update dependency wrangler to v4.27.0 Jul 31, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 6e7149f to 4c418cb Compare August 5, 2025 09:57
@renovate renovate bot changed the title Update dependency wrangler to v4.27.0 Update dependency wrangler to v4.28.0 Aug 5, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 4c418cb to 2441c5b Compare August 7, 2025 12:46
@renovate renovate bot changed the title Update dependency wrangler to v4.28.0 Update dependency wrangler to v4.28.1 Aug 7, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 2441c5b to 35c228f Compare August 8, 2025 09:33
@socket-security
Copy link

socket-security bot commented Aug 8, 2025

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

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedwrangler@​4.24.0 ⏵ 4.45.09810094 +196100

View full report

@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 35c228f to f8e5c34 Compare August 12, 2025 17:32
@renovate renovate bot changed the title Update dependency wrangler to v4.28.1 Update dependency wrangler to v4.29.0 Aug 12, 2025
@renovate renovate bot changed the title Update dependency wrangler to v4.36.0 Update dependency wrangler to v4.37.0 Sep 14, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from f1b1bac to b93bd44 Compare September 16, 2025 16:26
@renovate renovate bot changed the title Update dependency wrangler to v4.37.0 Update dependency wrangler to v4.37.1 Sep 16, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from b93bd44 to 88c4b5a Compare September 18, 2025 16:59
@renovate renovate bot changed the title Update dependency wrangler to v4.37.1 Update dependency wrangler to v4.38.0 Sep 18, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 88c4b5a to 77b8207 Compare September 23, 2025 21:40
@renovate renovate bot changed the title Update dependency wrangler to v4.38.0 Update dependency wrangler to v4.39.0 Sep 23, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 77b8207 to 0988021 Compare September 25, 2025 00:35
@renovate renovate bot changed the title Update dependency wrangler to v4.39.0 Update dependency wrangler to v4.40.0 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 0988021 to 0a23252 Compare September 25, 2025 19:13
@renovate renovate bot changed the title Update dependency wrangler to v4.40.0 Update dependency wrangler to v4.40.1 Sep 25, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 0a23252 to 460e2dd Compare September 26, 2025 12:48
@renovate renovate bot changed the title Update dependency wrangler to v4.40.1 Update dependency wrangler to v4.40.2 Sep 26, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 460e2dd to 7b411c6 Compare September 30, 2025 15:41
@renovate renovate bot changed the title Update dependency wrangler to v4.40.2 Update dependency wrangler to v4.40.3 Sep 30, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 7b411c6 to 93a7132 Compare October 2, 2025 18:48
@renovate renovate bot changed the title Update dependency wrangler to v4.40.3 Update dependency wrangler to v4.41.0 Oct 2, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 93a7132 to f0d9c7f Compare October 3, 2025 17:42
@renovate renovate bot changed the title Update dependency wrangler to v4.41.0 Update dependency wrangler to v4.42.0 Oct 3, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from f0d9c7f to b8bc367 Compare October 7, 2025 19:35
@renovate renovate bot changed the title Update dependency wrangler to v4.42.0 Update dependency wrangler to v4.42.1 Oct 7, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from b8bc367 to 9df425b Compare October 9, 2025 19:06
@renovate renovate bot changed the title Update dependency wrangler to v4.42.1 Update dependency wrangler to v4.42.2 Oct 9, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 9df425b to 242191e Compare October 14, 2025 20:10
@renovate renovate bot changed the title Update dependency wrangler to v4.42.2 Update dependency wrangler to v4.43.0 Oct 14, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from 242191e to f38ab0f Compare October 22, 2025 01:14
@renovate renovate bot changed the title Update dependency wrangler to v4.43.0 Update dependency wrangler to v4.44.0 Oct 22, 2025
@renovate renovate bot force-pushed the renovate/wrangler-4.x branch from f38ab0f to 1399e69 Compare October 23, 2025 21:35
@renovate renovate bot changed the title Update dependency wrangler to v4.44.0 Update dependency wrangler to v4.45.0 Oct 23, 2025
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