Skip to content

Commit

Permalink
Export Observable from @apollo/client/utilities
Browse files Browse the repository at this point in the history
This allows people to access `Observable` from the utilities
entry point directly, which can come in handy of they're only
using utilities and don't want to bring in the rest of the
`@apollo/client` package.
  • Loading branch information
hwillson committed Jul 18, 2020
1 parent e500683 commit 6454d64
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
## Apollo Client 3.0.2
# Apollo Client vNEXT

## Improvements

- Export `Observable` from the `@apollo/client/utilities` entry point. <br/>
[@hwillson](https://github.com/hwillson) in [#6642](https://github.com/apollographql/apollo-client/pull/6642)

# Apollo Client 3.0.2

## Bug Fixes

- Avoid duplicating `graphql/execution/execute` dependency in CommonJS bundle for `@apollo/client/link/schema`, fixing `instanceof` errors reported in [#6621](https://github.com/apollographql/apollo-client/issues/6621) and [#6614](https://github.com/apollographql/apollo-client/issues/6614). <br/>
[@benjamn](https://github.com/benjamn) in [#6624](https://github.com/apollographql/apollo-client/pull/6624)

## Apollo Client 3.0.1
# Apollo Client 3.0.1

## Bug Fixes

Expand Down
2 changes: 2 additions & 0 deletions src/utilities/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,5 @@ export {
offsetLimitPagination,
relayStylePagination,
} from './policies/pagination';

export { Observable } from './observables/Observable';

0 comments on commit 6454d64

Please sign in to comment.