-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bump(deps): update dependency @reduxjs/toolkit to ^1.9.7 #1873
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/reduxjs-toolkit-1.x
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
renovate
bot
requested review from
thedoublejay,
kyleleow and
pierregee
as code owners
September 27, 2023 05:01
github-actions
bot
added
the
kind/dependencies
Pull requests that update a dependency file
label
Sep 27, 2023
✅ Deploy Preview for defi-scan ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
renovate
bot
changed the title
bump(deps): update dependency @reduxjs/toolkit to ^1.9.6
bump(deps): update dependency @reduxjs/toolkit to ^1.9.7
Oct 5, 2023
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
October 5, 2023 00:34
4148632
to
9e3e096
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
2 times, most recently
from
October 23, 2023 08:08
dd6ae99
to
6f8ccda
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
November 1, 2023 03:24
6f8ccda
to
af2d3fc
Compare
renovate
bot
requested review from
chloezxyy,
fullstackninja864 and
lykalabrada
as code owners
November 1, 2023 03:24
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
November 2, 2023 01:54
af2d3fc
to
431be60
Compare
renovate
bot
changed the title
bump(deps): update dependency @reduxjs/toolkit to ^1.9.7
bump(deps): update dependency @reduxjs/toolkit to ^1.9.7 - autoclosed
Nov 14, 2023
renovate
bot
changed the title
bump(deps): update dependency @reduxjs/toolkit to ^1.9.7 - autoclosed
bump(deps): update dependency @reduxjs/toolkit to ^1.9.7
Nov 14, 2023
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
November 14, 2023 06:42
431be60
to
bfa2fea
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
3 times, most recently
from
November 29, 2023 02:40
b4c13f5
to
92cdd3f
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
6 times, most recently
from
November 30, 2023 07:42
a51a682
to
af36821
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
3 times, most recently
from
December 6, 2023 07:05
2e34128
to
c0cb7dd
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
January 3, 2024 05:03
c0cb7dd
to
1986947
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
2 times, most recently
from
February 2, 2024 04:56
b2567c1
to
d10195e
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
March 4, 2024 09:28
d10195e
to
a730bb6
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
2 times, most recently
from
April 1, 2024 05:25
f8b0442
to
c16df15
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
April 30, 2024 02:29
c16df15
to
6920f27
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
July 5, 2024 09:42
6920f27
to
30fef66
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
August 27, 2024 05:58
30fef66
to
68d1fd0
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
September 11, 2024 04:25
68d1fd0
to
012af3a
Compare
renovate
bot
force-pushed
the
renovate/reduxjs-toolkit-1.x
branch
from
October 10, 2024 12:49
012af3a
to
6808fdb
Compare
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:
^1.9.5
->^1.9.7
Release Notes
reduxjs/redux-toolkit (@reduxjs/toolkit)
v1.9.7
Compare Source
This bugfix release rewrites the RTKQ hook TS types to significantly improve TS perf.
Changelog
RTKQ TS Perf
A number of users had reported that Intellisense for RTKQ API objects was extremely slow (multiple seconds) - see discussion in #3214 . We did some perf investigation on user-provided examples, and concluded that the biggest factor to slow RTKQ TS perf was the calculation of hook names like
useGetPokemonQuery
, which was generating a large TS union of types.We've rewritten that hook names type calculation to use mapped types and a couple of intersections. In a specific user-provided stress test repo, it dropped TS calculation time by 60% (2600ms to 1000ms).
There's more potential work we can do to improve things, but this seems like a major perf improvement worth shipping now.
What's Changed
Full Changelog: reduxjs/redux-toolkit@v1.9.6...v1.9.7
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 is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.