Releases: vuejs/apollo
Releases Β· vuejs/apollo
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
Fixed in previous releases
v3.0.0-beta.11
Improved
- Pass back
isLoading
to scoped-slot (#218) - Add default query options (#257)
- Remove lodash to reduce final size (#251)
Fixed
no-cache smar
t queries are throwing exceptions in optimistic UI updates (#280)- relax getter on loading (#237)
- Update typed apollo provider (#273)
- Add Typescript type for addSmartQuery() (#230)
- fix: #265 silent errors if catched
- refactor: watchers in start() fix #122
- refactor: callHandlers fix #108
- fix: #239 skip prop proxy if query is manual