Releases: the-guild-org/apollo-angular
Releases · the-guild-org/apollo-angular
0.13.2
0.13.1
0.13.0
0.12.0
0.11.0
- Remove
DeprecatedWatchQueryOptionsand useWatchQueryOptions(PR #274)
After updating to (apollo-client-rxjs@0.5.0)
- Add
result(),currentResult(),variables,setOptions,setVariablestoApolloQueryObservable - BREAKING CHANGE:
ApolloQueryObservableshares 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
apollo-client@0.8.0(PR #206) - Support
es6modules andtree-shaking(PR #151, PR #206) - Make our
Ahead-of-Timecompilation 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.3ofapollo-clientto 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