Releases: vuejs/apollo
Releases Β· vuejs/apollo
v2.1.0-rc.2
New
- Apollo definition (see doc):
$loadingKey
: default value for the component$error
: extra error handler for the component$watchLoading
: extra loading watcher
- Apollo Provider Constructor options (see doc):
defaultOptions
: default object for all theapollo
definitionswatchLoading
: global loading watchererrorHandler
: global error handler
Improved
- Internals cleaned up
- API Reference (WIP)
Fixed
- #101 SSR
variables
is nowundefined
ifprefetch
istrue
and novariables
option is present on the smart query
v2.1.0-beta.23
Fixed
- #97 The loading counter is correctly reset if
fetchMore
doesn't return any new result.
v2.1.0-beta.22
Improved
subscribeToMore
on smart query declaration can accept an array of subscriptions.
v2.1.0-beta.21
Fixed
v2.1.0-beta.20
Fixed
- #95 - Component instances sharing state
v2.1.0-beta.19
New
- ApolloProvider new
getStates
method (doc).
v2.1.0-beta-18
New
- You can now use vue-apollo in the browser together with apollo-client-browser. No build steps required!
v2.1.0-beta.9
New
- You can now define
subscribeToMore
directly inside query definition (doc).
v2.1.0-beta.8
New
- Server-Side Rendering API has arrived!
v2.1.0-beta.7
New
- You can now manually add smart queries & subscriptions with addSmartQuery and addSmartSubscription.
Improved
- Smart query
refetch
,fetchMore
,setVariables
andsetOptions
now trigger loading state changes.