···11+---
22+'@urql/exchange-persisted': patch
33+'@urql/core': patch
44+---
55+66+Use nullish coalescing for `preferGetMethod` and `preferGetForPersistedQueries` so that `false` is kept if set.
+1-1
exchanges/persisted/src/persistedExchange.test.ts
···174174 expect(operations[0]).not.toHaveProperty('extensions.persistedQuery');
175175});
176176177177-it.each([true, 'force', 'within-url-limit'] as const)(
177177+it.each([true, false, 'force', 'within-url-limit'] as const)(
178178 'sets `context.preferGetMethod` to %s when `options.preferGetForPersistedQueries` is %s',
179179 async preferGetMethodValue => {
180180 const { exchangeArgs } = makeExchangeArgs();