chore(deps): update dependency @reduxjs/toolkit to v2.11.2#535
chore(deps): update dependency @reduxjs/toolkit to v2.11.2#535renovate[bot] wants to merge 1 commit intomainfrom
Conversation
|
|
View your CI Pipeline Execution ↗ for commit a33f75e
☁️ Nx Cloud last updated this comment at |
d42e57e to
51cfd97
Compare
51cfd97 to
61f32dd
Compare
61f32dd to
fa5d0f7
Compare
fa5d0f7 to
bb87b5e
Compare
bb87b5e to
319fb19
Compare
319fb19 to
a33f75e
Compare
There was a problem hiding this comment.
Nx Cloud is proposing a fix for your failed CI:
We are patching [email protected] to export the WritableNonArrayDraft type, which fixes the TS4023 declaration emit failure introduced by the @reduxjs/toolkit upgrade to v2.11.2. This change ensures TypeScript can name the type when generating .d.ts files for @forgerock/davinci-client.
Warning
❌ We could not verify this fix.
Suggested Fix changes
diff --git a/package.json b/package.json
index 50662075d..ace28f970 100644
--- a/package.json
+++ b/package.json
@@ -49,7 +49,6 @@
"path": "./node_modules/cz-conventional-changelog"
}
},
- "dependencies": {},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
@@ -133,6 +132,9 @@
"overrides": {
"rollup": "^4.59.0",
"undici@^7": "^7.24.0"
+ },
+ "patchedDependencies": {
+ "[email protected]": "patches/[email protected]"
}
}
}
diff --git a/patches/[email protected] b/patches/[email protected]
new file mode 100644
index 000000000..d0d43a1a3
--- /dev/null
+++ b/patches/[email protected]
@@ -0,0 +1,10 @@
+diff --git a/dist/immer.d.ts b/dist/immer.d.ts
+index 698fac55704236c882295cf03d4f83c5d76d1aee..d9db651cee6ea0db956af1c23dfc07bbb2675564 100644
+--- a/dist/immer.d.ts
++++ b/dist/immer.d.ts
+@@ -314,4 +314,4 @@ declare let castDraft: <T>(value: T) => Draft<T>;
+ */
+ declare let castImmutable: <T>(value: T) => Immutable<T>;
+
+-export { Draft, Immer, Immutable, Objectish, Patch, PatchListener, Producer, StrictMode, WritableDraft, applyPatches, castDraft, castImmutable, createDraft, current, enableArrayMethods, enableMapSet, enablePatches, finishDraft, freeze, DRAFTABLE as immerable, isDraft, isDraftable, NOTHING as nothing, original, produce, produceWithPatches, setAutoFreeze, setUseStrictIteration, setUseStrictShallowCopy };
++export { Draft, Immer, Immutable, Objectish, Patch, PatchListener, Producer, StrictMode, WritableDraft, WritableNonArrayDraft, applyPatches, castDraft, castImmutable, createDraft, current, enableArrayMethods, enableMapSet, enablePatches, finishDraft, freeze, DRAFTABLE as immerable, isDraft, isDraftable, NOTHING as nothing, original, produce, produceWithPatches, setAutoFreeze, setUseStrictIteration, setUseStrictShallowCopy };
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b7c85e62e..8f60c9205 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -6,6 +6,9 @@ settings:
catalogs:
default:
+ '@reduxjs/toolkit':
+ specifier: ^2.8.2
+ version: 2.11.2
immer:
specifier: ^10.1.1
version: 10.2.0
@@ -53,6 +56,11 @@ overrides:
rollup: ^4.59.0
undici@^7: ^7.24.0
+patchedDependencies:
+ [email protected]:
+ hash: 4c4d3e8c1ed3d960d413d39f30547cbc0ee776efdaa89e6cbdf9be4a86bc92c4
+ path: patches/[email protected]
+
importers:
.:
@@ -10785,7 +10793,7 @@ snapshots:
dependencies:
'@standard-schema/spec': 1.1.0
'@standard-schema/utils': 0.3.0
- immer: 11.1.4
+ immer: 11.1.4(patch_hash=4c4d3e8c1ed3d960d413d39f30547cbc0ee776efdaa89e6cbdf9be4a86bc92c4)
redux: 5.0.1
redux-thunk: 3.1.0([email protected])
reselect: 5.1.1
@@ -14022,7 +14030,7 @@ snapshots:
[email protected]: {}
- [email protected]: {}
+ [email protected](patch_hash=4c4d3e8c1ed3d960d413d39f30547cbc0ee776efdaa89e6cbdf9be4a86bc92c4): {}
[email protected]:
dependencies:
🔔 Heads up, your workspace has pending recommendations ↗ to auto-apply fixes for similar failures.
Or Apply changes locally with:
npx nx-cloud apply-locally TmvI-yYbS
Apply fix locally with your editor ↗ View interactive diff ↗
🎓 Learn more about Self-Healing CI on nx.dev
This PR contains the following updates:
2.10.1→2.11.2Release Notes
reduxjs/redux-toolkit (@reduxjs/toolkit)
v2.11.2Compare Source
v2.11.1Compare Source
This bugfix release fixes an issue with our internal
AbortSignalhandling that was reported as causing an error in a rare reset situation. We've also restructured our publishing process to use NPM Trusted Publishing, and updated our TS support matrix to only support TS 5.4+.Changelog
Publishing Changes
We've previously done most of our releases semi-manually locally, with various release process CLI tools. With the changes to NPM publishing security and the recent wave of NPM attacks, we've updated our publishing process to solely use NPM Trusted Publishing via workflows. We've also done a hardening pass on our own CI setup.
We had done a couple releases via CI workflows previously, and later semi-manual releases caused PNPM to warn that RTK was no longer trusted. This release should be trusted and will resolve that issue.
Thanks to the e18e folks and their excellent guide at https://e18e.dev/docs/publishing for making this process easier!
TS Support Matrix Updates
We've previously mentioned rolling changes to our TS support matrix in release notes, but didn't officially document our support policy. We've added a description of the support policy (last 2 years of TS releases, matching DefinitelyTyped) and the current oldest TS version we support in the docs:
As of today, we've updated the support matrix to be TS 5.4+ . As always, it's possible RTK will work if you're using an earlier version of TS, but we don't test against earlier versions and don't support any issues with those versions.
We have run an initial test with the upcoming TS 7.0 native
tsgorelease. We found a couple minor issues with our own TS build and test setup, but no obvious issues with using RTK with TS 7.0.Bug Fixes
A user reported a rare edge case where the combination of
resetApiStateandretry()could lead to an error calling anAbortController. We've restructured ourAbortControllerhandling logic to avoid that (and simplified a bit of our internals in the process).What's Changed
Full Changelog: reduxjs/redux-toolkit@v2.11.0...v2.11.1
v2.11.0Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.