Version Packages - #4
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 28, 2026 00:27
5be015b to
a7b973f
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 28, 2026 00:28
a7b973f to
1ff7531
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
rtk-query-devtools@0.3.2
Patch Changes
72a51dc: Fix a stale-codec hazard in
usePersistentState, and ship unbundled type declarations.usePersistentStateassigned to a ref during render to keep an inlinecodecobject from retriggering its write effect. Writing a ref mid-render is
observable when React renders without committing — under a concurrent
re-render the persisted value could be serialised with a codec from a render
that was thrown away. The assignment now happens in an effect declared ahead
of the write effect, so the codec is current by the time the write reads it.
No API change, and the read-on-mount / write-on-change behaviour is unchanged.
The package now builds under TypeScript 7. Two consequences for the published
artifact:
dist/carries per-file.d.tsinstead of a single bundled declaration.API Extractor, which
bundleTypesrelies on, cannot follow the declarationsTS 7 emits (it fails on
Recordwith "Unable to follow symbol"), and thisis not fixed in its current release.
typesstill points atdist/index.d.tsand the exported types are identical — there are simplymore files in the tarball.
@typescript/typescript6alongsideTypeScript 7, because TS 7 no longer ships the JavaScript Compiler API the
declaration emitter uses. This is a devDependency and does not affect
consumers.