Skip to content
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

[Snyk] Upgrade @reduxjs/toolkit from 1.9.2 to 1.9.3 #1

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

maria72865
Copy link
Owner

This PR was automatically created by Snyk using the credentials of a real user.


Snyk has created this PR to upgrade @reduxjs/toolkit from 1.9.2 to 1.9.3.

ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.


  • The recommended version is 1 version ahead of your current version.
  • The recommended version was released 22 days ago, on 2023-02-21.
Release notes
Package name: @reduxjs/toolkit
  • 1.9.3 - 2023-02-21

    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: v1.9.2...v1.9.3

  • 1.9.2 - 2023-01-28

    This bugfix release fixes a memory leak in createListenerMiddleware, optimizes performance inside serializableMiddleware, adds new options for fetchBaseQuery, adds support for path RegExp exclusions in serializableMiddleware and immutabilityMiddleware, and improves some TS types.

    Changelog

    Bug Fixes

    createListenerMiddleware had a memory leak that turned out to be due to use of Promise.race(). We've restructured the logic to fix that.

    fetchBaseQuery now correctly combines global options with endpoint / default options in all cases.

    New Options

    fetchBaseQuery now supports a jsonReplacer option that will be used when processing JSON.

    Both dev check middleware now support regular expressions in the ignoredPaths array in addition to strings. This adds extra flexibility in skipping certain fields.

    TS Changes

    The CaseReducer type was sometimes incorrectly inferring its return type in rare cases. That's been fixed.

    The isAnyOf/isAllOf matcher function TS types have been tweaked to not require an individual first parameter. This allows spreading arrays of matchers as arguments, like const isLoading = isAnyOf(...interestingPendingThunksArray).

    Other Changes

    The serializableMiddleware now uses a WeakSet if available to cache values it's seen. This should significantly speed up checks against large state values in development builds.

    What's Changed

    • fix CaseReducer to infer from argument, not return value by @ phryneas in #3054
    • fetchBaseQuery | Add jsonReplacer param by @ tophep in #2904
    • Support RegExp in ignoredPaths/ignoredActionPaths by @ markerikson in #3129
    • fix(types): export ThunkWithReturnValue interface by @ giomogna in #3108
    • remove unnecessary fetchBaseQuery defaults by @ phryneas in #3062
    • make isAnyOf friendly for mapped matchers, but making argument optional by @ megagon in #3123
    • raceWithSignal method instead of Promise.race by @ phryneas in #3021
    • Fix lint problems and enable linting on CI by @ thorn0 in #2992
    • Add caching to serializableStateInvariantMiddleware by @ GeorchW in #3115
    • Allow TS isolatedModules flag to be set for safer transpilation by @ matmannion in #2911

    Full Changelog: v1.9.1...v1.9.2

from @reduxjs/toolkit GitHub release notes
Commit messages
Package name: @reduxjs/toolkit
  • 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
  • 034b086 Release 1.9.2

Compare


Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.

For more information:

🧐 View latest project report

🛠 Adjust upgrade PR settings

🔕 Ignore this dependency or unsubscribe from future upgrade PRs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants