fix(deps): update all non-major dependencies #8263
Merged
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:
2.13.7->2.13.81.8.4->1.8.54.14.183->4.14.18416.11.49->16.11.510.185.0->0.185.10.185.0->0.185.1Release Notes
dotansimha/graphql-yoga
v2.13.8Compare Source
Patch Changes
5193e43]:reduxjs/redux-toolkit
v1.8.5Compare Source
This bugfix releas fixes an issue with large
keepUnusedDataForvalues overflowing JS timers, exports the types for the Redux DevTools Extension option, and and improves behavior of URL string generation.Changelog
keepUnusedDataForTimer FixkeepUnusedDataForaccepts a value in seconds. When there are no more active subscriptions for a piece of data, RTKQ will set a timer usingsetTimeout, andkeepUnusedDataFor * 1000as the timer value.We've been advising users that if they want to keep data in the cache forever that they should use a very large value for
keepUnusedDataFor, such as 10 years in seconds.However, it turns out that JS engines use a 32-bit signed int for timers, and 32-bits in milliseconds is only 24.8 days. If a timer is given a value larger than that, it triggers immediately.
We've updated the internal logic to clamp the
keepUnusedDataForvalue to be between 0 andTHIRTY_TWO_BIT_MAX_TIMER_SECONDS - 1.Note that in RTK 1.9 (coming soon), RTKQ will also accept
Infinityas a specialkeepUnusedDataForvalue to indicate cached data should never be expired.Other Changes
RTK inlines the TS types for the Redux DevTools Extension options to avoid an extra dependency, but the TS type for the options object wasn't exported publicly. We now export the
DevToolsEnhancerOptionstype.The logic for generating a final URL has been updated to avoid adding an extra trailing
/.What's Changed
keepUnusedDataForvalues from overflowingsetTimeoutcounter by @markerikson in https://github.com/reduxjs/redux-toolkit/pull/2595Full Changelog: reduxjs/redux-toolkit@v1.8.4...v1.8.5
flowtype/flow-bin
v0.185.1Compare Source
facebook/flow
v0.185.1Compare Source
Misc:
autoimports_ranked_by_usage=true)Configuration
📅 Schedule: Branch creation - "after 10pm,before 6:00am" in timezone Europe/Warsaw, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Mend Renovate. View repository job log here.