Releases: vuejs/apollo
Releases Β· vuejs/apollo
v3.0.0-beta.26
New
- ssr: provider default options
- ssr: config
- ssr: globalPrefetch
- ssr: mockInstance
Fixed
- fetching incorrect result from cache after an Apollo error (#343)
Others
- lots of docs improvements!
v3.0.0-beta.25
Fixed
- class component: watching and computing of dynamic data props with default value
v3.0.0-beta.24
Fixed
- added setter for intial value, closes #333
v3.0.0-beta.23
Fixed
- ssr:
$options
was missing
v3.0.0-beta.22
v3.0.0-beta.21
Fixed
- ssr: missing ssr helpers, closes #378
v3.0.0-beta.20
Breaking changes
- Provide has been dropped to fix an issue with root instances. This means you have to change
provide: apolloProvider.provide()
toapolloProvider
on your root instance (like some time ago). The injection of$apolloProvider
in instances should be unchanged (works like inject/provide). - The SSR system and API has been completely refactored (docs).
- Some TypeScript fixes may cause some previously working typscript code no longer be valid (more info).
New
- Add
clientId
in ApolloMutation component (#359) - Added support for
debounce
andthrottle
in ApolloQuery component (#349) - Let the ApolloQuery be a renderless component if
tag
prop is undefined (#365)
Fixed
- SmartQuery shouldn't be auto-started on server when prefetch is false (#348)
- TypeScript: specify
this
type forwatchLoading
(#360)
Docs
v3.0.0-beta.16
Fixed
$query
in thedefaultOptions
option of provider not being applied
v3.0.0-beta.15
Fixed
- hasOwnProperty is not a function (#294)
- Missing
throttle-debounce
dep in build
v3.0.0-beta.14
New
error.gqlError
is the first GraphQL error if any, also available in Apollo Components slot-scope asgqlError
.
Fixed
- #272 #283 restart query subscription after an error occurred (should help with
apolloClient.resetStore()
) - watch on apollo fields
- ApolloQuery: remove
console.log
in error handler