👷 Update all non-major dependencies - #4952
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
|
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
August 16, 2026 09:15
b781e94 to
137d2f5
Compare
Bundles Sizes Evolution
|
renovate
Bot
force-pushed
the
renovate/all-minor-patch
branch
from
August 16, 2026 21:43
137d2f5 to
94c1ff7
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:
22.1.0→22.1.122.1.222.1.0→22.1.122.1.222.1.0→22.1.122.1.222.1.0→22.1.122.1.222.1.0→22.1.122.1.23.2.10→3.2.122.8.1→2.8.22.146.3→2.147.71.170.18→1.170.251.170.29(+3)1.170.18→1.170.251.170.29(+3)26.1.2→26.2.08.65.0→8.66.08.67.03.5.40→3.5.4110.8.0→10.8.1v4.37.4→v4.37.6v4.37.716.2.12→16.3.016.3.116.2.12→16.3.016.3.126.6.0→26.7.026.6.0-bookworm-slim→26.7.0-bookworm-slim4.5.1→4.5.225.4.0→25.5.025.7.0(+1)1.2.1→1.2.31.2.48.65.0→8.66.08.67.08.9.0→8.10.08.2.0→8.2.13.5.40→3.5.413.5.40→3.5.418.21.1→8.21.3Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
angular/angular (@angular/common)
v22.1.1Compare Source
core
http
DataDog/build-plugins (@datadog/webpack-plugin)
v3.2.12Compare Source
What's Changed
v3.2.11by @dd-octo-sts[bot] in #477New Contributors
Full Changelog: DataDog/build-plugins@v3.2.11...v3.2.12
v3.2.11Compare Source
What's Changed
v3.2.10by @dd-octo-sts[bot] in #475Full Changelog: DataDog/build-plugins@v3.2.10...v3.2.11
module-federation/core (@module-federation/enhanced)
v2.8.2Compare Source
Patch Changes
salesforcecli/cli (@salesforce/cli)
v2.147.7Compare Source
!! Release as nightly !!
v2.147.6Compare Source
!! Release as nightly !!
v2.147.5Compare Source
!! Release as nightly !!
v2.147.4Compare Source
!! Release as nightly !!
v2.147.3Compare Source
!! Release as nightly !!
v2.147.2Compare Source
!! Release as nightly !!
v2.147.1Compare Source
!! Release as nightly !!
v2.147.0Compare Source
!! Release as nightly !!
TanStack/router (@tanstack/react-router)
v1.170.25Compare Source
Patch Changes
51138a8]:v1.170.24Compare Source
Patch Changes
44a8c3e,5253e70]:v1.170.23Compare Source
Patch Changes
95dec51- bail out ofLinkre-renders when the resolved href and active state are unchangedv1.170.22Compare Source
Patch Changes
#7992
ea3a665- retain mounted UI during revalidationUpdated dependencies [
ea3a665]:v1.170.21Compare Source
Patch Changes
#7961
697ebb6- Prevent a blank frame before zero-delay initial pending UI by using acomponent-scoped React transition for match publication. Pending timing,
boundary selection, and rendered matches continue to come from the router
core.
#7970
2435885- createFileRoute does not rely on FileRoute class#7971
86bf510- clean intersection observer options in link component#7967
6aefb33- Preserve path params in their raw string form while matching routes so structured values returned byparams.parseproduce stable match IDs and do not reuse stale loader data.RouterCore.getMatchedRoutes()now returns[matchedRoutes, rawParams, foundRoute]instead of an object.Updated dependencies [
84db4a8,9cac62a,6aefb33]:v1.170.20Compare Source
Patch Changes
b2908c6]:v1.170.19Compare Source
Patch Changes
#7805
45c4ad8- Rewrite match loading around a lane-based scheduler that tracks each navigation, preload, and background reload as an ordered unit of work. This fixes pending/redirect/retry state leaking between overlapping navigations, restores correct SSR status codes for redirects, errors, and not-found responses, and closes hydration gaps where the client re-ran work the server had already completed.headers()now only runs on the server, matching the documented behavior — it is no longer invoked during client-side asset projection.gcTimeandpreloadGcTimenow match the existing runtime default of 5 minutes (300_000).Removed / changed exported internals
RouterStateno longer includesloadedAt,isTransitioning,statusCode, orredirect. Usematch.updatedAtin place ofloadedAt; subscribe torouter.state.status/router.state.isLoadingin place ofisTransitioning; server response status and redirect handling are now internal to the server loader and are no longer exposed onrouter.state.RouteMatch.fetchCounthas been removed, with no replacement — it was purely informational.RouteMatch.statusno longer includes'redirected'(it remains'pending' | 'success' | 'error' | 'notFound') — redirected matches are dropped from the match list instead of being rendered.RouteMatch.globalNotFoundhas been renamed and privatized to the internal_notFoundfield. Usematch.status === 'notFound'instead.Matchcomponents now acceptrouteIdinstead ofmatchId.RouterStoresadapter contract now uses route-keyed presentation stores:matchesIdis replaced byids,matchStoresbybyRoute, andgetRouteMatchStore()bygetMatchStore(). The separateloadedAt,isLoading,isTransitioning,statusCode, andredirectstores have been removed, along with the pending/cache stores and their setters.StoreConfig.inithas also been removed. Read application-facing state fromrouter.state; preload and cache coordination are now internal.RouterCoremembersgetMatch(),updateMatch(),cancelMatch(), andcancelMatches()— read matches fromrouter.state.matches(e.g.router.state.matches.find((m) => m.id === id)); there is no replacement for mutating or cancelling an individual in-flight match from outside the router.RouterCore.hasNotFoundMatch()— userouter.state.matches.some((m) => m.status === 'notFound').RouterCore.looseRoutesById— useroutesById.RouterCore.isPrerendering(),RouterCore.isViewTransitionTypesSupported, andRouterCore.viewTransitionPromise, with no replacement.RouterCore.getParsedLocationHref()andRouterCore.clearExpiredCache(), with no replacement — expired cache entries are now reconciled automatically as part of match commit.RouterCore.latestLoadPromiseandRouterCore.beforeLoad(), with no replacement.RouterCore.commitLocationPromiseandRouterCore.pendingBuiltLocationhave been replaced by the internal_commitPromiseand_pendingLocationfields.GetMatchFnandUpdateMatchFntypes, along with the methods they typed.getMatchedRoutes()export from@tanstack/router-core— use therouter.getMatchedRoutes()instance method instead.RouterCore.loadRouteChunk()no longer accepts an array of component types as its second argument. One-argument usage is unchanged; the optional second argument is now'errorComponent','notFoundComponent', orfalsefor internal boundary loading.Redirect.redirectHandled, which was internal redirect bookkeeping.MatchRoutesOpts.preloadandMatchRoutesOpts.desthave been removed.StartTransitionFnis now(fn, expected) => Promise<boolean>(previously(fn) => void). This only affects custom framework adapters that implementstartTransition.Updated dependencies [
45c4ad8]:typescript-eslint/typescript-eslint (@typescript-eslint/utils)
v8.66.0Compare Source
This was a version bump only for utils 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.
vuejs/core (@vue/compiler-dom)
v3.5.41Compare Source
Bug Fixes
eslint/eslint (eslint)
v10.8.1Compare Source
Bug Fixes
18eb0a7fix: prevent ASI hazard inno-unused-labelsautofix (#21173) (dongkyu lee)151ba3ffix: false positives ingetter-returnandaccessor-pairs(#21163) (Grit)6898df9fix: ignore meta-property names inid-denylist(#21166) (Pixel)4d7db66fix: ignore meta-property names inid-match(#21167) (Pixel)677214efix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)Documentation
7d0cbf8docs: Update README (GitHub Actions Bot)0a05812docs: add missing backticks tono-duplicate-imports.js(#21183) (Lee Daeun)678c90bdocs: Update README (GitHub Actions Bot)8a10424docs: Update README (GitHub Actions Bot)69bb948docs: Update README (GitHub Actions Bot)Chores
0a14800chore: update github/codeql-action action to v4.37.4 (#21196) (renovate[bot])05adcb1test: fix failing ecosystem test foreslint-plugin-unicorn(#21191) (Lazizbek Ergashev)5611035test: add error locations info tono-void(#21185) (Lee Daeun)ee47333ci: bump github/codeql-action from 4 to 4.37.3 (#21176) (dependabot[bot])f131c03chore: improve ecosystem test failure reporting (#20937) (crimsonjay0)1f6eddechore: update ecosystem plugins (#21182) (ESLint Bot)d3266fbchore: unpinwebpackdependency (#21172) (Francesco Trotta)65a6519chore: add allowScripts field to package.json (#21092) (GiHoon Noh)22e5256ci: addtriage:nolabel to Dependabot PRs (#21141) (lumir)55c9038ci: bump actions/labeler from 6 to 7 (#21159) (dependabot[bot])7280e78chore: update dependency prettier to v3.9.6 (#21162) (renovate[bot])eddbad6test: fix failing ecosystem test foreslint-plugin-unicorn(#21156) (Francesco Trotta)60a178dchore: update ecosystem plugins (#21150) (ESLint Bot)f9f61dctest: add error locations tono-unreachable(#21151) (JIYEON)d086293test: add error locations tono-undef(#21147) (JIYEON)cc01b67test: add error locations tono-useless-catch(#21144) (devoil)688e75echore: add missing backticks in JSDoc (#21143) (Bo Hyun Kim)7c1e175test: add error locations torequire-await(#21145) (Grit)588a26dtest: add error locations tono-extra-label(#21139) (dongkyu lee)059aa89test: add error locations tono-useless-concat(#21140) (dongkyu lee)5a452a8test: add error locations tono-const-assign(#21138) (dongkyu lee)github/codeql-action (github/codeql-action)
v4.37.6Compare Source
.github/codeql-config.ymlto align it with the suggested path that is used elsewhere. #4070v4.37.5Compare Source
initAction instead of falling back to downloading the bundle before extracting it. #4061vercel/next.js (next)
v16.3.0Compare Source
nodejs/node (node)
v26.7.0: 2026-08-05, Version 26.7.0 (Current), @aduh95Compare Source
Notable Changes
58717685a1] - (SEMVER-MINOR) crypto: support loading private keys through STORE loaders (Filip Skokan) #6394944b940ee8c] - crypto: update root certificates to NSS 3.125 (Node.js GitHub Bot) #64746c1e4f7365e] - (SEMVER-MINOR) lib: add perfetto support (Chengzhong Wu) #6456511c2f9c642] - (SEMVER-MINOR) module: implementSymbol.disposeinModuleHooks(Remco Haszing) #63928a646319f61] - (SEMVER-MINOR) test_runner: add support for--test-coverage-include-all(avivkeller) #64830Commits
a2d3f891d3] - async_hooks: use validateBoolean for trackPromises (Soul Lee) #64731d7266cdd99] - benchmark: fix calibrate-n option handling (Luan Muniz) #641462e64293e3f] - buffer: use Clamp conversion in Blob slice (Donghoon Kang) #647395fda0958bd] - buffer: validate copyArrayBuffer offsets against buffer length (Ilia Alshanetsky) #639045298db40f9] - build: run perfetto build and test on GHA (Chengzhong Wu) #64721e3eac7cef9] - build: fix v8_use_perfetto source scraping (Chengzhong Wu) #64721ab5f076d7f] - build: bump rustc requirement to >=1.86 (Renegade334) #64543df608e061f] - (SEMVER-MINOR) build: perfetto-sdk (Chengzhong Wu) #6456574928adc46] - build,tools: fix shared library cross-compile (Kirill Saied) #6396358717685a1] - (SEMVER-MINOR) crypto: support loading private keys through STORE loaders (Filip Skokan) #6394958d13b6f3d] - crypto: preserve OpenSSL errors from KDF failures (Filip Skokan) #64776478a719cb5] - crypto: fix Argon2 bypassing FIPS mode (Filip Skokan) #6477644b940ee8c] - crypto: update root certificates to NSS 3.125 (Node.js GitHub Bot) #64746fde85237c7] - crypto: clarify missing cipher error (Filip Skokan) #64852c604d8846d] - crypto: reuse X509 issuer result (Filip Skokan) #64852c68c7d0112] - crypto: validate key generation options (Filip Skokan) #64852c36bb1d017] - crypto: fix Argon2 validation errors (Filip Skokan) #64852f61408bb27] - crypto: handle XOF output allocation failure (Filip Skokan) #648512b4053d046] - crypto: initialize KeyObjectData mutex eagerly (Filip Skokan) #648514b7b2adf44] - crypto: handle DH operation failures (Filip Skokan) #6485112170c3753] - crypto: use user-facing error for output encoding changes (Archkon) #64692474f06d550] - debugger: preserve overlapping CDP request state (Trivikram Kamat) #64467718cbe9497] - deps: upgrade npm to 11.19.0 (npm team) #64883657c6154b3] - deps: update ngtcp2 to 1.25.0 (Node.js GitHub Bot) #6494475a1fbeff9] - deps: update nghttp3 to 1.18.0 (Node.js GitHub Bot) #6494307d7cb7cd8] - deps: update minimatch to 10.2.6 (Node.js GitHub Bot) #64945f7d56359f1] - deps: update simdjson to 4.6.6 (Node.js GitHub Bot) #649428b06457cfb] - deps: update acorn to 8.18.0 (Node.js GitHub Bot) #649415919d01525] - deps: update googletest to1b6f64d(Node.js GitHub Bot) #649404a87ad6cff] - deps: update nghttp2 to 1.70.Configuration
📅 Schedule: (UTC)
🚦 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.