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 (#1511)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

authored by

github-actions[bot]
github-actions[bot]
and committed by
GitHub
7d74097f 69847811

+194 -125
-5
.changeset/beige-candles-kneel.md
··· 1 - --- 2 - '@urql/vue': minor 3 - --- 4 - 5 - A `useClientHandle()` function has been added. This creates a `handle` on which all `use*` hooks can be called, like `await handle.useQuery(...)` or `await handle.useSubscription(...)` which is useful for sequentially chaining hook calls in an `async setup()` function or preserve the right instance of a `Client` across lifecycle hooks.
-5
.changeset/bright-tools-taste.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix up internal types in Graphcache to improve their accuracy for catching more edge cases in its implementation. This only affects you if you previously imported any type related to `ScalarObject` from Graphcache which now is a more opaque type. We've also adjusted the `NullArray` types to be potentially nested, since lists in GraphQL can be nested arbitarily, which we were covering but didn't reflect in our types.
-23
.changeset/curvy-bobcats-fry.md
··· 1 - --- 2 - '@urql/exchange-auth': patch 3 - '@urql/exchange-execute': patch 4 - '@urql/exchange-graphcache': patch 5 - '@urql/exchange-multipart-fetch': patch 6 - '@urql/exchange-persisted-fetch': patch 7 - '@urql/exchange-populate': patch 8 - '@urql/exchange-refocus': patch 9 - '@urql/exchange-request-policy': patch 10 - '@urql/exchange-retry': patch 11 - '@urql/core': patch 12 - '@urql/introspection': patch 13 - 'next-urql': patch 14 - '@urql/preact': patch 15 - 'urql': patch 16 - '@urql/storybook-addon': patch 17 - '@urql/svelte': patch 18 - '@urql/vue': patch 19 - --- 20 - 21 - Remove closure-compiler from the build step 22 - 23 - See: [#1570](https://github.com/FormidableLabs/urql/pull/1570)
-5
.changeset/fair-beds-happen.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix inconsistency in generating keys for `DocumentNode`s, especially when using GraphQL Code Generator, which could cause SSR serialization to fail.
-5
.changeset/fluffy-ligers-draw.md
··· 1 - --- 2 - '@urql/vue': patch 3 - --- 4 - 5 - The `useClient()` function will now throw a more helpful error when it's called outside of any lifecycle hooks.
-5
.changeset/great-scissors-boil.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix list items being returned as `null` even for non-nullable lists, when the entities are missing in the cache. This could happen when a resolver was added returning entities or their keys. This behaviour is now (correctly) only applied to partial results with schema awareness.
-5
.changeset/large-frogs-tease.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - With the "single-source behavior" the `Client` will now also avoid executing an operation if it's already active, has a previous result available, and is either run with the `cache-first` or `cache-only` request policies. This is similar to a "short circuiting" behavior, where unnecessary work is avoided by not issuing more operations into the exchange pipeline than expected.
-7
.changeset/lovely-hounds-tap.md
··· 1 - --- 2 - '@urql/introspection': minor 3 - --- 4 - 5 - Add options to `@urql/introspection`'s `minifyIntrospectionQuery` allowing the inclusion of more 6 - information into the minified schema as needed, namely `includeScalars`, `includeEnums`, 7 - `includeInputs`, and `includeDirectives`.
-5
.changeset/moody-mice-arrive.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Add `cache.link(...)` method to Graphcache. This method may be used in updaters to update links in the cache. It is hence the writing-equivalent of `cache.resolve()`, which previously didn't have any equivalent as such, which meant that only `cache.updateQuery` or `cache.writeFragment` could be used, even to update simple relations.
-13
.changeset/quiet-tips-drive.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - Add consistent "single-source behavior" which makes the `Client` more forgiving when duplicate 6 - sources are used, which previously made it difficult to use the same operation across an app 7 - together with `cache-and-network`; This was a rare use-case, and it isn't recommended to overfetch 8 - data across an app, however, the new `Client` implementation of shared sources ensures that when an 9 - operation is active that the `Client` distributes the last known result for the active operation to 10 - any new usages of it (which is called “replaying stale results”) 11 - 12 - See: [#1515](https://github.com/FormidableLabs/urql/pull/1515) 13 -
-5
.changeset/silent-turtles-check.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Add on a generic to `cacheExchange` and `offlineExchange` for future, experimental type-generation support.
-5
.changeset/slow-doors-sparkle.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Allow for the schema subscription and mutationType to be null
-5
.changeset/witty-spiders-matter.md
··· 1 - --- 2 - 'next-urql': minor 3 - --- 4 - 5 - Allow subsequent static-pages to hydrate the cache
+8
exchanges/auth/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.1.3 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 0.1.2 4 12 5 13 ### Patch Changes
+2 -2
exchanges/auth/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-auth", 3 - "version": "0.1.2", 3 + "version": "0.1.3", 4 4 "description": "An exchange for managing authentication and token refresh in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 51 51 "preset": "../../scripts/jest/preset" 52 52 }, 53 53 "dependencies": { 54 - "@urql/core": ">=1.14.0", 54 + "@urql/core": ">=2.1.0", 55 55 "wonka": "^4.0.14" 56 56 }, 57 57 "peerDependencies": {
+8
exchanges/execute/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.0.4 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 1.0.3 4 12 5 13 ### Patch Changes
+2 -2
exchanges/execute/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-execute", 3 - "version": "1.0.3", 3 + "version": "1.0.4", 4 4 "description": "An exchange for executing queries against a local schema in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 51 51 "preset": "../../scripts/jest/preset" 52 52 }, 53 53 "dependencies": { 54 - "@urql/core": ">=1.15.1", 54 + "@urql/core": ">=2.1.0", 55 55 "wonka": "^4.0.14" 56 56 }, 57 57 "peerDependencies": {
+16
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Add `cache.link(...)` method to Graphcache. This method may be used in updaters to update links in the cache. It is hence the writing-equivalent of `cache.resolve()`, which previously didn't have any equivalent as such, which meant that only `cache.updateQuery` or `cache.writeFragment` could be used, even to update simple relations, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1551](https://github.com/FormidableLabs/urql/pull/1551)) 8 + - Add on a generic to `cacheExchange` and `offlineExchange` for future, experimental type-generation support, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1562](https://github.com/FormidableLabs/urql/pull/1562)) 9 + 10 + ### Patch Changes 11 + 12 + - ⚠️ Fix up internal types in Graphcache to improve their accuracy for catching more edge cases in its implementation. This only affects you if you previously imported any type related to `ScalarObject` from Graphcache which now is a more opaque type. We've also adjusted the `NullArray` types to be potentially nested, since lists in GraphQL can be nested arbitarily, which we were covering but didn't reflect in our types, by [@kitten](https://github.com/kitten) (See [#1591](https://github.com/FormidableLabs/urql/pull/1591)) 13 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 14 + - ⚠️ Fix list items being returned as `null` even for non-nullable lists, when the entities are missing in the cache. This could happen when a resolver was added returning entities or their keys. This behaviour is now (correctly) only applied to partial results with schema awareness, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1566](https://github.com/FormidableLabs/urql/pull/1566)) 15 + - Allow for the schema subscription and mutationType to be null, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1530](https://github.com/FormidableLabs/urql/pull/1530)) 16 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 17 + - @urql/core@2.1.0 18 + 3 19 ## 4.0.0 4 20 5 21 ### Major Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.0.0", 3 + "version": "4.1.0", 4 4 "description": "A normalized and configurable cache exchange for urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/graphcache", ··· 65 65 "preset": "../../scripts/jest/preset" 66 66 }, 67 67 "dependencies": { 68 - "@urql/core": ">=2.0.0", 68 + "@urql/core": ">=2.1.0", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+8
exchanges/multipart-fetch/CHANGELOG.md
··· 1 1 # @urql/exchange-multipart-fetch 2 2 3 + ## 0.1.12 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 0.1.11 4 12 5 13 ### Patch Changes
+2 -2
exchanges/multipart-fetch/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-multipart-fetch", 3 - "version": "0.1.11", 3 + "version": "0.1.12", 4 4 "description": "An exchange that allows regular fetch and will transition to multipart when files are included", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 49 49 "preset": "../../scripts/jest/preset" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": ">=1.14.1", 52 + "@urql/core": ">=2.1.0", 53 53 "extract-files": "^8.1.0", 54 54 "wonka": "^4.0.14" 55 55 },
+8
exchanges/persisted-fetch/CHANGELOG.md
··· 1 1 # @urql/exchange-persisted-fetch 2 2 3 + ## 1.3.1 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 1.3.0 4 12 5 13 ### Minor Changes
+2 -2
exchanges/persisted-fetch/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-persisted-fetch", 3 - "version": "1.3.0", 3 + "version": "1.3.1", 4 4 "description": "An exchange that allows for persisted queries support when fetching queries", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 49 49 "preset": "../../scripts/jest/preset" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": ">=2.0.0", 52 + "@urql/core": ">=2.1.0", 53 53 "wonka": "^4.0.14" 54 54 }, 55 55 "peerDependencies": {
+8
exchanges/populate/CHANGELOG.md
··· 1 1 # @urql/exchange-populate 2 2 3 + ## 0.2.2 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 0.2.1 4 12 5 13 ### Patch Changes
+2 -2
exchanges/populate/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-populate", 3 - "version": "0.2.1", 3 + "version": "0.2.2", 4 4 "description": "An exchange that automaticcally populates the mutation selection body", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/advanced/auto-populate-mutations", ··· 49 49 "preset": "../../scripts/jest/preset" 50 50 }, 51 51 "dependencies": { 52 - "@urql/core": ">=1.14.0", 52 + "@urql/core": ">=2.1.0", 53 53 "wonka": "^4.0.14" 54 54 }, 55 55 "peerDependencies": {
+8
exchanges/refocus/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.2.3 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 0.2.2 4 12 5 13 ### Patch Changes
+2 -2
exchanges/refocus/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-refocus", 3 - "version": "0.2.2", 3 + "version": "0.2.3", 4 4 "description": "An exchange that dispatches active operations when the window regains focus", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 58 58 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" 59 59 }, 60 60 "dependencies": { 61 - "@urql/core": ">=1.14.0", 61 + "@urql/core": ">=2.1.0", 62 62 "wonka": "^4.0.14" 63 63 }, 64 64 "publishConfig": {
+8
exchanges/request-policy/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.1.2 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 0.1.1 4 12 5 13 ### Patch Changes
+2 -2
exchanges/request-policy/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-request-policy", 3 - "version": "0.1.1", 3 + "version": "0.1.2", 4 4 "description": "An exchange for operation request-policy upgrading in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 56 56 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" 57 57 }, 58 58 "dependencies": { 59 - "@urql/core": ">=2.0.0", 59 + "@urql/core": ">=2.1.0", 60 60 "wonka": "^4.0.14" 61 61 }, 62 62 "publishConfig": {
+8
exchanges/retry/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.2.1 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 0.2.0 4 12 5 13 ### Minor Changes
+2 -2
exchanges/retry/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-retry", 3 - "version": "0.2.0", 3 + "version": "0.2.1", 4 4 "description": "An exchange for operation retry support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 56 56 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0" 57 57 }, 58 58 "dependencies": { 59 - "@urql/core": ">=1.15.0", 59 + "@urql/core": ">=2.1.0", 60 60 "wonka": "^4.0.14" 61 61 }, 62 62 "publishConfig": {
+17
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 2.1.0 4 + 5 + ### Minor Changes 6 + 7 + - With the "single-source behavior" the `Client` will now also avoid executing an operation if it's already active, has a previous result available, and is either run with the `cache-first` or `cache-only` request policies. This is similar to a "short circuiting" behavior, where unnecessary work is avoided by not issuing more operations into the exchange pipeline than expected, by [@kitten](https://github.com/kitten) (See [#1600](https://github.com/FormidableLabs/urql/pull/1600)) 8 + - Add consistent "single-source behavior" which makes the `Client` more forgiving when duplicate 9 + sources are used, which previously made it difficult to use the same operation across an app 10 + together with `cache-and-network`; This was a rare use-case, and it isn't recommended to overfetch 11 + data across an app, however, the new `Client` implementation of shared sources ensures that when an 12 + operation is active that the `Client` distributes the last known result for the active operation to 13 + any new usages of it (which is called “replaying stale results”) (See [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 14 + 15 + ### Patch Changes 16 + 17 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 18 + - ⚠️ Fix inconsistency in generating keys for `DocumentNode`s, especially when using GraphQL Code Generator, which could cause SSR serialization to fail, by [@zenflow](https://github.com/zenflow) (See [#1509](https://github.com/FormidableLabs/urql/pull/1509)) 19 + 3 20 ## 2.0.0 4 21 5 22 ### Major Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "2.0.0", 3 + "version": "2.1.0", 4 4 "description": "The shared core for the highly customizable and versatile GraphQL client", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+12
packages/introspection/CHANGELOG.md
··· 1 1 # @urql/introspection 2 2 3 + ## 0.3.0 4 + 5 + ### Minor Changes 6 + 7 + - Add options to `@urql/introspection`'s `minifyIntrospectionQuery` allowing the inclusion of more 8 + information into the minified schema as needed, namely `includeScalars`, `includeEnums`, 9 + `includeInputs`, and `includeDirectives`, by [@kitten](https://github.com/kitten) (See [#1578](https://github.com/FormidableLabs/urql/pull/1578)) 10 + 11 + ### Patch Changes 12 + 13 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 14 + 3 15 ## 0.2.0 4 16 5 17 ### Minor Changes
+1 -1
packages/introspection/package.json
··· 1 1 { 2 2 "name": "@urql/introspection", 3 - "version": "0.2.0", 3 + "version": "0.3.0", 4 4 "description": "Utilities for dealing with Introspection Queries and Client Schemas", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+10
packages/next-urql/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 3.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Allow subsequent static-pages to hydrate the cache, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1602](https://github.com/FormidableLabs/urql/pull/1602)) 8 + 9 + ### Patch Changes 10 + 11 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 12 + 3 13 ## 3.0.1 4 14 5 15 ### Patch Changes
+1 -1
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "next-urql", 3 - "version": "3.0.1", 3 + "version": "3.1.0", 4 4 "description": "Convenience wrappers for using urql with NextJS.", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",
+8
packages/preact-urql/CHANGELOG.md
··· 1 1 # @urql/preact 2 2 3 + ## 2.0.2 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 2.0.1 4 12 5 13 ### Patch Changes
+2 -2
packages/preact-urql/package.json
··· 1 1 { 2 2 "name": "@urql/preact", 3 - "version": "2.0.1", 3 + "version": "2.0.2", 4 4 "description": "A highly customizable and versatile GraphQL client for Preact", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 60 60 "preact": ">= 10.0.0" 61 61 }, 62 62 "dependencies": { 63 - "@urql/core": "^2.0.0", 63 + "@urql/core": "^2.1.0", 64 64 "wonka": "^4.0.14" 65 65 }, 66 66 "publishConfig": {
+8
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 2.0.3 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 2.0.2 4 12 5 13 ### Patch Changes
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "2.0.2", 3 + "version": "2.0.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/", ··· 59 59 "react": ">= 16.8.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": "^2.0.0", 62 + "@urql/core": "^2.1.0", 63 63 "wonka": "^4.0.14" 64 64 } 65 65 }
+6
packages/storybook-addon/CHANGELOG.md
··· 1 1 # @urql/storybook-addon 2 2 3 + ## 1.0.7 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + 3 9 ## 1.0.6 4 10 5 11 ### Patch Changes
+3 -3
packages/storybook-addon/package.json
··· 1 1 { 2 2 "name": "@urql/storybook-addon", 3 - "version": "1.0.6", 3 + "version": "1.0.7", 4 4 "description": "Make stories in Storybook with urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://github.com/FormidableLabs/urql/tree/main/packages/storybook-addon", ··· 44 44 "@storybook/react": ">=6.0.28", 45 45 "@types/webpack-env": "^1.15.3", 46 46 "@urql/devtools": "^2.0.2", 47 - "@urql/preact": ">=2.0.1", 47 + "@urql/preact": ">=2.0.2", 48 48 "graphql": "^15.4.0", 49 49 "preact": "^10.5.5", 50 50 "react": "^17.0.1", 51 - "urql": ">=2.0.2", 51 + "urql": ">=2.0.3", 52 52 "wonka": "^4.0.14" 53 53 }, 54 54 "optionalDependencies": {
+8
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 1.2.2 4 + 5 + ### Patch Changes 6 + 7 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 8 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 9 + - @urql/core@2.1.0 10 + 3 11 ## 1.2.1 4 12 5 13 ### Patch Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "1.2.1", 3 + "version": "1.2.2", 4 4 "description": "A highly customizable and versatile GraphQL client for Svelte", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 55 55 "svelte": "^3.0.0" 56 56 }, 57 57 "dependencies": { 58 - "@urql/core": "^2.0.0", 58 + "@urql/core": "^2.1.0", 59 59 "wonka": "^4.0.14" 60 60 }, 61 61 "devDependencies": {
+13
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 0.4.0 4 + 5 + ### Minor Changes 6 + 7 + - A `useClientHandle()` function has been added. This creates a `handle` on which all `use*` hooks can be called, like `await handle.useQuery(...)` or `await handle.useSubscription(...)` which is useful for sequentially chaining hook calls in an `async setup()` function or preserve the right instance of a `Client` across lifecycle hooks, by [@kitten](https://github.com/kitten) (See [#1599](https://github.com/FormidableLabs/urql/pull/1599)) 8 + 9 + ### Patch Changes 10 + 11 + - Remove closure-compiler from the build step (See [#1570](https://github.com/FormidableLabs/urql/pull/1570)) 12 + - The `useClient()` function will now throw a more helpful error when it's called outside of any lifecycle hooks, by [@kitten](https://github.com/kitten) (See [#1599](https://github.com/FormidableLabs/urql/pull/1599)) 13 + - Updated dependencies (See [#1570](https://github.com/FormidableLabs/urql/pull/1570), [#1509](https://github.com/FormidableLabs/urql/pull/1509), [#1600](https://github.com/FormidableLabs/urql/pull/1600), and [#1515](https://github.com/FormidableLabs/urql/pull/1515)) 14 + - @urql/core@2.1.0 15 + 3 16 ## 0.3.0 4 17 5 18 ### Minor Changes
+2 -2
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "0.3.0", 3 + "version": "0.4.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/", ··· 59 59 "vue": "^3.0.0" 60 60 }, 61 61 "dependencies": { 62 - "@urql/core": "^2.0.0", 62 + "@urql/core": "^2.1.0", 63 63 "wonka": "^4.0.14" 64 64 }, 65 65 "publishConfig": {