Update all dependencies #318

Merged
kjuulh merged 1 commits from renovate/all into main 2024-02-17 12:25:57 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
@reduxjs/toolkit (source) dependencies minor 2.1.0 -> 2.2.1
@testing-library/jest-dom devDependencies patch 6.4.1 -> 6.4.2
@types/node (source) devDependencies patch 20.11.16 -> 20.11.19
clap dependencies minor 4.4.18 -> 4.5.1

Release Notes

reduxjs/redux-toolkit

v2.2.1

Compare Source

v2.2.0

Compare Source

This minor release:

  • Adds a second parameter to entityAdapter.getInitialState(additionalProps, entities) to allow prefilling state
    • Equivalent to entityAdapter.setAll(entityAdapter.getInitialState(additionalProps), entities)
    • First parameter can be undefined if no additional properties are desired
  • Allows initialising combineSlices with no static reducers
    • Previously const combinedReducer = combineSlices().withLazyLoadedSlices<LazyLoadedSlices>() would have thrown an error
    • Now returns a "no-op" reducer that just returns an empty object until first reducer injected
  • Allows a new 'throw' value for overrideExisting in injectEndpoints, which throws an error if a definition is injected with a name which is already used
  • Exports more type helpers for RTKQ hook and trigger types
  • Exports types related to overriding result types in enhanceEndpoints
  • Fixes state inference for injected slices when undeclared (i.e. not in LazyLoadedSlices)
  • Adds a action.meta.arg.isPrefetch value to query thunk actions when prefetched

What's Changed

New Contributors

Full Changelog: https://github.com/reduxjs/redux-toolkit/compare/v2.1.0...v2.2.0

testing-library/jest-dom

v6.4.2

Compare Source

Bug Fixes
  • Remove errant export of GetByRoleMatcher, fixing type checking in some TS configurations (#​575) (a93c0c4)
clap-rs/clap

v4.5.1

Compare Source

Fixes
  • (error) Include suggestion to add -- even if there is a "did you mean" so long as last or trailing_var_arg is used

v4.5.0

Compare Source

Compatibility
  • Update MSRV to 1.74

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@reduxjs/toolkit](https://redux-toolkit.js.org) ([source](https://github.com/reduxjs/redux-toolkit)) | dependencies | minor | [`2.1.0` -> `2.2.1`](https://renovatebot.com/diffs/npm/@reduxjs%2ftoolkit/2.1.0/2.2.1) | | [@testing-library/jest-dom](https://github.com/testing-library/jest-dom) | devDependencies | patch | [`6.4.1` -> `6.4.2`](https://renovatebot.com/diffs/npm/@testing-library%2fjest-dom/6.4.1/6.4.2) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | devDependencies | patch | [`20.11.16` -> `20.11.19`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.16/20.11.19) | | [clap](https://github.com/clap-rs/clap) | dependencies | minor | `4.4.18` -> `4.5.1` | --- ### Release Notes <details> <summary>reduxjs/redux-toolkit</summary> ### [`v2.2.1`](https://github.com/reduxjs/redux-toolkit/compare/v2.2.0...v2.2.1) [Compare Source](https://github.com/reduxjs/redux-toolkit/compare/v2.2.0...v2.2.1) ### [`v2.2.0`](https://github.com/reduxjs/redux-toolkit/releases/tag/v2.2.0) [Compare Source](https://github.com/reduxjs/redux-toolkit/compare/v2.1.0...v2.2.0) This *minor release*: - Adds a second parameter to `entityAdapter.getInitialState(additionalProps, entities)` to allow prefilling state - Equivalent to `entityAdapter.setAll(entityAdapter.getInitialState(additionalProps), entities)` - First parameter can be `undefined` if no additional properties are desired - Allows initialising `combineSlices` with no static reducers - Previously `const combinedReducer = combineSlices().withLazyLoadedSlices<LazyLoadedSlices>()` would have thrown an error - Now returns a "no-op" reducer that just returns an empty object until first reducer injected - Allows a new `'throw'` value for `overrideExisting` in `injectEndpoints`, which throws an error if a definition is injected with a name which is already used - Exports more type helpers for RTKQ hook and trigger types - Exports types related to overriding result types in `enhanceEndpoints` - Fixes state inference for injected slices when undeclared (i.e. not in `LazyLoadedSlices`) - Adds a `action.meta.arg.isPrefetch` value to query thunk actions when prefetched #### What's Changed - Revamp type tests setup by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4095 - Bump Prettier and Prettier related packages by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4126 - Fix codemods to work with TypeScript 4.7+ by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4081 - Export types related to overriding the result types by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4134 - Migrate type tests to Vitest by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4127 - Fix RetryOptions type test by flipping order by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4136 - Format all files by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4135 - \[Docs/Website] skipPollingIfUnfocused added to polling overview and query options by [@&#8203;riqts](https://github.com/riqts) in https://github.com/reduxjs/redux-toolkit/pull/4131 - \[Docs] Changed create.asyncThunk setup admonition to caution by [@&#8203;riqts](https://github.com/riqts) in https://github.com/reduxjs/redux-toolkit/pull/4150 - Temporarily revert node-fetch bump until ESM issues are sorted by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4151 - Contributing Markdown Refresh by [@&#8203;itz-Me-Pj](https://github.com/itz-Me-Pj) in https://github.com/reduxjs/redux-toolkit/pull/4139 - investigate re-adding size limit action by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4083 - Add size limit imports for more commonly used RTK exports by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4155 - pure some things by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4157 - cut back on suffixes tested for size by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4160 - Incorrect builder method referenced by [@&#8203;kantbtrue](https://github.com/kantbtrue) in https://github.com/reduxjs/redux-toolkit/pull/4161 - Rename `cli.js` to `cli.mjs` by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4169 - Migrate Codegen OpenAPI's unit tests to Vitest by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4137 - Fix wrong state for injected slices when not declared via `withLazyLoadedSlices` by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4172 - \[Docs, createEntityAdapter API]: add missing setOne and setMany signature by [@&#8203;kyselberg](https://github.com/kyselberg) in https://github.com/reduxjs/redux-toolkit/pull/4173 - Corrected the "Observing cache behaviour" example point no.4 by [@&#8203;721-atikshaikh](https://github.com/721-atikshaikh) in https://github.com/reduxjs/redux-toolkit/pull/4174 - feat: add isPrefetch property in query action by [@&#8203;juliengbt](https://github.com/juliengbt) in https://github.com/reduxjs/redux-toolkit/pull/4177 - allow initialising combined slice reducer with no static slices by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4184 - Create more Typed wrappers for RTKQ hook types by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4147 - proposal fix for axios base query types by [@&#8203;smff](https://github.com/smff) in https://github.com/reduxjs/redux-toolkit/pull/4186 - Provide 'throw' option for `overrideExisting` by [@&#8203;ffluk3](https://github.com/ffluk3) in https://github.com/reduxjs/redux-toolkit/pull/4189 - Use vite-tsconfig-paths to make path aliasing easier by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4175 - Remove trailing commas in `tsconfig.json` files of all CodesandBox examples by [@&#8203;aryaemami59](https://github.com/aryaemami59) in https://github.com/reduxjs/redux-toolkit/pull/4190 - \[Docs] Added withTypes documentation in createDraftSafeSelector by [@&#8203;riqts](https://github.com/riqts) in https://github.com/reduxjs/redux-toolkit/pull/4143 - Add second parameter to getInitialState to prefill entities by [@&#8203;EskiMojo14](https://github.com/EskiMojo14) in https://github.com/reduxjs/redux-toolkit/pull/4183 #### New Contributors - [@&#8203;itz-Me-Pj](https://github.com/itz-Me-Pj) made their first contribution in https://github.com/reduxjs/redux-toolkit/pull/4139 - [@&#8203;kantbtrue](https://github.com/kantbtrue) made their first contribution in https://github.com/reduxjs/redux-toolkit/pull/4161 - [@&#8203;kyselberg](https://github.com/kyselberg) made their first contribution in https://github.com/reduxjs/redux-toolkit/pull/4173 - [@&#8203;721-atikshaikh](https://github.com/721-atikshaikh) made their first contribution in https://github.com/reduxjs/redux-toolkit/pull/4174 - [@&#8203;smff](https://github.com/smff) made their first contribution in https://github.com/reduxjs/redux-toolkit/pull/4186 - [@&#8203;ffluk3](https://github.com/ffluk3) made their first contribution in https://github.com/reduxjs/redux-toolkit/pull/4189 **Full Changelog**: https://github.com/reduxjs/redux-toolkit/compare/v2.1.0...v2.2.0 </details> <details> <summary>testing-library/jest-dom</summary> ### [`v6.4.2`](https://github.com/testing-library/jest-dom/releases/tag/v6.4.2) [Compare Source](https://github.com/testing-library/jest-dom/compare/v6.4.1...v6.4.2) ##### Bug Fixes - Remove errant export of GetByRoleMatcher, fixing type checking in some TS configurations ([#&#8203;575](https://github.com/testing-library/jest-dom/issues/575)) ([a93c0c4](https://github.com/testing-library/jest-dom/commit/a93c0c4a20ed4d3a9656261ea6a449d1015b7879)) </details> <details> <summary>clap-rs/clap</summary> ### [`v4.5.1`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;451---2024-02-16) [Compare Source](https://github.com/clap-rs/clap/compare/v4.5.0...v4.5.1) ##### Fixes - *(error)* Include suggestion to add `--` even if there is a "did you mean" so long as `last` or `trailing_var_arg` is used ### [`v4.5.0`](https://github.com/clap-rs/clap/blob/HEAD/CHANGELOG.md#&#8203;450---2024-02-08) [Compare Source](https://github.com/clap-rs/clap/compare/v4.4.18...v4.5.0) ##### Compatibility - Update MSRV to 1.74 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh added 1 commit 2024-02-05 14:10:30 +01:00
Update dependency @testing-library/jest-dom to v6.4.2
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
e5b74403b6
kjuulh changed title from Update dependency @testing-library/jest-dom to v6.4.2 to Update all dependencies 2024-02-08 18:38:29 +01:00
kjuulh force-pushed renovate/all from e5b74403b6 to f75ac24eec 2024-02-08 18:38:31 +01:00 Compare
kjuulh force-pushed renovate/all from f75ac24eec to adf6716d54 2024-02-08 22:21:27 +01:00 Compare
kjuulh force-pushed renovate/all from adf6716d54 to 381f37698f 2024-02-12 22:49:10 +01:00 Compare
kjuulh force-pushed renovate/all from 381f37698f to 05944490a6 2024-02-14 20:31:24 +01:00 Compare
kjuulh force-pushed renovate/all from 05944490a6 to 5b66bcde66 2024-02-15 11:39:42 +01:00 Compare
kjuulh force-pushed renovate/all from 5b66bcde66 to 48b2e76a6a 2024-02-15 17:46:10 +01:00 Compare
kjuulh force-pushed renovate/all from 48b2e76a6a to eff7201b11 2024-02-16 14:40:53 +01:00 Compare
kjuulh force-pushed renovate/all from eff7201b11 to 494a7ef010 2024-02-17 10:26:46 +01:00 Compare
kjuulh merged commit 494a7ef010 into main 2024-02-17 12:25:57 +01:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/vidow#318
No description provided.