Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Version Packages (#1154)

* Version Packages

* Update packages/vue-urql/CHANGELOG.md

authored by

github-actions[bot] and committed by
GitHub
f3cf0c96 697b02db

+20 -27
-5
.changeset/flat-rats-fetch.md
··· 1 - --- 2 - '@urql/vue': patch 3 - --- 4 - 5 - fix pausing feature of useQuery by turning "isPaused" into a ref again.
-5
.changeset/nasty-kids-bake.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - Fix in edge-case in client-side React Suspense, where after suspending due to an update a new state value is given to `useSource` in a render update. This was previously then causing us to subscribe to an outdated source in `useEffect` since the updated source would be ignored by the time we reach `useEffect` in `useSource`.
-5
.changeset/odd-starfishes-punch.md
··· 1 - --- 2 - '@urql/vue': minor 3 - --- 4 - 5 - expose Vue plugin function as default export
-5
.changeset/six-wolves-eat.md
··· 1 - --- 2 - '@urql/vue': minor 3 - --- 4 - 5 - Refactor `useQuery` to resolve the lazy promise for Vue Suspense to the latest result that has been requested as per the input to `useQuery`.
-5
.changeset/tasty-ravens-hide.md
··· 1 - --- 2 - '@urql/vue': patch 3 - --- 4 - 5 - Fix implementation of Vue's Suspense feature by making the lazy `PromiseLike` on the returned state passive.
+6
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 1.11.3 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix in edge-case in client-side React Suspense, where after suspending due to an update a new state value is given to `useSource` in a render update. This was previously then causing us to subscribe to an outdated source in `useEffect` since the updated source would be ignored by the time we reach `useEffect` in `useSource`, by [@kitten](https://github.com/kitten) (See [#1157](https://github.com/FormidableLabs/urql/pull/1157)) 8 + 3 9 ## 1.11.2 4 10 5 11 ### Patch Changes
+1 -1
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "1.11.2", 3 + "version": "1.11.3", 4 4 "description": "A highly customizable and versatile GraphQL client for React", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+12
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 0.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Export a Vue plugin function as the default export, by [@LinusBorg](https://github.com/LinusBorg) (See [#1152](https://github.com/FormidableLabs/urql/pull/1152)) 8 + - Refactor `useQuery` to resolve the lazy promise for Vue Suspense to the latest result that has been requested as per the input to `useQuery`, by [@kitten](https://github.com/kitten) (See [#1162](https://github.com/FormidableLabs/urql/pull/1162)) 9 + 10 + ### Patch Changes 11 + 12 + - ⚠️ Fix pausing feature of `useQuery` by turning `isPaused` into a ref again, by [@LinusBorg](https://github.com/LinusBorg) (See [#1155](https://github.com/FormidableLabs/urql/pull/1155)) 13 + - ⚠️ Fix implementation of Vue's Suspense feature by making the lazy `PromiseLike` on the returned state passive, by [@kitten](https://github.com/kitten) (See [#1159](https://github.com/FormidableLabs/urql/pull/1159)) 14 + 3 15 ## 0.1.0 4 16 5 17 Initial release
+1 -1
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "0.1.0", 3 + "version": "0.2.0", 4 4 "description": "A highly customizable and versatile GraphQL client for vue", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",