Skip to content

Commit

Permalink
Add change in the changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rricard committed Jul 22, 2016
1 parent 38cd192 commit 38ef025
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Expect active development and potentially significant breaking changes in the `0.x` track. We'll try to be diligent about releasing a `1.0` version in a timely fashion (ideally within 3 to 6 months), to signal the start of a more stable API.

### vNEXT
- Basic infinite pagination support via the `fetchMore` method and the `@apolloFetchMore` directive. By naming an array field with the directive and by calling the method with this name, you can complete the array with new retrieved data. If an element with the same ID field is re-added, the last value will be kept.
- Add `useAfter` function that accepts `afterwares`. Afterwares run after a request is made (after middlewares). In the afterware function, you get the whole response and request options, so you can handle status codes and errors if you need to. For example, if your requests return a `401` in the case of user logout, you can use this to identify when that starts happening. It can be used just as a `middleware` is used. Just pass an array of afterwares to the `useAfter` function.
- Add a stack trace to `ApolloError`. [PR #445](https://github.com/apollostack/apollo-client/pull/445) and [Issue #434](https://github.com/apollostack/apollo-client/issues/434).
- Fixed an extra log of errors on `query` calls. [PR #445](https://github.com/apollostack/apollo-client/pull/445) and [Issue #423](https://github.com/apollostack/apollo-client/issues/423).
Expand Down

0 comments on commit 38ef025

Please sign in to comment.