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

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
eee82891 c8d13cf0

+75 -53
-9
.changeset/fair-flies-grab.md
··· 1 - --- 2 - '@urql/core': minor 3 - '@urql/preact': patch 4 - 'urql': patch 5 - '@urql/svelte': patch 6 - '@urql/vue': patch 7 - --- 8 - 9 - Add a built-in `gql` tag function helper to `@urql/core`. This behaves similarly to `graphql-tag` but only warns about _locally_ duplicated fragment names rather than globally. It also primes `@urql/core`'s key cache with the parsed `DocumentNode`.
-6
.changeset/hungry-penguins-teach.md
··· 1 - --- 2 - '@urql/preact': patch 3 - 'urql': patch 4 - --- 5 - 6 - Add `suspense: false` to options when `executeQuery` is called explicitly.
-8
.changeset/nervous-beds-battle.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Replace `graphql/utilities/buildClientSchema.mjs` with a custom-tailored, lighter implementation 6 - built into `@urql/exchange-graphcache`. This will appear to increase its size by about `0.2kB gzip` 7 - but will actually save around `8.5kB gzip` to `9.4kB gzip` in any production bundle by using less of 8 - `graphql`'s code.
-5
.changeset/nice-rivers-run.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix edge case in `formatDocument`, which fails to add a `__typename` field if it has been aliased to a different name.
-5
.changeset/serious-gorillas-develop.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Cache results of `formatDocument` by the input document's key.
-9
.changeset/smart-lizards-crash.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Increase the consistency of when and how the `__typename` field is added to results. Instead of 6 - adding it by default and automatically first, the `__typename` field will now be added along with 7 - the usual selection set. The `write` operation now automatically issues a warning if `__typename` 8 - isn't present where it's expected more often, which helps in debugging. Also the `__typename` field 9 - may now not proactively be added to root results, e.g. `"Query"`.
+19
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 3.3.0 4 + 5 + ### Minor Changes 6 + 7 + - Increase the consistency of when and how the `__typename` field is added to results. Instead of 8 + adding it by default and automatically first, the `__typename` field will now be added along with 9 + the usual selection set. The `write` operation now automatically issues a warning if `__typename` 10 + isn't present where it's expected more often, which helps in debugging. Also the `__typename` field 11 + may now not proactively be added to root results, e.g. `"Query"`, by [@kitten](https://github.com/kitten) (See [#1185](https://github.com/FormidableLabs/urql/pull/1185)) 12 + 13 + ### Patch Changes 14 + 15 + - Replace `graphql/utilities/buildClientSchema.mjs` with a custom-tailored, lighter implementation 16 + built into `@urql/exchange-graphcache`. This will appear to increase its size by about `0.2kB gzip` 17 + but will actually save around `8.5kB gzip` to `9.4kB gzip` in any production bundle by using less of 18 + `graphql`'s code, by [@kitten](https://github.com/kitten) (See [#1189](https://github.com/FormidableLabs/urql/pull/1189)) 19 + - Updated dependencies (See [#1187](https://github.com/FormidableLabs/urql/pull/1187), [#1186](https://github.com/FormidableLabs/urql/pull/1186), and [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 20 + - @urql/core@1.16.0 21 + 3 22 ## 3.2.0 4 23 5 24 ### Minor Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "3.2.0", 3 + "version": "3.3.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": ">=1.15.2", 68 + "@urql/core": ">=1.16.0", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+11
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.16.0 4 + 5 + ### Minor Changes 6 + 7 + - Add a built-in `gql` tag function helper to `@urql/core`. This behaves similarly to `graphql-tag` but only warns about _locally_ duplicated fragment names rather than globally. It also primes `@urql/core`'s key cache with the parsed `DocumentNode`, by [@kitten](https://github.com/kitten) (See [#1187](https://github.com/FormidableLabs/urql/pull/1187)) 8 + 9 + ### Patch Changes 10 + 11 + - ⚠️ Fix edge case in `formatDocument`, which fails to add a `__typename` field if it has been aliased to a different name, by [@kitten](https://github.com/kitten) (See [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 12 + - Cache results of `formatDocument` by the input document's key, by [@kitten](https://github.com/kitten) (See [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 13 + 3 14 ## 1.15.2 4 15 5 16 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.15.2", 3 + "version": "1.16.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/",
+9
packages/preact-urql/CHANGELOG.md
··· 1 1 # @urql/preact 2 2 3 + ## 1.4.3 4 + 5 + ### Patch Changes 6 + 7 + - Add a built-in `gql` tag function helper to `@urql/core`. This behaves similarly to `graphql-tag` but only warns about _locally_ duplicated fragment names rather than globally. It also primes `@urql/core`'s key cache with the parsed `DocumentNode`, by [@kitten](https://github.com/kitten) (See [#1187](https://github.com/FormidableLabs/urql/pull/1187)) 8 + - Add `suspense: false` to options when `executeQuery` is called explicitly, by [@kitten](https://github.com/kitten) (See [#1181](https://github.com/FormidableLabs/urql/pull/1181)) 9 + - Updated dependencies (See [#1187](https://github.com/FormidableLabs/urql/pull/1187), [#1186](https://github.com/FormidableLabs/urql/pull/1186), and [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 10 + - @urql/core@1.16.0 11 + 3 12 ## 1.4.2 4 13 5 14 ### Patch Changes
+2 -2
packages/preact-urql/package.json
··· 1 1 { 2 2 "name": "@urql/preact", 3 - "version": "1.4.2", 3 + "version": "1.4.3", 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": "^1.15.1", 63 + "@urql/core": "^1.16.0", 64 64 "wonka": "^4.0.14" 65 65 }, 66 66 "publishConfig": {
+9
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 1.11.4 4 + 5 + ### Patch Changes 6 + 7 + - Add a built-in `gql` tag function helper to `@urql/core`. This behaves similarly to `graphql-tag` but only warns about _locally_ duplicated fragment names rather than globally. It also primes `@urql/core`'s key cache with the parsed `DocumentNode`, by [@kitten](https://github.com/kitten) (See [#1187](https://github.com/FormidableLabs/urql/pull/1187)) 8 + - Add `suspense: false` to options when `executeQuery` is called explicitly, by [@kitten](https://github.com/kitten) (See [#1181](https://github.com/FormidableLabs/urql/pull/1181)) 9 + - Updated dependencies (See [#1187](https://github.com/FormidableLabs/urql/pull/1187), [#1186](https://github.com/FormidableLabs/urql/pull/1186), and [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 10 + - @urql/core@1.16.0 11 + 3 12 ## 1.11.3 4 13 5 14 ### Patch Changes
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "1.11.3", 3 + "version": "1.11.4", 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/", ··· 58 58 "react": ">= 16.8.0" 59 59 }, 60 60 "dependencies": { 61 - "@urql/core": "^1.15.1", 61 + "@urql/core": "^1.16.0", 62 62 "wonka": "^4.0.14" 63 63 } 64 64 }
+8
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 1.1.4 4 + 5 + ### Patch Changes 6 + 7 + - Add a built-in `gql` tag function helper to `@urql/core`. This behaves similarly to `graphql-tag` but only warns about _locally_ duplicated fragment names rather than globally. It also primes `@urql/core`'s key cache with the parsed `DocumentNode`, by [@kitten](https://github.com/kitten) (See [#1187](https://github.com/FormidableLabs/urql/pull/1187)) 8 + - Updated dependencies (See [#1187](https://github.com/FormidableLabs/urql/pull/1187), [#1186](https://github.com/FormidableLabs/urql/pull/1186), and [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 9 + - @urql/core@1.16.0 10 + 3 11 ## 1.1.3 4 12 5 13 ### Patch Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "1.1.3", 3 + "version": "1.1.4", 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": "^1.15.0", 58 + "@urql/core": "^1.16.0", 59 59 "wonka": "^4.0.14" 60 60 }, 61 61 "devDependencies": {
+8
packages/vue-urql/CHANGELOG.md
··· 1 1 # @urql/vue 2 2 3 + ## 0.2.1 4 + 5 + ### Patch Changes 6 + 7 + - Add a built-in `gql` tag function helper to `@urql/core`. This behaves similarly to `graphql-tag` but only warns about _locally_ duplicated fragment names rather than globally. It also primes `@urql/core`'s key cache with the parsed `DocumentNode`, by [@kitten](https://github.com/kitten) (See [#1187](https://github.com/FormidableLabs/urql/pull/1187)) 8 + - Updated dependencies (See [#1187](https://github.com/FormidableLabs/urql/pull/1187), [#1186](https://github.com/FormidableLabs/urql/pull/1186), and [#1186](https://github.com/FormidableLabs/urql/pull/1186)) 9 + - @urql/core@1.16.0 10 + 3 11 ## 0.2.0 4 12 5 13 ### Minor Changes
+2 -2
packages/vue-urql/package.json
··· 1 1 { 2 2 "name": "@urql/vue", 3 - "version": "0.2.0", 3 + "version": "0.2.1", 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": "^1.13.1", 62 + "@urql/core": "^1.16.0", 63 63 "wonka": "^4.0.14" 64 64 }, 65 65 "publishConfig": {