Releases: kamilkisiela/apollo-angular
Releases · kamilkisiela/apollo-angular
0.13.1
0.13.0
0.12.0
- Support
[email protected]
(PR #290) - Support
jsnext:main
(PR #277)
0.11.0
- Remove
DeprecatedWatchQueryOptions
and useWatchQueryOptions
(PR #274)
After updating to ([email protected]
)
- Add
result()
,currentResult()
,variables
,setOptions
,setVariables
toApolloQueryObservable
- BREAKING CHANGE:
ApolloQueryObservable
shares now a generic type withApolloQueryResult
Before:
class AppComponent {
users: ApolloQueryObservable<ApolloQueryResult<{}>>;
}
Now:
class AppComponent {
users: ApolloQueryObservable<{}>;
}
Behaves the same as the ObservableQuery
of apollo-client
.
0.10.0
0.9.0
- Support
[email protected]
(PR #206) - Support
es6
modules andtree-shaking
(PR #151, PR #206) - Make our
Ahead-of-Time
compilation compatible with Angular 2.3+ (PR #189, PR #195) - Added
getClient()
that exposes an instance of ApolloClient (PR #203) - BREAKING CHANGE The way to provide an instance of ApolloClient has changed, see how
0.9.0-rc.6
- Require at least
0.7.3
ofapollo-client
to bring back compatibility with TypeScript 2.0 compiler (PR #243, apollo-client #1171)
0.9.0-rc.5
Same as 0.9.0-rc.4
0.9.0-rc.4
Same as 0.9.0-rc.3
0.9.0-rc.3
- Support
tree-shaking
forapollo-client
andapollo-client-rxjs
(PR #206) - Support
[email protected]
(PR #206)