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

+86 -60
-5
.changeset/afraid-dragons-train.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Add special-case for fetching an introspection result in our schema-checking, this avoids an error when urql-devtools fetches the backend graphql schema.
-5
.changeset/chatty-poems-rescue.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Mute warning when using built-in GraphQL fields, like `__type`
-5
.changeset/cuddly-ligers-design.md
··· 1 - --- 2 - '@urql/exchange-persisted-fetch': minor 3 - --- 4 - 5 - Pass the parsed GraphQL-document as a second argument to the `generateHash` option.
-5
.changeset/hip-adults-look.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Remove whitespace and comments from string-queries
-7
.changeset/hot-turkeys-deliver.md
··· 1 - --- 2 - '@urql/preact': minor 3 - 'urql': minor 4 - '@urql/svelte': minor 5 - --- 6 - 7 - Add the operation to the query, mutation and subscription result.
-5
.changeset/hungry-cycles-kiss.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix return type for resolvers to allow data objects to be returned with `__typename` as expected
-5
.changeset/pretty-squids-learn.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Remove redundant whitespaces when using GET for graphql queries.
-5
.changeset/rotten-pandas-obey.md
··· 1 - --- 2 - 'next-urql': minor 3 - --- 4 - 5 - Add the option to reset the client on a next-urql application.
-5
.changeset/six-shoes-kneel.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - Update hooks to be exported functions rather than exported block-scoped variables to provide TypeScript consumers with better access to their signature.
+10
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 3.0.2 4 + 5 + ### Patch Changes 6 + 7 + - Add special-case for fetching an introspection result in our schema-checking, this avoids an error when urql-devtools fetches the backend graphql schema, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#893](https://github.com/FormidableLabs/urql/pull/893)) 8 + - Mute warning when using built-in GraphQL fields, like `__type`, by [@kitten](https://github.com/kitten) (See [#919](https://github.com/FormidableLabs/urql/pull/919)) 9 + - ⚠️ Fix return type for resolvers to allow data objects to be returned with `__typename` as expected, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#927](https://github.com/FormidableLabs/urql/pull/927)) 10 + - Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908)) 11 + - @urql/core@1.12.3 12 + 3 13 ## 3.0.1 4 14 5 15 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "3.0.1", 3 + "version": "3.0.2", 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.12.1", 68 + "@urql/core": ">=1.12.3", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+11
exchanges/persisted-fetch/CHANGELOG.md
··· 1 1 # @urql/exchange-persisted-fetch 2 2 3 + ## 1.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Pass the parsed GraphQL-document as a second argument to the `generateHash` option, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#887](https://github.com/FormidableLabs/urql/pull/887)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908)) 12 + - @urql/core@1.12.3 13 + 3 14 ## 1.1.0 4 15 5 16 ### Minor Changes
+2 -2
exchanges/persisted-fetch/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-persisted-fetch", 3 - "version": "1.1.0", 3 + "version": "1.2.0", 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": ">=1.12.2", 52 + "@urql/core": ">=1.12.3", 53 53 "wonka": "^4.0.14" 54 54 }, 55 55 "peerDependencies": {
+7
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.12.3 4 + 5 + ### Patch Changes 6 + 7 + - Remove whitespace and comments from string-queries, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#911](https://github.com/FormidableLabs/urql/pull/911)) 8 + - Remove redundant whitespaces when using GET for graphql queries, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#908](https://github.com/FormidableLabs/urql/pull/908)) 9 + 3 10 ## 1.12.2 4 11 5 12 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.12.2", 3 + "version": "1.12.3", 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/",
+11
packages/next-urql/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.1.0 4 + 5 + ### Minor Changes 6 + 7 + - Add the option to reset the client on a next-urql application, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#894](https://github.com/FormidableLabs/urql/pull/894)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#924](https://github.com/FormidableLabs/urql/pull/924) and [#904](https://github.com/FormidableLabs/urql/pull/904)) 12 + - urql@1.10.0 13 + 3 14 ## 1.0.2 4 15 5 16 ### Patch Changes
+2 -2
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "next-urql", 3 - "version": "1.0.2", 3 + "version": "1.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/", ··· 51 51 }, 52 52 "dependencies": { 53 53 "react-ssr-prepass": "^1.2.1", 54 - "urql": ">=1.9.8" 54 + "urql": ">=1.10.0" 55 55 }, 56 56 "peerDependencies": { 57 57 "isomorphic-unfetch": "^3.0.0",
+11
packages/preact-urql/CHANGELOG.md
··· 1 1 # @urql/preact 2 2 3 + ## 1.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Add the operation to the query, mutation and subscription result, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#924](https://github.com/FormidableLabs/urql/pull/924)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908)) 12 + - @urql/core@1.12.3 13 + 3 14 ## 1.1.8 4 15 5 16 ### Patch Changes
+2 -2
packages/preact-urql/package.json
··· 1 1 { 2 2 "name": "@urql/preact", 3 - "version": "1.1.8", 3 + "version": "1.2.0", 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/", ··· 61 61 "preact": ">= 10.0.0" 62 62 }, 63 63 "dependencies": { 64 - "@urql/core": "^1.12.0", 64 + "@urql/core": "^1.12.3", 65 65 "wonka": "^4.0.14" 66 66 }, 67 67 "publishConfig": {
+12
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 1.10.0 4 + 5 + ### Minor Changes 6 + 7 + - Add the operation to the query, mutation and subscription result, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#924](https://github.com/FormidableLabs/urql/pull/924)) 8 + 9 + ### Patch Changes 10 + 11 + - Update hooks to be exported functions rather than exported block-scoped variables to provide TypeScript consumers with better access to their signature, by [@dotansimha](https://github.com/dotansimha) (See [#904](https://github.com/FormidableLabs/urql/pull/904)) 12 + - Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908)) 13 + - @urql/core@1.12.3 14 + 3 15 ## 1.9.8 4 16 5 17 ### Patch Changes
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "1.9.8", 3 + "version": "1.10.0", 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": "^1.12.0", 62 + "@urql/core": "^1.12.3", 63 63 "wonka": "^4.0.14" 64 64 } 65 65 }
+11
packages/svelte-urql/CHANGELOG.md
··· 1 1 # @urql/svelte 2 2 3 + ## 0.4.0 4 + 5 + ### Minor Changes 6 + 7 + - Add the operation to the query, mutation and subscription result, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#924](https://github.com/FormidableLabs/urql/pull/924)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#911](https://github.com/FormidableLabs/urql/pull/911) and [#908](https://github.com/FormidableLabs/urql/pull/908)) 12 + - @urql/core@1.12.3 13 + 3 14 ## 0.3.0 4 15 5 16 ### Minor Changes
+2 -2
packages/svelte-urql/package.json
··· 1 1 { 2 2 "name": "@urql/svelte", 3 - "version": "0.3.0", 3 + "version": "0.4.0", 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.12.1", 58 + "@urql/core": "^1.12.3", 59 59 "wonka": "^4.0.14" 60 60 }, 61 61 "devDependencies": {