Skip to content

Releases: kamilkisiela/apollo-angular

0.12.0

15 Mar 22:06
Compare
Choose a tag to compare

0.11.0

05 Feb 11:41
Compare
Choose a tag to compare
  • Remove DeprecatedWatchQueryOptions and use WatchQueryOptions (PR #274)

After updating to ([email protected])

  • Add result(), currentResult(), variables, setOptions, setVariables to ApolloQueryObservable
  • BREAKING CHANGE: ApolloQueryObservable shares now a generic type with ApolloQueryResult

Before:

class AppComponent {
  users: ApolloQueryObservable<ApolloQueryResult<{}>>;
}

Now:

class AppComponent {
  users: ApolloQueryObservable<{}>;
}

Behaves the same as the ObservableQuery of apollo-client.

0.10.0

30 Jan 02:38
Compare
Choose a tag to compare
  • BRAKING CHANGE Change name of the service to Apollo, instead of Angular2Apollo (PR #262)
  • Introduce multiple clients (PR #263)

0.9.0

25 Jan 06:06
Compare
Choose a tag to compare

0.9.0-rc.6

24 Jan 13:52
Compare
Choose a tag to compare
0.9.0-rc.6 Pre-release
Pre-release

0.9.0-rc.5

12 Jan 17:39
Compare
Choose a tag to compare
0.9.0-rc.5 Pre-release
Pre-release

Same as 0.9.0-rc.4

0.9.0-rc.4

12 Jan 17:39
Compare
Choose a tag to compare
0.9.0-rc.4 Pre-release
Pre-release

Same as 0.9.0-rc.3

0.9.0-rc.3

11 Jan 15:52
Compare
Choose a tag to compare
0.9.0-rc.3 Pre-release
Pre-release

0.9.0-rc.2

11 Jan 15:52
Compare
Choose a tag to compare
0.9.0-rc.2 Pre-release
Pre-release

0.9.0-rc.1

03 Jan 11:36
Compare
Choose a tag to compare
0.9.0-rc.1 Pre-release
Pre-release
  • Support es6 modules and tree-shaking (PR #151)
  • 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