···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+```