Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 19, 2023

Bumps @reduxjs/toolkit from 1.9.2 to 1.9.3.

Release notes

Sourced from @​reduxjs/toolkit's releases.

v1.9.3

This release fixes a couple issues with the skip/skipToken options for query hooks, and makes a small perf tweak to serializing query args.

Changelog

Skip Behavior

We made a change in v1.9.0 that tried to make some skip behavior more consistent, including clearing out the cached data. However, we had overlooked that our own docs actually said "skipping a query will keep the cached data", and several users pointed this out as they'd been relying on that behavior.

We've reverted that change. Now, setting {skip: true} or skipToken for a query with existing results will keep the data value (reflecting the last successful query), but currentData will be undefined (reflecting the current settings).

We also identified and fixed an issue that could cause subscription entries to leak under a specific combination of timing and settings changes.

Query Arg Serialization Perf

RTKQ relies on serializing query arguments to serve as the cache keys, with the default using JSON.stringify() + some logic for sorting keys. There was a report that in some apps, large query arg objects could take a while to stringify and this was being done repeatedly. We've added a WeakMap-based cache for query args to avoid re-serializing existing arg values.

What's Changed

Full Changelog: reduxjs/redux-toolkit@v1.9.2...v1.9.3

Commits
  • a636751 Release 1.9.3
  • 71c3c8c Merge pull request #3193 from reduxjs/bugfix/3147-query-args-perf
  • 04f4131 Use a WeakMap cache for query arg serialization for perf
  • 4fba13e Merge pull request #3188 from reduxjs/bugfix/2871-skip-data
  • 364ff51 Only remove promise in query hook if the subscription was removed
  • 140ca1a Revert "clear data on skip" back to its original behavior
  • 43d94a0 Merge pull request #3158 from petermekhaeil/master
  • d53eea2 docs: Add missing keys to BaseQueryApi
  • bdf8af3 Merge pull request #3135 from vvcigy/patch-1
  • 9917fdf Fix original and current examples
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot requested a review from lars-reimann as a code owner March 19, 2023 17:15
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Mar 19, 2023
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/api-editor/gui/reduxjs/toolkit-1.9.3 branch 2 times, most recently from 9cb89d5 to 90d5c92 Compare March 19, 2023 17:51
Bumps [@reduxjs/toolkit](https://github.com/reduxjs/redux-toolkit) from 1.9.2 to 1.9.3.
- [Release notes](https://github.com/reduxjs/redux-toolkit/releases)
- [Commits](reduxjs/redux-toolkit@v1.9.2...v1.9.3)

---
updated-dependencies:
- dependency-name: "@reduxjs/toolkit"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/api-editor/gui/reduxjs/toolkit-1.9.3 branch from 90d5c92 to 193acef Compare March 19, 2023 17:55
@lars-reimann lars-reimann merged commit 663cff2 into main Mar 19, 2023
@lars-reimann lars-reimann deleted the dependabot/npm_and_yarn/api-editor/gui/reduxjs/toolkit-1.9.3 branch March 19, 2023 18:04
@lars-reimann
Copy link
Member

🎉 This PR is included in version 1.92.1 🎉

The release is available on GitHub release

Your semantic-release bot 📦🚀

@lars-reimann lars-reimann added the released Included in a release label Mar 24, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code released Included in a release

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant