gzacharski / AGH-Praca-inzynierska-front-end

Praca inżynierska "System do wspomagania zarządzania placówką profilaktyki zdrowotnej" autorstwa Bartosza Kordka i Grzegorza Zacharskiego.
MIT License
1 stars 0 forks source link

[Snyk] Upgrade @reduxjs/toolkit from 1.6.1 to 1.9.3 #544

Open snyk-bot opened 1 year ago

snyk-bot commented 1 year ago

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

:information_source: 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.


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

  • 1.9.1 - 2022-11-30

    This bugfix release fixes assorted issues that were reported with RTK 1.9.0, and adds a few additional requested tweaks and improvements.

    Changelog

    Fixes

    The createAsyncThunk.withTypes function was fully broken (it type-checked correctly, but pointed to the wrong function due to a name shadowing issue). That now works correctly.

    The maxRetries option for RTKQ was inadvertently filtering out 0 values, and those are now accepted.

    fulfillWithValue had incorrect types that made it appear as if the data was nested an additional level deeper. The types are now correct.

    The ActionCreatorWithoutPayload type was tweaked to force an error when an action creator is accidentally called with an argument, which happens in cases like onClick={todoAdded}. This avoids accidentally passing values like React event objects as the payload.

    Timer handling for batchActions and autoBatchEnhancer now works in more JS runtime environments.

    Other Changes

    The TagDescription type is now exported from RTKQ.

    API endpoints now have a .name field containing the endpoint name, such as "getPokemon".

    Calling promise.abort() on a createAsyncThunk promise before an async condition resolves will now be treated as if the condition itself returned false, bailing out and not dispatching anything.

    The merge option now receives a third argument containing {arg, baseQueryMeta, fulfilledTimeStamp, requestId}, in case that info is useful in deciding how to merge.

    The @ reduxjs/rtk-codemods package has been updated to fix cases where the createSliceBuilder codemod didn't preserve fields with function variable arguments, like [todoAdded]: adapter.addOne. That package has been updated to v0.0.3.

    What's Changed

    Full Changelog: v1.9.0...v1.9.1

  • 1.9.0 - 2022-11-04
    Read more
  • 1.9.0-rc.1 - 2022-11-02

    This release candidate updates the auto-batching enhancer to accept additional options for queuing subscriber notifications, and improves RTKQ perf by removing some unnecessary internal memoized selectors.

    Please try this out and give us feedback (even if it's just "tried updating and everything's fine")! If no further issues come up we intend to publish 1.9 in the next few days.

    npm i @ reduxjs/toolkit@next
    
    yarn add @ reduxjs/toolkit@next

    Docs updates for 1.9 are complete, and can be viewed here:

    https://deploy-preview-2401--redux-starter-kit-docs.netlify.app/

    Changelog

    Autobatch Enhancer Options

    The initial implementation of the autoBatchEnhancer() always queued delayed subscriber notifications using queueMicrotask. We've updated it to accept alternate options that queue with setTimeout, requestAnimationFrame, or bring-your-own-callback (more similar to redux-batched-subscribe).

    The variation in JS event loop timing behavior (microtasks, macrotasks, and frames) means having these options may be useful in different situations.

    What's Changed

    Full Changelog: v1.9.0-rc.0...v1.9.0-rc.1

  • 1.9.0-rc.0 - 2022-10-30
    Read more
  • 1.9.0-beta.0 - 2022-10-19
  • 1.9.0-alpha.2 - 2022-10-09
  • 1.9.0-alpha.1 - 2022-08-28
  • 1.9.0-alpha.0 - 2022-08-19
  • 1.8.6 - 2022-10-09
  • 1.8.5 - 2022-08-19
  • 1.8.4 - 2022-08-11
  • 1.8.3 - 2022-06-30
  • 1.8.2 - 2022-05-25
  • 1.8.1 - 2022-03-31
  • 1.8.0 - 2022-02-27
  • 1.8.0-rc.0 - 2022-02-27
  • 1.7.2 - 2022-02-03
  • 1.7.1 - 2021-12-16
  • 1.7.0 - 2021-12-10
  • 1.7.0-rc.0 - 2021-11-26
  • 1.7.0-beta.1 - 2021-11-05
  • 1.7.0-beta.0 - 2021-10-29
  • 1.6.2 - 2021-10-05
  • 1.6.1 - 2021-07-17
from @reduxjs/toolkit GitHub release notes

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