fix(deps): update all non-major dependencies #1918
Open
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:
^8.0.0-beta.1
->^8.0.0-beta.2
^7.28.3
->^7.28.4
^7.28.0
->^7.28.4
^7.28.3
->^7.28.4
^9.34.0
->^9.35.0
^2.8.2
->^2.9.0
^9.1.3
->^9.1.5
^9.1.3
->^9.1.5
^0.1.4
->^0.1.6
^22.18.0
->^22.18.1
^7.7.0
->^7.7.1
^8.41.0
->^8.42.0
^8.41.0
->^8.42.0
^9.34.0
->^9.35.0
^30.1.2
->^30.1.3
^9.1.3
->^9.1.5
^8.41.0
->^8.42.0
Release Notes
babel/babel (@babel/code-frame)
v8.0.0-beta.2
Compare Source
v8.0.0-beta.2 (2025-09-05)
💥 Breaking Change
babel-standalone
@babel/standalone
(@gwillen)🐛 Bug Fix
babel-types
d
andv
flag inregExpLiteral
builder (@JLHwung)babel-parser
💅 Polish
babel-plugin-transform-block-scoping
,babel-plugin-transform-classes
,babel-plugin-transform-object-rest-spread
,babel-traverse
babel-core
,babel-helpers
,babel-runtime-corejs3
,babel-traverse
,babel-types
babel-core
🏠 Internal
Committers: 9
babel/babel (@babel/core)
v7.28.4
Compare Source
🏠 Internal
babel-core
,babel-helper-check-duplicate-nodes
,babel-traverse
,babel-types
babel-plugin-transform-regenerator
transform-regenerator
(@liuxingbaoyu)babel-core
eslint/eslint (@eslint/js)
v9.35.0
Compare Source
reduxjs/redux-toolkit (@reduxjs/toolkit)
v2.9.0
Compare Source
This feature release rewrites RTK Query's internal subscription and polling systems and the
useStableQueryArgs
hook for better perf, adds automaticAbortSignal
handling to requests still in progress when a cache entry is removed, fixes a bug with thetransformResponse
option for queries, adds a newbuilder.addAsyncThunk
method, and fixes assorted other issues.Changelog
RTK Query Performance Improvements
We had reports that RTK Query could get very slow when there were thousands of subscriptions to the same cache entry. After investigation, we found that the internal polling logic was attempting to recalculate the minimum polling time after every new subscription was added. This was highly inefficient, as most subscriptions don't change polling settings, and it required repeated O(n) iteration over the growing list of subscriptions. We've rewritten that logic to debounce the update check and ensure a max of one polling value update per tick for the entire API instance.
Related, while working on the request abort changes, testing showed that use of plain
Record
s to hold subscription data was inefficient because we have to iterate keys to check size. We've rewritten the subscription handling internals to useMap
s instead, as well as restructuring some additional checks around in-flight requests.These two improvements drastically improved runtime perf for the thousands-of-subscriptions-one-cache-entry repro, eliminating RTK methods as visible hotspots in the perf profiles. It likely also improves perf for general usage as well.
We've also changed the implementation of our internal
useStableQueryArgs
hook to avoid callingserializeQueryArgs
on its value, which can avoid potential perf issues when a query takes a very large object as its cache key.Abort Signal Handling on Cleanup
We've had numerous requests over time for various forms of "abort in-progress requests when the data is no longer needed / params change / component unmounts / some expensive request is taking too long". This is a complex topic with multiple potential use cases, and our standard answer has been that we don't want to abort those requests - after all, cache entries default to staying in memory for 1 minute after the last subscription is removed, so RTKQ's cache can still be updated when the request completes. That also means that it doesn't make sense to abort a request "on unmount".
However, it does then make sense to abort an in-progress request if the cache entry itself is removed. Given that, we've updated our cache handling to automatically call the existing
resPromise.abort()
method in that case, triggering theAbortSignal
attached to thebaseQuery
. The handling at that point depends on your app -fetchBaseQuery
should handle that, a custombaseQuery
orqueryFn
would need to listen to theAbortSignal
.We do have an open issue asking for further discussions of potential abort / cancelation use cases and would appreciate further feedback.
New Options
The builder callback used in
createReducer
andcreateSlice.extraReducers
now hasbuilder.addAsyncThunk
available, which allows handling specific actions from a thunk in the same way that you could define a thunk insidecreateSlice.reducers
:createApi
and individual endpoint definitions now accept askipSchemaValidation
option with an array of schema types to skip, ortrue
to skip validation entirely (in case you want to use a schema for its types, but the actual validation is expensive).Bug Fixes
The infinite query implementation accidentally changed the query internals to always run
transformResponse
if provided, including if you were usingupsertQueryData()
, which then broke. It's been fixed to only run on an actual query request.The internal changes to the structure of the
state.api.provided
structure broke our handling ofextractRehydrationInfo
- we've updated that to handle the changed structure.The infinite query status fields like
hasNextPage
are now a looser type ofboolean
initially, rather than strictlyfalse
.TS Types
We now export Immer's
WritableDraft
type to fix another non-portable types issue.We've added an
api.endpoints.myEndpoint.types.RawResultType
types-only field to match the other available fields.What's Changed
transformResponse
when aquery
is used by @markerikson in #5049Full Changelog: reduxjs/redux-toolkit@v2.8.2...v2.9.0
storybookjs/storybook (@storybook/addon-onboarding)
v9.1.5
Compare Source
9.1.5
satisfies x as y
syntax - #32169, thanks @diagramatics!v9.1.4
Compare Source
9.1.4
docgen
option to disable docgen processing - #32319, thanks @copilot-swe-agent!@sveltejs/vite-plugin-svelte
v6 - #32320, thanks @JReinhold!storybookjs/storybook (@storybook/react-vite)
v9.1.5
Compare Source
satisfies x as y
syntax - #32169, thanks @diagramatics!v9.1.4
Compare Source
docgen
option to disable docgen processing - #32319, thanks @copilot-swe-agent!@sveltejs/vite-plugin-svelte
v6 - #32320, thanks @JReinhold!typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v8.42.0
Compare Source
🩹 Fixes
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v8.42.0
Compare Source
This was a version bump only for parser to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
eslint/eslint (eslint)
v9.35.0
Compare Source
jestjs/jest (jest)
v30.1.3
Compare Source
Fixes
unstable_mockModule
withnode:
prefixed core modules.typescript-eslint/typescript-eslint (typescript-eslint)
v8.42.0
Compare Source
🚀 Features
🩹 Fixes
❤️ Thank You
You can read about our versioning strategy and releases on our website.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.