Skip to content

Releases: kamilkisiela/apollo-angular

0.11.0

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

After updating to (apollo-client-rxjs@0.5.0)

  • 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
  • Support apollo-client@0.8.0 (PR #206)
  • Support es6 modules and tree-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

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
  • Support tree-shaking for apollo-client and apollo-client-rxjs (PR #206)
  • Support apollo-client@0.7.0 (PR #206)

0.9.0-rc.2

11 Jan 15:52
Compare
Choose a tag to compare
0.9.0-rc.2 Pre-release
Pre-release
  • Support apollo-client@0.6.0 and apollo-client-rxjs@0.3.0

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

0.8.0

10 Nov 11:47
Compare
Choose a tag to compare
  • Made mutate() and query() methods to return Observable instead of Promise (PR #140)
  • Use types of options (for watchQuery, query, mutate) (
    PR #145,
    PR #146,
    PR #148
    )