-
-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
'@urql/core': minor | ||
--- | ||
|
||
Add consistent "single-source behavior" which makes the `Client` more forgiving when duplicate | ||
sources are used, which previously made it difficult to use the same operation across an app | ||
together with `cache-and-network`; This was a rare use-case, and it isn't recommended to overfetch | ||
data across an app, however, the new `Client` implementation of shared sources ensures that when an | ||
operation is active that the `Client` distributes the last known result for the active operation to | ||
any new usages of it (which is called “replaying stale results”) | ||
|
||
See: [#1515](https://github.com/FormidableLabs/urql/pull/1515) | ||
|