3.8.0-beta.6
Patch Changes
-
#11027
e47cfd04eThanks @phryneas! - Prevents the DevTool installation warning to be turned into a documentation link. -
#11013
5ed2cfdafThanks @alessbell! - Make private fieldsinFlightLinkObservablesandfetchCancelFnsprotected in QueryManager in order to make types available in@apollo/experimental-nextjs-app-supportpackage when extending theApolloClientclass. -
#11032
6a4da900aThanks @jerelmiller! - Throw errors inuseSuspenseQueryfor errors returned in incremental chunks whenerrorPolicyisnone. This provides a more consistent behavior of theerrorPolicyin the hook.Potentially breaking change
Previously, if you issued a query with
@deferand relied onerrorPolicy: 'none'to set theerrorproperty returned fromuseSuspenseQuerywhen the error was returned in an incremental chunk, this error is now thrown. Switch theerrorPolicytoallto avoid throwing the error and instead return it in theerrorproperty. -
#11025
6092b6edfThanks @jerelmiller! -useSuspenseQueryanduseBackgroundQuerywill now properly apply changes to its options between renders.