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

+56 -44
-25
.changeset/big-worms-punch.md
··· 1 - --- 2 - '@urql/exchange-persisted-fetch': major 3 - --- 4 - 5 - Make the persistedFetchExchange accept an optional argument, this argument consists of one option `preferGetForPersistedQueries`. 6 - 7 - To migrate you will have to change from 8 - 9 - ```js 10 - import { persistedFetchExchange } from '@urql/exchange-persisted-fetch'; 11 - 12 - createClient({ 13 - exchanges: [persistedFetchExchange], 14 - }); 15 - ``` 16 - 17 - to 18 - 19 - ```js 20 - import { persistedFetchExchange } from '@urql/exchange-persisted-fetch'; 21 - 22 - createClient({ 23 - exchanges: [persistedFetchExchange()], 24 - }); 25 - ```
-5
.changeset/light-birds-kneel.md
··· 1 - --- 2 - 'next-urql': patch 3 - --- 4 - 5 - Bump `react-ssr-prepass` so it can get eliminated in the client-side bundle, this because the 1.2.1 version added "sideEffects:false"
-5
.changeset/tiny-elephants-push.md
··· 1 - --- 2 - '@urql/exchange-persisted-fetch': patch 3 - --- 4 - 5 - Replace `js-sha256` polyfill for Node.js support with Node's Native Crypto API
-5
.changeset/weak-rats-perform.md
··· 1 - --- 2 - '@urql/core': patch 3 - --- 4 - 5 - Add operationName to GET queries
+40
exchanges/persisted-fetch/CHANGELOG.md
··· 1 1 # @urql/exchange-persisted-fetch 2 2 3 + ## 1.0.0 4 + 5 + ### Major Changes 6 + 7 + - Change the `persistedFetchExchange` to be an exchange factory. The `persistedFetchExchange` now 8 + expects to be called with options. An optional option, `preferGetForPersistedQueries`, may now 9 + be passed to send persisted queries as a GET request, even when the `Client`'s `preferGetMethod` 10 + option is `false`. 11 + 12 + To migrate you will have to update your usage of `persistedFetchExchange` from 13 + 14 + ```js 15 + import { persistedFetchExchange } from '@urql/exchange-persisted-fetch'; 16 + 17 + createClient({ 18 + exchanges: [ 19 + persistedFetchExchange 20 + ], 21 + }); 22 + ``` 23 + 24 + to the following: 25 + 26 + ````js 27 + import { persistedFetchExchange } from '@urql/exchange-persisted-fetch'; 28 + 29 + createClient({ 30 + exchanges: [ 31 + // Call the exchange and pass optional options: 32 + persistedFetchExchange() 33 + ], 34 + }); 35 + ```` 36 + 37 + ### Patch Changes 38 + 39 + - Replace `js-sha256` polyfill for Node.js support with Node's Native Crypto API, by [@kitten](https://github.com/kitten) (See [#807](https://github.com/FormidableLabs/urql/pull/807)) 40 + - Updated dependencies (See [#798](https://github.com/FormidableLabs/urql/pull/798)) 41 + - @urql/core@1.11.8 42 + 3 43 ## 0.1.3 4 44 5 45 ### Patch Changes
+2 -2
exchanges/persisted-fetch/package.json
··· 1 1 { 2 2 "name": "@urql/exchange-persisted-fetch", 3 - "version": "0.1.3", 3 + "version": "1.0.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.11.7", 52 + "@urql/core": ">=1.11.8", 53 53 "wonka": "^4.0.10" 54 54 }, 55 55 "peerDependencies": {
+6
packages/core/CHANGELOG.md
··· 1 1 # @urql/core 2 2 3 + ## 1.11.8 4 + 5 + ### Patch Changes 6 + 7 + - Add operationName to GET queries, by [@jakubriedl](https://github.com/jakubriedl) (See [#798](https://github.com/FormidableLabs/urql/pull/798)) 8 + 3 9 ## 1.11.7 4 10 5 11 ### Patch Changes
+1 -1
packages/core/package.json
··· 1 1 { 2 2 "name": "@urql/core", 3 - "version": "1.11.7", 3 + "version": "1.11.8", 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/",
+6
packages/next-urql/CHANGELOG.md
··· 1 1 # Changelog 2 2 3 + ## 0.3.8 4 + 5 + ### Patch Changes 6 + 7 + - Bump `react-ssr-prepass` so it can get eliminated in the client-side bundle, this because the 1.2.1 version added "sideEffects:false", by [@JoviDeCroock](https://github.com/JoviDeCroock) (See [#809](https://github.com/FormidableLabs/urql/pull/809)) 8 + 3 9 ## 0.3.7 4 10 5 11 ### Patch Changes
+1 -1
packages/next-urql/package.json
··· 1 1 { 2 2 "name": "next-urql", 3 - "version": "0.3.7", 3 + "version": "0.3.8", 4 4 "description": "Convenience wrappers for using urql with NextJS.", 5 5 "sideEffects": false, 6 6 "homepage": "https://formidable.com/open-source/urql/docs/",