Version Packages#3880
Merged
Merged
Conversation
Deploying urql with
|
| Latest commit: |
7d29364
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://8b3b580b.urql.pages.dev |
| Branch Preview URL: | https://changeset-release-main.urql.pages.dev |
9c1e772 to
9be3b2f
Compare
9be3b2f to
7d29364
Compare
kitten
approved these changes
Jun 14, 2026
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 publish to npm yourself or setup this action to publish 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
@urql/exchange-graphcache@9.0.1
Patch Changes
relayPaginationmerging pages in the order they were written to the cache rather than in their cursor order. When multiple pages were requested concurrently and a later page's response was written before an earlier one's, the combinededges/nodescould transiently end up in the wrong order. Pages are now reordered along their cursor chain (viaafter/endCursorandbefore/startCursor) before being concatenated, while pages without a known predecessor keep their original orderSubmitted by @moriyuu (See #3877)
exportsfield from the generated subpathpackage.jsonfiles (e.g.@urql/exchange-graphcache/extras,@urql/exchange-graphcache/default-storage,@urql/core/internal,@urql/next/rsc). These targets pointed at the parentdist/directory (../dist/...), which violates the Node.js package-exports spec requirement that everyexportstarget begin with./. Metro (Expo 53 / React Native 0.79) validates this and logged a warning for every affected package. Subpath resolution continues to work:exports-aware bundlers resolve through the rootpackage.json, while legacy resolution relies on themain/module/typesfields that remain in placeSubmitted by @JoviDeCroock (See #3886)
@urql/core@6.0.2
Patch Changes
mapExchangefrom forwarding async-mapped operations after their teardown has already been receivedSubmitted by @JoviDeCroock (See #3879)
payloadproperty inmakeResultso that the first incremental/multipart response is parsed correctly. Previously, transports that wrap each result in apayloadproperty (e.g. Apollo Federation's multipart subscriptions) would have their first response dropped as "No Content", while subsequent responses were handled correctly bymergeResultPatchSubmitted by @JoviDeCroock (See #3881)
Submitted by @JoviDeCroock (See #3885)
exportsfield from the generated subpathpackage.jsonfiles (e.g.@urql/exchange-graphcache/extras,@urql/exchange-graphcache/default-storage,@urql/core/internal,@urql/next/rsc). These targets pointed at the parentdist/directory (../dist/...), which violates the Node.js package-exports spec requirement that everyexportstarget begin with./. Metro (Expo 53 / React Native 0.79) validates this and logged a warning for every affected package. Subpath resolution continues to work:exports-aware bundlers resolve through the rootpackage.json, while legacy resolution relies on themain/module/typesfields that remain in placeSubmitted by @JoviDeCroock (See #3886)
@urql/next@2.0.1
Patch Changes
exportsfield from the generated subpathpackage.jsonfiles (e.g.@urql/exchange-graphcache/extras,@urql/exchange-graphcache/default-storage,@urql/core/internal,@urql/next/rsc). These targets pointed at the parentdist/directory (../dist/...), which violates the Node.js package-exports spec requirement that everyexportstarget begin with./. Metro (Expo 53 / React Native 0.79) validates this and logged a warning for every affected package. Subpath resolution continues to work:exports-aware bundlers resolve through the rootpackage.json, while legacy resolution relies on themain/module/typesfields that remain in placeSubmitted by @JoviDeCroock (See #3886)
urql@5.0.3
Patch Changes
Submitted by @JoviDeCroock (See #3887)
@urql/vue@2.1.1
Patch Changes
useQueryfrom re-executing (and hitting the network) during SSR hydration when it's awaited for Suspense. Awaiting the query subscribed to the operation a second time, which re-dispatched it after thessrExchangeresult had already been consumed, triggering a redundant network request even withstaleWhileRevalidate: false. The awaited promise now resolves with the already-settled result instead of re-subscribingSubmitted by @JoviDeCroock (See #3884)
await useQuery()in Vue to wait on the composable's existing reactive state instead of creating an additional query source subscriptionSubmitted by @JoviDeCroock (See #3890)