fix(deps): update all non-major dependencies#22073
Merged
sapphi-red merged 1 commit intomainfrom Mar 30, 2026
Merged
Conversation
40482c0 to
362fcad
Compare
sapphi-red
approved these changes
Mar 30, 2026
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:
^0.1.5→^0.1.114.1.0→4.1.2^3.5.30→^3.5.31^0.9.0→^0.9.1^2.10.10→^2.10.12^4.20260317.1→^4.20260317.310.32.1→10.33.0^1.9.11→^1.9.12^5.54.1→^5.55.1^8.57.1→^8.57.2^8.0.1→^8.0.3^1.7.1→^1.7.3^4.1.0→^4.1.2^3.5.30→^3.5.31Release Notes
vitejs/devtools (@vitejs/devtools)
v0.1.11Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.1.10Compare Source
🐞 Bug Fixes
View changes on GitHub
v0.1.9Compare Source
🚀 Features
View changes on GitHub
v0.1.8Compare Source
No significant changes
View changes on GitHub
vitest-dev/vitest (@vitest/utils)
v4.1.2Compare Source
This release bumps Vitest's
flattedversion and removes version pinning to resolveflatted's CVE related issues (#9975).🐞 Bug Fixes
setupFilesfrom parent directory - by @hi-ogawa in #9960 (7aa93)toMatchScreenshotcan't capture a stable screenshot - by @macarie in #9847 (faace)coverageConfigDefaultsvalues and types - by @Arthie in #9940 (b3c99)View changes on GitHub
v4.1.1Compare Source
🚀 Features
matchesTagsto test if the current filter matches tags - by @sheremet-va in #9913 (eec53)experimental.vcsProvider- by @sheremet-va in #9928 (56115)🐞 Bug Fixes
TestProject.testFilesListinternal properly - by @sapphi-red in #9867 (54f26)use- by @oilater in #9831 and #9861 (633ae)vi.advanceTimersto the preview provider - by @sheremet-va in #9891 (1bc3e)--standalonemode without running tests - by @sheremet-va in #9911 (e78ad)body- by @sheremet-va in #9912 (6fdb2)retry.conditionRegExp serialization issue - by @nstepien and @hi-ogawa in #9942 (7b605)testreturn as tests - by @sheremet-va in #9871 (141e7)View changes on GitHub
vuejs/core (@vue/shared)
v3.5.31Compare Source
Bug Fixes
vuejs/tsconfig (@vue/tsconfig)
v0.9.1Compare Source
Notable Changes
Full Changelog: vuejs/tsconfig@v0.9.0...v0.9.1
web-platform-dx/baseline-browser-mapping (baseline-browser-mapping)
v2.10.12Compare Source
v2.10.11Compare Source
cloudflare/workers-sdk (miniflare)
v4.20260317.3Compare Source
Minor Changes
#13027
9fcdfcaThanks @G4brym! - feat: Addai_search_namespacesandai_searchbinding typesTwo new binding types for AI Search:
ai_search_namespaces: Namespace binding —namespaceis required and auto-provisioned at deploy time if it doesn't exist (like R2 buckets)ai_search: Single instance binding bound directly to a pre-existing instance in the default namespaceBoth are remote-only in local dev.
#13030
0386553Thanks @natewong1313! - Add local mode support for Stream bindingsMiniflare and
wrangler devnow support using Cloudflare Stream bindings locally.Supported operations:
upload()— upload video via URLvideo(id).details(),.update(),.delete(),.generateToken()videos.list()captions.generate(),.list(),.delete()downloads.generate(),.get(),.delete()watermarks.generate(),.list(),.get(),.delete()The following are not yet supported in local mode and will throw:
createDirectUpload()FileFileData is persisted across restarts by default. You must set
streamPersist: falsein Miniflare options to disable persistence.Patch Changes
#12686
1faff35Thanks @edmundhung! - Move internal proxy endpoint to reserved/cdn-cgi/pathThe internal HTTP endpoint used by
getPlatformProxyhas been moved to a reserved path. This is an internal change with no impact on thegetPlatformProxyAPI.#13080
f4ea4acThanks @penalosa! - fix: glob patterns for module rules no longer match double-extension filenames likefoo.wasm.jsPreviously, the
globsToRegExpshelper compiled glob patterns without a trailing$anchor. This caused patterns like**/*.wasmto match any path containing.wasmas a substring — including filenames such asfoo.wasm.jsormain.wasm.test.ts.When using
@cloudflare/vitest-pool-workerswith awrangler.configPath, Wrangler's defaultCompiledWasmmodule rule (**/*.wasm) was silently applied to test files whose names contained.wasm, causing them to be loaded as WebAssembly binaries instead of JavaScript and failing at runtime.The fix restores the
$end anchor in the compiled regex so that**/*.wasmonly matches paths that literally end in.wasm, while the leading^remains absent to allow matching anywhere within an absolute path.v4.20260317.2Compare Source
Patch Changes
#11753
b8f3309Thanks @ruifigueira! - Added the following improvements to local Browser Rendering binding in Miniflare:#12986
5aaaab2Thanks @petebacondarwin! - fix: allow mixedd1Databasesrecords containing both string and object entriesPreviously, passing a
d1Databasesconfig that mixed plain string values and object entries (e.g.{ MY_DB: "db-name", OTHER_DB: { id: "...", remoteProxyConnectionString: ... } }) would cause Miniflare to throw an error. Both forms are now accepted and normalised correctly.#12986
5aaaab2Thanks @petebacondarwin! - fix: allow mixedkvNamespacesrecords containing both string and object entriesPreviously, passing a
kvNamespacesconfig that mixed plain string values and object entries (e.g.{ MY_NS: "ns-name", OTHER_NS: { id: "...", remoteProxyConnectionString: ... } }) would cause Miniflare to throw an error. Both forms are now accepted and normalised correctly.#12987
f8516ddThanks @petebacondarwin! - fix: allow mixedpipelinesrecords containing both string and object entriesPreviously, passing a
pipelinesconfig that mixed plain string values and object entries (e.g.{ MY_PIPELINE: "pipeline-name", OTHER_PIPELINE: { pipeline: "...", remoteProxyConnectionString: ... } }) would cause Miniflare to throw an error. Both forms are now accepted and normalised correctly.#12952
9c9fe30Thanks @petebacondarwin! - fix: allow mixedr2Bucketsrecords containing both string and object entriesPreviously, passing an
r2Bucketsconfig that mixed plain string values and object entries (e.g.{ MY_BUCKET: "bucket-name", OTHER_BUCKET: { ... } }) would cause Miniflare to throw an error. Both forms are now accepted and normalised correctly.#13015
6a6449eThanks @petebacondarwin! - fix: disable undici Pool request timeouts for local devMiniflare's undici
Poolinstances were using the defaultheadersTimeoutandbodyTimeoutof 300 seconds (5 minutes). Any request taking longer than that — streaming responses, large uploads, long-polling, or compute-heavy Workers — would be silently killed with a "request failed" error.Setting both timeouts to
0disables them entirely, which is the correct behaviour for a local development tool where there is no reason to enforce request timeouts.pnpm/pnpm (pnpm)
v10.33.0Compare Source
sveltejs/svelte (svelte)
v5.55.1Compare Source
Patch Changes
fix: correctly handle bindings on the server (#18009)
fix: prevent hydration error on async
{@​html ...}(#17999)fix: cleanup
superTypeParametersinClassDeclarations/ClassExpression(#18015)fix: improve duplicate module import error message (#18016)
fix: reschedule new effects in prior batches (#18021)
v5.55.0Compare Source
Minor Changes
Patch Changes
typescript-eslint/typescript-eslint (typescript-eslint)
v8.57.2Compare 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.
vitejs/vite (vite)
v8.0.3Compare Source
Features
Bug Fixes
metaidentifier insideimport.metawhen a binding namedmetaexists (#22019) (cff5f0c)Miscellaneous Chores
Tests
getCssFilesForChunk(#22016) (43fbbf9)v8.0.2Compare Source
Features
Bug Fixes
Miscellaneous Chores
yuyinws/vitepress-plugin-group-icons (vitepress-plugin-group-icons)
v1.7.3Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v1.7.2Compare Source
🚀 Features
View changes on GitHub
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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.
This PR was generated by Mend Renovate. View the repository job log.