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

+62 -89
-6
.changeset/dry-planets-report.md
··· 1 - --- 2 - '@urql/preact': patch 3 - --- 4 - 5 - Switch over to using @urql/core package 6 - See: [`75323c0`](https://github.com/FormidableLabs/urql/commit/75323c0)
-5
.changeset/famous-ducks-smash.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Update the `updater` function type of `cache.updateQuery` to have a return type of `DataFields` so that `__typename` does not need to be defined.
-6
.changeset/famous-starfishes-confess.md
··· 1 - --- 2 - '@urql/exchange-suspense': patch 3 - --- 4 - 5 - Move @urql/exchange-suspense to the monorepo and switch it over to @urql/core 6 - See: [`83325a9`](https://github.com/FormidableLabs/urql/commit/83325a9)
-6
.changeset/fresh-owls-hide.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Fix updates not being triggered when optimistic updates diverge from the actual result. 6 - See: [#160](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/160)
-6
.changeset/gentle-cows-kiss.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Refactor away SchemaPredicates helper to reduce bundlesize. 6 - See: [#161](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/161)
-6
.changeset/green-files-prove.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - Fix more concurrent-mode and strict-mode edge cases and bugs by switching to useSubscription. 6 - See: [#514](https://github.com/FormidableLabs/urql/pull/514)
-7
.changeset/large-baboons-train.md
··· 1 - --- 2 - 'urql': patch 3 - --- 4 - 5 - Fix client-side suspense support (as minimally as possible) by altering 6 - the useBehaviourSubject behaviour. 7 - See: [#512](https://github.com/FormidableLabs/urql/pull/521)
-7
.changeset/modern-queens-run.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - Adds the `maskTypename` export to urql-core, this deeply masks typenames from the given payload. 6 - Masking `__typename` properties is also available as a `maskTypename` option on the `Client`. Setting this to true will 7 - strip typenames from results.
-6
.changeset/sour-actors-sniff.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - Add support for sending queries using GET instead of POST method 6 - See: [#519](https://github.com/FormidableLabs/urql/pull/519)
-6
.changeset/tame-pumas-peel.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Fix ssrExchange not serialising networkError on CombinedErrors correctly. 6 - See: [#515](https://github.com/FormidableLabs/urql/pull/515)
-6
.changeset/thin-lies-brush.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Add explicit error when creating Client without a URL in development. 6 - See: [#512](https://github.com/FormidableLabs/urql/pull/512)
-7
.changeset/weak-beds-heal.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Ensure that pagination helpers don't confuse pages that have less params with a 6 - query that has more params. 7 - See: [#156](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/156)
-6
.changeset/wicked-badgers-fetch.md
··· 1 - --- 2 - '@urql/core': minor 3 - --- 4 - 5 - Add client.readQuery method 6 - See: [#518](https://github.com/FormidableLabs/urql/pull/518)
+12
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 2.1.1 4 + 5 + ### Patch Changes 6 + 7 + - Update the `updater` function type of `cache.updateQuery` to have a return type of `DataFields` so that `__typename` does not need to be defined, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#538](https://github.com/FormidableLabs/urql/pull/538)) 8 + - ⚠️ Fix updates not being triggered when optimistic updates diverge from the actual result. (See [#160](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/160)) 9 + - Refactor away SchemaPredicates helper to reduce bundlesize. (See [#161](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/161)) 10 + - Ensure that pagination helpers don't confuse pages that have less params with a 11 + query that has more params. (See [#156](https://github.com/FormidableLabs/urql-exchange-graphcache/pull/156)) 12 + - Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518)) 13 + - @urql/core@1.9.0 14 + 3 15 ## 2.1.0 4 16 5 17 This release adds support for cache persistence which is bringing us one step closer to
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "2.1.0", 3 + "version": "2.1.1", 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/", ··· 57 57 }, 58 58 "dependencies": { 59 59 "wonka": "^3.2.1 || ^4.0.0", 60 - "@urql/core": ">= 1.8.0" 60 + "@urql/core": ">=1.9.0" 61 61 }, 62 62 "peerDependencies": { 63 63 "graphql": "^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
+8
exchanges/suspense/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.8.3 4 + 5 + ### Patch Changes 6 + 7 + - Move @urql/exchange-suspense to the monorepo and switch it over to @urql/core (See [`83325a9`](https://github.com/FormidableLabs/urql/commit/83325a9)) 8 + - Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518)) 9 + - @urql/core@1.9.0 10 + 3 11 ## v0.1.0 4 12 5 13 **Initial Release**
+2 -2
exchanges/suspense/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-suspense", 3 - "version": "1.8.2", 3 + "version": "1.8.3", 4 4 "description": "An exchange for client-side React Suspense support in urql", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/", ··· 51 51 "react": ">= 16.8.0" 52 52 }, 53 53 "dependencies": { 54 - "@urql/core": ">= 1.8.0", 54 + "@urql/core": ">=1.9.0", 55 55 "wonka": "^4.0.7" 56 56 } 57 57 }
+15
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 + 3 + ## 1.9.0 4 + 5 + ### Minor Changes 6 + 7 + - Adds the `maskTypename` export to urql-core, this deeply masks typenames from the given payload. 8 + Masking `__typename` properties is also available as a `maskTypename` option on the `Client`. Setting this to true will 9 + strip typenames from results, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#533](https://github.com/FormidableLabs/urql/pull/533)) 10 + - Add support for sending queries using GET instead of POST method (See [#519](https://github.com/FormidableLabs/urql/pull/519)) 11 + - Add client.readQuery method (See [#518](https://github.com/FormidableLabs/urql/pull/518)) 12 + 13 + ### Patch Changes 14 + 15 + - ⚠️ Fix ssrExchange not serialising networkError on CombinedErrors correctly. (See [#515](https://github.com/FormidableLabs/urql/pull/515)) 16 + - Add explicit error when creating Client without a URL in development. (See [#512](https://github.com/FormidableLabs/urql/pull/512))
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.8.2", 3 + "version": "1.9.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/",
+8
packages/preact-urql/CHANGELOG.md
··· 1 1 # @urql/preact 2 2 3 + ## 1.1.1 4 + 5 + ### Patch Changes 6 + 7 + - Switch over to using @urql/core package (See [`75323c0`](https://github.com/FormidableLabs/urql/commit/75323c0)) 8 + - Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518)) 9 + - @urql/core@1.9.0 10 + 3 11 ## 1.1.0 4 12 5 13 - Update urql to 1.8.0
+2 -2
packages/preact-urql/package.json
··· 1 1 { 2 2 "name": "@urql/preact", 3 - "version": "1.1.0", 3 + "version": "1.1.1", 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/", ··· 51 51 "preact": ">= 10.0.0" 52 52 }, 53 53 "dependencies": { 54 - "@urql/core": ">= 1.8.0", 54 + "@urql/core": ">=1.9.0", 55 55 "wonka": "^4.0.6" 56 56 } 57 57 }
+10
packages/react-urql/CHANGELOG.md
··· 1 1 # urql 2 2 3 + ## 1.9.0 4 + 5 + ### Patch Changes 6 + 7 + - ⚠️ Fix more concurrent-mode and strict-mode edge cases and bugs by switching to useSubscription. (See [#514](https://github.com/FormidableLabs/urql/pull/514)) 8 + - ⚠️ Fix client-side suspense support (as minimally as possible) by altering 9 + the useBehaviourSubject behaviour. (See [#512](https://github.com/FormidableLabs/urql/pull/521)) 10 + - Updated dependencies (See [#533](https://github.com/FormidableLabs/urql/pull/533), [#519](https://github.com/FormidableLabs/urql/pull/519), [#515](https://github.com/FormidableLabs/urql/pull/515), [#512](https://github.com/FormidableLabs/urql/pull/512), and [#518](https://github.com/FormidableLabs/urql/pull/518)) 11 + - @urql/core@1.9.0 12 + 3 13 ## 1.8.2 4 14 5 15 This patch fixes client-side suspense. While we wouldn't recommend its use
+2 -2
packages/react-urql/package.json
··· 1 1 { 2 2 "name": "urql", 3 - "version": "1.8.2", 3 + "version": "1.9.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/", ··· 60 60 "react": ">= 16.8.0" 61 61 }, 62 62 "dependencies": { 63 - "@urql/core": "^1.7.0", 63 + "@urql/core": "^1.9.0", 64 64 "use-subscription": "^1.3.0", 65 65 "wonka": "^4.0.7" 66 66 }