chore(deps): update all non-major dependencies
This PR contains the following updates:
Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20250618.0
v4.20250617.0
v4.20250614.0
v4.20250613.0
v4.20250612.0
vitest-dev/vitest (vitest)
v3.2.4
🐞 Bug Fixes
- Use correct path for optimisation of strip-literal - by @mrginglymus in https://github.com/vitest-dev/vitest/issues/8139 (44940)
- Print uint and buffer as a simple string - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8141 (b86bf)
-
browser:
- Show a helpful error when spying on an export - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8178 (56007)
-
cli:
-
vitest run --watchshould be watch-mode - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/8128 (657e8) - Use absolute path environment on Windows - by @colinaaa in https://github.com/vitest-dev/vitest/issues/8105 (85dc0)
- Throw error when
--shard x/<count>exceeds count of test files - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/8112 (8a18c)
-
-
coverage:
- Ignore SCSS in browser mode - by @sheremet-va in https://github.com/vitest-dev/vitest/issues/8161 (0c3be)
-
deps:
- Update all non-major dependencies - in https://github.com/vitest-dev/vitest/issues/8123 (93f32)
-
expect:
- Handle async errors in expect.soft - by @lzl0304 in https://github.com/vitest-dev/vitest/issues/8145 (68699)
-
pool:
- Auto-adjust
minWorkerswhen onlymaxWorkersspecified - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/8110 (14dc0)
- Auto-adjust
-
reporter:
-
task.metashould be available in custom reporter's errors - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/8115 (27df6)
-
-
runner:
- Preserve handler wrapping on extend - by @pengooseDev in https://github.com/vitest-dev/vitest/issues/8153 (a9281)
-
ui:
- Ensure ui config option works correctly - by @lzl0304 in https://github.com/vitest-dev/vitest/issues/8147 (42eeb)
View changes on GitHub
cloudflare/workers-sdk (wrangler)
v4.20.2
Patch Changes
-
#9565
b1c9139Thanks @IRCody! - Ensure that a container applications image configuration is not updated if there were not changes to the image. -
#9628
92f12f4Thanks @gpanders! - Remove "Cloudchamber" from user facing error messages -
#9576
2671e77Thanks @vicb! - Add core local dev functionality for containers. Adds a new WRANGLER_DOCKER_HOST env var to customise what socket to connect to.
v4.20.1
Patch Changes
-
#9536
3b61c41Thanks @dario-piotrowicz! - exposeUnstable_Bindingtype -
#9564
1d3293fThanks @skepticfx! - Switch container registry toregistry.cloudflare.comfromregistry.cloudchamber.cfdata.org. Also adds the env varCLOUDFLARE_CONTAINER_REGISTRYto override this -
#9520
04f9164Thanks @vicb! - fix the default value for keep_names (true) -
#9506
36113c2Thanks @penalosa! - Strip theCF-Connecting-IPheader from outgoing fetches -
#9592
49f5ac7Thanks @petebacondarwin! - Point to the right location for docs on telemetry -
#9593
cf33417Thanks @vicb! - drop unusedWRANGLER_UNENV_RESOLVE_PATHSenv var -
#9566
521eeb9Thanks @vicb! - Bump@cloudflare/unenv-presetto 2.3.3 -
#9344
02e2c1eThanks @dario-piotrowicz! - add warning about env not specified to potentially risky wrangler commandsadd a warning suggesting users to specify their target environment (via
-eor--env) when their wrangler config file contains some environments and they are calling one of the following commands:- wrangler deploy
- wrangler versions upload
- wrangler versions deploy
- wrangler versions secret bulk
- wrangler versions secret put
- wrangler versions secret delete
- wrangler secret bulk
- wrangler secret put
- wrangler secret delete
- wrangler triggers deploy
this is a measure we're putting in place to try to prevent developers from accidentally applying changes to an incorrect (potentially even production) environment
-
#9344
02e2c1eThanks @dario-piotrowicz! - allow passing an empty string to the-e|--envflag to target the top-level environment -
#9536
3b61c41Thanks @dario-piotrowicz! - performance improvement: restart a mixed mode session only if the worker's remote bindings have changed -
#9550
c117904Thanks @dario-piotrowicz! - allowstartWorkerto acceptfalseas aninspectoroption (to disable the inspector server) -
#9473
fae8c02Thanks @dario-piotrowicz! - expose newexperimental_maybeStartOrUpdateMixedModeSessionutility
v4.20.0
Minor Changes
-
#9509
0b2ba45Thanks @emily-shen! - feat: add static routing options via 'run_worker_first' to WranglerImplements the proposal noted here https://github.com/cloudflare/workers-sdk/discussions/9143.
This is now usable in
wrangler devand in production - just specify the routes that should hit the worker first withrun_worker_firstin your Wrangler config. You can also omit certain paths with!negative rules.
Patch Changes
-
#9507
1914b87Thanks @dario-piotrowicz! - slightly improve wrangler dev bindings loggingsimprove the bindings loggings by:
- removing the unnecessary (and potentially incorrect)
[connected]suffix for remote bindings - making sure that the modes presented in the bindings logs are correctly aligned
- removing the unnecessary (and potentially incorrect)
-
#9475
931f467Thanks @edmundhung! - add hello world binding that serves as as an explanatory example. -
#9443
95eb47dThanks @dario-piotrowicz! - add workerName option to startMixedModeSession API -
#9541
80b8bd9Thanks @dario-piotrowicz! - make workers created withstartWorkerawait thereadypromise ondispose -
#9443
95eb47dThanks @dario-piotrowicz! - add mixed-mode support for mtls bindings -
#9515
9e4cd16Thanks @dario-piotrowicz! - make sure that remote binding errors are surfaced when using mixed (hybrid) mode -
#9516
92305afThanks @IRCody! - Reorder deploy output when deploying a container worker so the worker url is printed last and the worker triggers aren't deployed until the container has been built and deployed successfully.
v4.19.2
Patch Changes
-
#9461
66edd2fThanks @skepticfx! - Enforce disk limits on container builds -
#9481
d1a1787Thanks @WillTaylorDev! - Force autogenerated aliases to be fully lowercased. -
#9480
1f84092Thanks @dario-piotrowicz! - addexperimentalMixedModedev option tounstable_startWorkeradd an new
experimentalMixedModedev option tounstable_startWorkerthat allows developers to programmatically start a new mixed mode session using startWorker.Example usage:
// index.mjs import { unstable_startWorker } from "wrangler"; await unstable_startWorker({ dev: { experimentalMixedMode: true, }, });// wrangler.jsonc { "$schema": "node_modules/wrangler/config-schema.json", "name": "programmatic-start-worker-example", "main": "src/index.ts", "compatibility_date": "2025-06-01", "services": [ { "binding": "REMOTE_WORKER", "service": "remote-worker", "remote": true } ] }
colinhacks/zod (zod)
v3.25.67
Commits:
v3.25.66
v3.25.65
v3.25.64
Commits:
-
b142ea8Fix $strip -
b6e59c3Check for existence of Error.captureStackTrace -
0c686afRemove type from mime issue path -
af88d74Fix test
v3.25.63
v3.25.62
v3.25.61
v3.25.60
v3.25.59
Configuration
📅 Schedule: Branch creation - "on Monday" (UTC), 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
Deploying content with
Cloudflare Pages
| Latest commit: |
d3a43f1
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://d8f02143.content-f0q.pages.dev |
| Branch Preview URL: | https://renovate-all-minor-patch.content-f0q.pages.dev |
The latest updates on your projects. Learn more about Vercel for Git ↗︎
| Name | Status | Preview | Updated (UTC) |
|---|---|---|---|
| content-docs | ✅ Ready (Inspect) | Visit Preview | Jul 4, 2025 4:05am |