Releases: vuejs/apollo
Releases Β· vuejs/apollo
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.
v2.1.0-beta.2
Breaking changes
- Smart query:
result
hook parameter is now a full ApolloQueryResult object.
New
- SSR:
apolloProvider.collect
newwaitForLoaded
option (doc). This allow waiting for all queries to be loaded, even when they return partial results (for example, from cache).
Improved
- Better query loading state handling