chore(deps): update non-major updates#75
Merged
github-actions[bot] merged 1 commit intomainfrom Mar 17, 2026
Merged
Conversation
17a3650 to
e4f5eb2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.20260313.1→4.20260317.10.71.7→0.73.10.71.7→0.73.12.12.10→2.12.125.53.11→5.53.128.57.0→8.57.13.0.10→3.0.124.72.0→4.74.0Release Notes
cloudflare/workerd (@cloudflare/workers-types)
v4.20260317.1Compare Source
v4.20260316.1Compare Source
kane50613/takumi (@takumi-rs/core)
v0.73.1Compare Source
Patch Changes
v0.73.0Compare Source
Minor Changes
349636a: DeprecateAnyNode, replaced with strictNodetypePatch Changes
349636a]v0.72.0Compare Source
mswjs/msw (msw)
v2.12.12Compare Source
v2.12.12 (2026-03-17)
Bug Fixes
cd52873) @kettanaitopostinstallscript (#2649) (b79d7ae) @aloisklink @kettanaito83bc40e) @kettanaitov2.12.11Compare Source
v2.12.11 (2026-03-15)
Bug Fixes
3ccc8a3) @FelmonFekadu @kettanaitosveltejs/svelte (svelte)
v5.53.12Compare Source
Patch Changes
fix: update
select.__valueonchange(#17745)chore: add
invarianthelper for debugging (#17929)fix: ensure deriveds values are correct across batches (#17917)
fix: handle async RHS in
assignment_value_stale(#17925)fix: avoid traversing clean roots (#17928)
typescript-eslint/typescript-eslint (typescript-eslint)
v8.57.1Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
See GitHub Releases for more information.
You can read about our versioning strategy and releases on our website.
bottd/vite-plugin-norg (vite-plugin-norg)
v3.0.12Compare Source
BREAKING CHANGES
3.0.12 (2026-03-15)
3.0.11 (2026-03-13)
Bug Fixes
3.0.10 (2026-03-12)
3.0.9 (2026-03-09)
3.0.8 (2026-03-08)
3.0.7 (2026-03-06)
3.0.6 (2026-03-04)
3.0.5 (2026-03-01)
3.0.4 (2026-02-28)
Bug Fixes
3.0.3 (2026-02-26)
3.0.2 (2026-02-22)
Bug Fixes
3.0.1 (2026-02-22)
Bug Fixes
v3.0.11Compare Source
BREAKING CHANGES
3.0.12 (2026-03-15)
3.0.11 (2026-03-13)
Bug Fixes
3.0.10 (2026-03-12)
3.0.9 (2026-03-09)
3.0.8 (2026-03-08)
3.0.7 (2026-03-06)
3.0.6 (2026-03-04)
3.0.5 (2026-03-01)
3.0.4 (2026-02-28)
Bug Fixes
3.0.3 (2026-02-26)
3.0.2 (2026-02-22)
Bug Fixes
3.0.1 (2026-02-22)
Bug Fixes
cloudflare/workers-sdk (wrangler)
v4.74.0Compare Source
Minor Changes
#10896
351e1e1Thanks @devin-ai-integration! - feat: add--secrets-fileparameter towrangler deployandwrangler versions uploadYou can now upload secrets alongside your Worker code in a single operation using the
--secrets-fileparameter on bothwrangler deployandwrangler versions upload. The file format matches what's used bywrangler versions secret bulk, supporting both JSON and .env formats.Example usage:
Secrets not included in the file will be inherited from the previous version, matching the behavior of
wrangler versions secret bulk.#12873
2b9a186Thanks @gpanders! - Addwrangler containers instances <application_id>command to list container instancesLists all container instances for a given application, matching the Dash instances view. Displays instance ID, state, location, version, and creation time. Supports pagination for applications with many instances. Also adds paginated request support to the containers-shared API client.
Patch Changes
#12873
2b9a186Thanks @gpanders! - AddescapeCodeTimeoutoption toonKeyPressutility for faster Esc key detectionThe
onKeyPressutility now accepts an optionalescapeCodeTimeoutparameter that controls how long readline waits to disambiguate a standalone Esc press from multi-byte escape sequences (e.g. arrow keys). The default remains readline's built-in 500ms, but callers can pass a lower value (e.g. 25ms) for near-instant Esc handling in interactive prompts.#12676
65f1092Thanks @dario-piotrowicz! - Fix autoconfig package installation always failing at workspace rootsWhen running autoconfig at the root of a monorepo workspace, package installation commands now include the appropriate workspace root flags (
--workspace-rootfor pnpm,-Wfor yarn). This prevents errors like "Running this command will add the dependency to the workspace root" that previously occurred when configuring projects at the workspace root.Additionally, autoconfig now allows running at the workspace root if the root directory itself is listed as a workspace package (e.g.,
workspaces: ["packages/*", "."]).#12841
7b0d8f5Thanks @dario-piotrowicz! - Fix unclear error when assets upload session returns anullresponseWhen deploying assets, if the Cloudflare API returns a
nullresponse object, Wrangler now provides a clear error message asking users to retry instead of failing with a confusing error.Updated dependencies [
ade0aed]:v4.73.0Compare Source
Minor Changes
#12853
ff543e3Thanks @gpanders! - Deprecate SSH passthrough flags inwrangler containers sshThe
--cipher,--log-file,--escape-char,--config-file,--pkcs11,--identity-file,--mac-spec,--option, and--tagflags are now deprecated. These flags expose OpenSSH-specific options that are tied to the current implementation. A future release will replace the underlying SSH transport, at which point these flags will be removed. They still function for now.#12815
e63539dThanks @NuroDev! - Support disabling persistence inunstable_startWorker()andunstable_dev()You can now disable persistence entirely by setting
persist: falsein thedevoptions:Or when using
unstable_startWorker():This is useful for testing scenarios where you want to ensure a clean state on each run without any persisted data from previous runs.
Patch Changes
#12861
f7de0fdThanks @dependabot! - Update dependencies of "miniflare", "wrangler"The following dependency versions have been updated:
#12734
8e89e85Thanks @flostellbrink! - Add back support for wrangler d1 exports with multiple tables.Example:
#12807
8d1e130Thanks @MaxwellCalkin! - fix:vectorizecommands now output valid jsonThis fixes:
wrangler vectorize createwrangler vectorize infowrangler vectorize insertwrangler vectorize upsertwrangler vectorize listwrangler vectorize list-vectorswrangler vectorize list-metadata-indexAlso,
wrangler vectorize create --jsonnow also includes thecreated_at,modified_onanddescriptionfields.#12856
6ee18e1Thanks @dario-piotrowicz! - Fix autoconfig for Astro v6 projects to skip wrangler config generationAstro 6+ generates its own wrangler configuration on build, so autoconfig now detects the Astro version and skips creating a
wrangler.jsoncfile for projects using Astro 6 or later. This prevents conflicts between the autoconfig-generated config and Astro's built-in config generation.#12700
4bb61b9Thanks @RiscadoA! - Add client-side validation for VPC service host flagsThe
--hostname,--ipv4, and--ipv6flags onwrangler vpc service createandwrangler vpc service updatenow validate input before sending requests to the API. Previously, invalid values were accepted by the CLI and only rejected by the API with opaque error messages. Now users get clear, actionable error messages for common mistakes like passing a URL instead of a hostname, using an IP address in the--hostnameflag, or providing malformed IP addresses.Updated dependencies [
f7de0fd,ecc7f79,1dda1c8]:Configuration
📅 Schedule: Branch creation - "every weekday" in timezone America/Chicago, 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.
This PR has been generated by Renovate Bot.