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.

Update CHANGELOG for 1.8.0

+25
+25
CHANGELOG.md
··· 8 8 9 9 _The format is based on [Keep a Changelog](http://keepachangelog.com/)._ 10 10 11 + ## [v1.8.0](https://github.com/FormidableLabs/urql/compare/v1.7.0...v1.8.0) 12 + 13 + This release doesn't change any major feature aspects, but comes with bugfixes 14 + to our suspense and concurrent-mode handling. Due to an upgrade to `wonka@^4.0.0` 15 + this is a minor version though. 16 + 17 + In [v1.6.0](https://github.com/FormidableLabs/urql/blob/master/CHANGELOG.md#v160) we believed to 18 + have solved all issues related to suspense and concurrent mode. However there were 19 + still some remaining cases where concurrent mode behaved incorrectly. With the new 20 + `useOperator` hook in [`react-wonka@2.0.0`](https://github.com/kitten/react-wonka) we believe 21 + to have now fixed all issues. 22 + 23 + The initial mount of `useQuery` and `useSubscription` will now synchronously reflect 24 + whatever `urql` returns, most of the times those will be cached results. Afterwards 25 + all subsequent updates and fetches will be scheduled cooperatively with React on 26 + an effect. 27 + 28 + If you're using `wonka` for an exchange with `urql` you may want to upgrade to `wonka@^4.0.5` soon. 29 + You can still use the older `v3.2.2` which will work with the new version (even in the same bundle), 30 + unless you're making use of its `subscribe`, `make`, or `makeSubject` exports. 31 + [A migration guide can be found in the `wonka` docs.](https://wonka.kitten.sh/migration) 32 + 33 + - Support concurrent mode with all edge cases fully (see [#496](https://github.com/FormidableLabs/urql/pull/496)) 34 + - Move to `react-wonka@2.0.0` with the prior fix in #496 (see [#499](https://github.com/FormidableLabs/urql/pull/499)) 35 + 11 36 ## [v1.7.0](https://github.com/FormidableLabs/urql/compare/v1.6.3...v1.7.0) 12 37 13 38 This release splits our main package into two entrypoints. Importing from `urql` remains