repository 3.0.0
repository: ^3.0.0 copied to clipboard
The all-in-one solution for fetching remote data from a REST API using the power of caching and auto refresh.
3.0.0 - 2023-05-22 #
- Major rewrite of all repository package to be more efficient and gracefully handle the different cache strategies, using hive as default and adding Zip repository.
2.0.0 - 2019-10-02 #
- Major rewrite of
CachedRepositoryso that it returnsCacheItem<Item>instead ofItems. This is a breaking change as it's no longer mutable. But it allows for cooler advanced functionality as it offers new information to users.
1.0.4 - 2019-10-01 #
- Add
OnlyCollectionFetcher.
1.0.3 - 2019-09-13 #
- Major rewrite of
CachedRepositoryto be more efficient and gracefully handle the different cache strategies as well as caches yielding multiple values.
1.0.2 - 2019-09-09 #
CachedRepositoryallowing multiple cache strategies.
1.0.1 - 2019-09-09 #
- Minor fixes allowing
fetchstream subscription to be closed after first event.
1.0.0 - 2019-09-06 #
- Removed unnecessary dependencies
flutter,hive,path_provider,providerandshared_preferences. - Fixed pubspec description and homepage.
- Added example.
0.0.1 - 2019-08-22 #
- Initial release with basic
RepositoryandIdstructure, as well asInMemoryStorage,Transformer,ObjectToJsonTransformer,JsonToStringTransformer, andCachedRepository.