Releases: apollographql/apollo-ios-pagination
Releases · apollographql/apollo-ios-pagination
0.3.0
Fixed
- Call the completions in the given callback queue when CompletionManager is getting deinitialized (#503): In CompletionManager.deinit we directly call each of the completions but instead we should use .execute to ensure that the completion closures are being called in the given queue. Thank you @haldun for the contribution.
0.2.0
This release contains breaking changes to the API. Apollo iOS Pagination This is currently released as a 0.x version and is in active development. The API is subject to breaking changes until the stable 1.0 release.
New
- Added completion callbacks to
fetch
andrefetch
functions (#292) - Added conditional
Equatable
conformance to pagers (#298)
Improvement
0.1.0
This is the first stable release of Apollo iOS Pagination. This library is currently released as a 0.x version and is in active development. The API is subject to breaking changes until the stable 1.0 release.
ApolloPagination uses an ApolloClient to fetch and cache your paginated query data. It supports:
- Reading/Writing paginated data with an Apollo NormalizedCache
- Watching paginated data for changes
- Forward, Reverse, and Bi-directional pagination
- Cursor-based, offset-based, and custom pagination mechanisms
To learn about this library see the usage documentation and API reference.