···11----
22-'@urql/exchange-persisted-fetch': major
33----
44-55-Make the persistedFetchExchange accept an optional argument, this argument consists of one option `preferGetForPersistedQueries`.
66-77-To migrate you will have to change from
88-99-```js
1010-import { persistedFetchExchange } from '@urql/exchange-persisted-fetch';
1111-1212-createClient({
1313- exchanges: [persistedFetchExchange],
1414-});
1515-```
1616-1717-to
1818-1919-```js
2020-import { persistedFetchExchange } from '@urql/exchange-persisted-fetch';
2121-2222-createClient({
2323- exchanges: [persistedFetchExchange()],
2424-});
2525-```
-5
.changeset/light-birds-kneel.md
···11----
22-'next-urql': patch
33----
44-55-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
···11----
22-'@urql/exchange-persisted-fetch': patch
33----
44-55-Replace `js-sha256` polyfill for Node.js support with Node's Native Crypto API
-5
.changeset/weak-rats-perform.md
···11----
22-'@urql/core': patch
33----
44-55-Add operationName to GET queries
+40
exchanges/persisted-fetch/CHANGELOG.md
···11# @urql/exchange-persisted-fetch
2233+## 1.0.0
44+55+### Major Changes
66+77+- Change the `persistedFetchExchange` to be an exchange factory. The `persistedFetchExchange` now
88+ expects to be called with options. An optional option, `preferGetForPersistedQueries`, may now
99+ be passed to send persisted queries as a GET request, even when the `Client`'s `preferGetMethod`
1010+ option is `false`.
1111+1212+To migrate you will have to update your usage of `persistedFetchExchange` from
1313+1414+```js
1515+import { persistedFetchExchange } from '@urql/exchange-persisted-fetch';
1616+1717+createClient({
1818+ exchanges: [
1919+ persistedFetchExchange
2020+ ],
2121+});
2222+```
2323+2424+to the following:
2525+2626+````js
2727+import { persistedFetchExchange } from '@urql/exchange-persisted-fetch';
2828+2929+createClient({
3030+ exchanges: [
3131+ // Call the exchange and pass optional options:
3232+ persistedFetchExchange()
3333+ ],
3434+});
3535+````
3636+3737+### Patch Changes
3838+3939+- 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))
4040+- Updated dependencies (See [#798](https://github.com/FormidableLabs/urql/pull/798))
4141+ - @urql/core@1.11.8
4242+343## 0.1.3
444545### Patch Changes
···11# @urql/core
2233+## 1.11.8
44+55+### Patch Changes
66+77+- Add operationName to GET queries, by [@jakubriedl](https://github.com/jakubriedl) (See [#798](https://github.com/FormidableLabs/urql/pull/798))
88+39## 1.11.7
410511### Patch Changes
+1-1
packages/core/package.json
···11{
22 "name": "@urql/core",
33- "version": "1.11.7",
33+ "version": "1.11.8",
44 "description": "The shared core for the highly customizable and versatile GraphQL client",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",
+6
packages/next-urql/CHANGELOG.md
···11# Changelog
2233+## 0.3.8
44+55+### Patch Changes
66+77+- 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))
88+39## 0.3.7
410511### Patch Changes
+1-1
packages/next-urql/package.json
···11{
22 "name": "next-urql",
33- "version": "0.3.7",
33+ "version": "0.3.8",
44 "description": "Convenience wrappers for using urql with NextJS.",
55 "sideEffects": false,
66 "homepage": "https://formidable.com/open-source/urql/docs/",