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

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

authored by

urql-ci
github-actions[bot]
and committed by
GitHub
1ab77b65 6b691388

+19 -22
-5
.changeset/fluffy-toys-live.md
··· 1 - --- 2 - "@urql/exchange-graphcache": patch 3 - --- 4 - 5 - Fix ignore empty relay edges when using the `relayPagination` resolver
-5
.changeset/pink-turkeys-live.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Fix issues with continuously updating operations (i.e. subscriptions and `hasNext: true` queries) by shifting their layers in Graphcache behind those that are still awaiting a result. This causes continuous updates to not overwrite one-off query results while still keeping continuously updating operations at the highest possible layer.
-5
.changeset/shiny-bags-serve.md
··· 1 - --- 2 - '@urql/exchange-execute': patch 3 - --- 4 - 5 - Support using default values with directives. Previously, using a variables with a default value within a directive would fail the validation if it is empty.
-5
.changeset/unlucky-moles-stare.md
··· 1 - --- 2 - '@urql/exchange-graphcache': patch 3 - --- 4 - 5 - Prevent creating unnecessary layers, which should improve performance slightly.
+6
exchanges/execute/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 1.2.3 4 + 5 + ### Patch Changes 6 + 7 + - Support using default values with directives. Previously, using a variables with a default value within a directive would fail the validation if it is empty, by [@fathyb](https://github.com/fathyb) (See [#2435](https://github.com/FormidableLabs/urql/pull/2435)) 8 + 3 9 ## 1.2.2 4 10 5 11 ### Patch Changes
+1 -1
exchanges/execute/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-execute", 3 - "version": "1.2.2", 3 + "version": "1.2.3", 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/",
+11
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 4.4.0 4 + 5 + ### Minor Changes 6 + 7 + - Fix issues with continuously updating operations (i.e. subscriptions and `hasNext: true` queries) by shifting their layers in Graphcache behind those that are still awaiting a result. This causes continuous updates to not overwrite one-off query results while still keeping continuously updating operations at the highest possible layer, by [@kitten](https://github.com/kitten) (See [#2419](https://github.com/FormidableLabs/urql/pull/2419)) 8 + 9 + ### Patch Changes 10 + 11 + - ⚠️ Fix ignore empty relay edges when using the `relayPagination` resolver, by [@tgriesser](https://github.com/tgriesser) (See [#2431](https://github.com/FormidableLabs/urql/pull/2431)) 12 + - Prevent creating unnecessary layers, which should improve performance slightly, by [@kitten](https://github.com/kitten) (See [#2419](https://github.com/FormidableLabs/urql/pull/2419)) 13 + 3 14 ## 4.3.6 4 15 5 16 ### Patch Changes
+1 -1
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "4.3.6", 3 + "version": "4.4.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",