Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps wrangler from 4.25.1 to 4.26.1.

Release notes

Sourced from wrangler's releases.

wrangler@4.26.1

Patch Changes

  • #10061 f8a80a8 Thanks @​emily-shen! - feat(containers): try to automatically get the socket path that the container engine is listening on.

    Currently, if your container engine isn't set up to listen on unix:///var/run/docker.sock (or isn't symlinked to that), then you have to manually set this via the dev.containerEngine field in your Wrangler config, or via the env vars WRANGLER_DOCKER_HOST. This change means that we will try and get the socket of the current context automatically. This should reduce the occurrence of opaque internal errors thrown by the runtime when the daemon is not listening on unix:///var/run/docker.sock.

    In addition to WRANGLER_DOCKER_HOST, DOCKER_HOST can now also be used to set the container engine socket address.

  • #10048 dbdbb8c Thanks @​vicb! - pass the compatibility date and flags to the unenv preset

  • #10096 687655f Thanks @​vicb! - bump unenv to 2.0.0-rc.19

  • #9897 755a249 Thanks @​edmundhung! - fix: wrangler types should infer the types of the default worker entrypoint

  • Updated dependencies [82a5b2e, f8f7352, 2df1d06, dbdbb8c, 5991a9c, 687655f]:

    • miniflare@4.20250726.0
    • @​cloudflare/unenv-preset@​2.5.0

wrangler@4.26.0

Minor Changes

  • #10016 c5b291d Thanks @​emily-shen! - Interactively handle wrangler deploys that are probably assets-only, where there is no config file and flags are incorrect or missing.

    For example:

    npx wrangler deploy ./public will now ask if you meant to deploy a folder of assets only, ask for a name, set the compat date and then ask whether to write your choices out to wrangler.json for subsequent deployments.

    npx wrangler deploy --assets=./public will now ask for a name, set the compat date and then ask whether to write your choices out to wrangler.json for subsequent deployments.

    In non-interactive contexts, Wrangler will error as it currently does.

  • #9971 19794bf Thanks @​edmundhung! - Improved script source display on the pretty error screen

Patch Changes

  • #9800 3d4f946 Thanks @​helloimalastair! - remove banner from r2 getobject in pipe mode

  • #9910 7245101 Thanks @​dario-piotrowicz! - make sure that the ready-on message is printed after the appropriate runtime controller is ready

    fix the fact that when starting a local (or remote) dev session the log saying Ready on http://localhost:xxxx could be displayed before the runtime is actually ready to handle requests (this is quite noticeable when locally running dev sessions with containers, where the ready message currently gets displayed before the container images building/pulling process)

  • #10031 823cba8 Thanks @​vicb! - wrangler and vite-plugin now depend upon the latest version of unenv-preset

  • #10032 154acf7 Thanks @​dario-piotrowicz! - add support for containers in wrangler multiworker dev

    currently when running wrangler dev with different workers (meaning that the -c|--config flag is used multiple times) containers are not being included, meaning that trying to interact with them at runtime would not work and cause errors instead. The changes here address the above making wrangler correctly detect and wire up the containers.

  • #9988 7fb0bfd Thanks @​penalosa! - Correctly label mtls remote bindings warning

... (truncated)

Changelog

Sourced from wrangler's changelog.

4.26.1

Patch Changes

  • #10061 f8a80a8 Thanks @​emily-shen! - feat(containers): try to automatically get the socket path that the container engine is listening on.

    Currently, if your container engine isn't set up to listen on unix:///var/run/docker.sock (or isn't symlinked to that), then you have to manually set this via the dev.containerEngine field in your Wrangler config, or via the env vars WRANGLER_DOCKER_HOST. This change means that we will try and get the socket of the current context automatically. This should reduce the occurrence of opaque internal errors thrown by the runtime when the daemon is not listening on unix:///var/run/docker.sock.

    In addition to WRANGLER_DOCKER_HOST, DOCKER_HOST can now also be used to set the container engine socket address.

  • #10048 dbdbb8c Thanks @​vicb! - pass the compatibility date and flags to the unenv preset

  • #10096 687655f Thanks @​vicb! - bump unenv to 2.0.0-rc.19

  • #9897 755a249 Thanks @​edmundhung! - fix: wrangler types should infer the types of the default worker entrypoint

  • Updated dependencies [82a5b2e, f8f7352, 2df1d06, dbdbb8c, 5991a9c, 687655f]:

    • miniflare@4.20250726.0
    • @​cloudflare/unenv-preset@​2.5.0

4.26.0

Minor Changes

  • #10016 c5b291d Thanks @​emily-shen! - Interactively handle wrangler deploys that are probably assets-only, where there is no config file and flags are incorrect or missing.

    For example:

    npx wrangler deploy ./public will now ask if you meant to deploy a folder of assets only, ask for a name, set the compat date and then ask whether to write your choices out to wrangler.json for subsequent deployments.

    npx wrangler deploy --assets=./public will now ask for a name, set the compat date and then ask whether to write your choices out to wrangler.json for subsequent deployments.

    In non-interactive contexts, Wrangler will error as it currently does.

  • #9971 19794bf Thanks @​edmundhung! - Improved script source display on the pretty error screen

Patch Changes

  • #9800 3d4f946 Thanks @​helloimalastair! - remove banner from r2 getobject in pipe mode

  • #9910 7245101 Thanks @​dario-piotrowicz! - make sure that the ready-on message is printed after the appropriate runtime controller is ready

    fix the fact that when starting a local (or remote) dev session the log saying Ready on http://localhost:xxxx could be displayed before the runtime is actually ready to handle requests (this is quite noticeable when locally running dev sessions with containers, where the ready message currently gets displayed before the container images building/pulling process)

  • #10031 823cba8 Thanks @​vicb! - wrangler and vite-plugin now depend upon the latest version of unenv-preset

  • #10032 154acf7 Thanks @​dario-piotrowicz! - add support for containers in wrangler multiworker dev

    currently when running wrangler dev with different workers (meaning that the -c|--config flag is used multiple times) containers are not being included, meaning that trying to interact with them at runtime would not work and cause errors instead. The changes here address the above making wrangler correctly detect and wire up the containers.

... (truncated)

Commits
  • c070c77 Version Packages (#10059)
  • 75640c1 recommend DOCKER_HOST instead (#10097)
  • 687655f bump unenv to 2.0.0-rc.19 (#10096)
  • 755a249 fix(wrangler): default worker entrypoint suport with wrangler types (#9897)
  • 0595018 import debug instead of the alias (#10093)
  • 5991a9c [preset] add support for the native http modules (#10078)
  • 2df1d06 Bump the workerd-and-workers-types group with 2 updates (#9968)
  • dbdbb8c pass the compatibility date and flags to the unenv preset (#10048)
  • f8a80a8 Automatically get docker socket path (and fix socket path config in vite plug...
  • f8f7352 fix(miniflare): service binding fetch over dev registry should work without h...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the github_actions:pull-request Trigger Pull Request Checks label Aug 1, 2025
@dependabot dependabot bot requested review from a team as code owners August 1, 2025 17:28
@vercel
Copy link

vercel bot commented Aug 1, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

1 Skipped Deployment
Name Status Preview Updated (UTC)
nodejs-org ⬜️ Ignored (Inspect) Visit Preview Aug 2, 2025 8:09pm

@github-actions github-actions bot removed the github_actions:pull-request Trigger Pull Request Checks label Aug 1, 2025
@codecov
Copy link

codecov bot commented Aug 1, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 72.75%. Comparing base (23cb0b1) to head (9dd585d).
⚠️ Report is 2 commits behind head on main.
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #8060      +/-   ##
==========================================
- Coverage   72.81%   72.75%   -0.07%     
==========================================
  Files          96       96              
  Lines        8328     8328              
  Branches      214      215       +1     
==========================================
- Hits         6064     6059       -5     
- Misses       2263     2268       +5     
  Partials        1        1              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@ovflowd
Copy link
Member

ovflowd commented Aug 2, 2025

@dependabot rebase

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/wrangler-4.26.1 branch from ae87d2c to edd39b3 Compare August 2, 2025 16:01
@ovflowd ovflowd added the github_actions:pull-request Trigger Pull Request Checks label Aug 2, 2025
@ovflowd ovflowd enabled auto-merge August 2, 2025 20:00
@github-actions github-actions bot removed the github_actions:pull-request Trigger Pull Request Checks label Aug 2, 2025
@ovflowd ovflowd added this pull request to the merge queue Aug 2, 2025
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to a conflict with the base branch Aug 2, 2025
Bumps [wrangler](https://github.com/cloudflare/workers-sdk/tree/HEAD/packages/wrangler) from 4.25.1 to 4.26.1.
- [Release notes](https://github.com/cloudflare/workers-sdk/releases)
- [Changelog](https://github.com/cloudflare/workers-sdk/blob/main/packages/wrangler/CHANGELOG.md)
- [Commits](https://github.com/cloudflare/workers-sdk/commits/wrangler@4.26.1/packages/wrangler)

---
updated-dependencies:
- dependency-name: wrangler
  dependency-version: 4.26.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/wrangler-4.26.1 branch from edd39b3 to 9dd585d Compare August 2, 2025 20:09
@avivkeller avivkeller added the github_actions:pull-request Trigger Pull Request Checks label Aug 2, 2025
@avivkeller avivkeller enabled auto-merge August 2, 2025 20:49
@github-actions github-actions bot removed the github_actions:pull-request Trigger Pull Request Checks label Aug 2, 2025
@avivkeller avivkeller added this pull request to the merge queue Aug 2, 2025
Merged via the queue into main with commit aae783e Aug 2, 2025
15 checks passed
@avivkeller avivkeller deleted the dependabot/npm_and_yarn/wrangler-4.26.1 branch August 2, 2025 20:57
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.

3 participants