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

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
b48652b4 2f8db845

+20 -13
-5
.changeset/curvy-terms-dress.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Don't add `undefined` to any property of the `ssrExchange`'s serialized results, as this would crash in Next.js
-5
.changeset/little-crabs-sell.md
··· 1 - --- 2 - '@urql/exchange-graphcache': minor 3 - --- 4 - 5 - Add a `mergeMode: 'before' | 'after'` option to the `simplePagination` helper to define whether pages are merged before or after preceding ones when pagination, similar to `relayPagination`'s option
+11
exchanges/graphcache/CHANGELOG.md
··· 1 1 # @urql/exchange-graphcache 2 2 3 + ## 3.2.0 4 + 5 + ### Minor Changes 6 + 7 + - Add a `mergeMode: 'before' | 'after'` option to the `simplePagination` helper to define whether pages are merged before or after preceding ones when pagination, similar to `relayPagination`'s option, by [@hoangvvo](https://github.com/hoangvvo) (See [#1174](https://github.com/FormidableLabs/urql/pull/1174)) 8 + 9 + ### Patch Changes 10 + 11 + - Updated dependencies (See [#1168](https://github.com/FormidableLabs/urql/pull/1168)) 12 + - @urql/core@1.15.2 13 + 3 14 ## 3.1.11 4 15 5 16 ### Patch Changes
+2 -2
exchanges/graphcache/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-graphcache", 3 - "version": "3.1.11", 3 + "version": "3.2.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.0", 68 + "@urql/core": ">=1.15.2", 69 69 "wonka": "^4.0.14" 70 70 }, 71 71 "peerDependencies": {
+6
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.15.2 4 + 5 + ### Patch Changes 6 + 7 + - Don't add `undefined` to any property of the `ssrExchange`'s serialized results, as this would crash in Next.js, by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#1168](https://github.com/FormidableLabs/urql/pull/1168)) 8 + 3 9 ## 1.15.1 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.15.1", 3 + "version": "1.15.2", 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/",