chore(release): publish packages

- fl_query@1.0.0-alpha.3
 - fl_query_hooks@1.0.0-alpha.3
 - fl_query_devtools@0.1.0-alpha.1
 - fl_query_connectivity_plus_adapter@0.1.0-alpha.1
This commit is contained in:
Kingkor Roy Tirtho
2023-06-24 22:17:43 +06:00
parent c0edb90896
commit 4dbdfff8b6
11 changed files with 232 additions and 13 deletions
+56
View File
@@ -1,3 +1,59 @@
## 1.0.0-alpha.3
- **REFACTOR**: directory restructure revamp.
- **REFACTOR**: more convenient ways customizing config.
- **REFACTOR**: stale logic to separate mixin.
- **REFACTOR**: remove KyeType and use String for queryKey and mutationKey.
- **REFACTOR**(example): package specific examples instead of a single example.
- **REFACTOR**(QueryBowl): query bowl logic as a separate class instead of a stateful widget.
- **REFACTOR**: move devtools to separate library.
- **FIX**(fl_query_hooks): unneeded empty instances of query/mutation.
- **FIX**(base_query): onData callback getting called with null #17.
- **FIX**(fl_query_hooks): newest query/mutation/infinite-query instance not getting returned.
- **FIX**: fetch query and infinite query resolving immediately without proper result.
- **FIX**: refetchOnExternalDataChange isn't working #18.
- **FIX**: mutation context param clashing with BuildContext.
- **FIX**: query, infinite_query fetching/refetching when offline.
- **FIX**: state update on unmounted hook and infinite query cache refetch not working.
- **FIX**(client): check for error out put in fetch query and infinite query and mutateMutation immediate resolve.
- **FIX**: not updating queryFn on create query's old query and checking stale status after updating queryFn instead of storing the status before.
- **FIX**(InfiniteQueryJob): remove unneeded `keepPreviousData` property.
- **FEAT**: add mutation and mutation builder with example.
- **FEAT**: infinite query listenable add and cache event stream.
- **FEAT**: add infinite query builder with example.
- **FEAT**: new widget query listable builder.
- **FEAT**: safe setState for builders, separate cache box for query and infinite query and update state before _operate to indicate loading state.
- **FEAT**: working query builder, remove timeout from retryConfig.
- **FEAT**: cache, client, query builder add and refreshOnQueryFnChange option.
- **FEAT**: infinite query implementation.
- **FEAT**: safe cancellation of running operation on reset.
- **FEAT**: initial query and retryer implementation.
- **FEAT**: clean old junk.
- **FEAT**: useQuery hook with working example.
- **FEAT**: useInfiniteQuery hook add.
- **FEAT**: add query and infinite query disk caching support.
- **FEAT**: use function hooks instead of class hooks.
- **FEAT**: new next_page signature, query/mutation fn in notifier and safe update in use_updater.
- **FEAT**(QueryClientProvider): add config parameters and override-able client parameter.
- **FEAT**: add devtools (WIP).
- **FEAT**: add ability to get, refresh query and infinite queries using prefix.
- **FEAT**: connectivity adapter package for connectivity_plus.
- **FEAT**: refresh on network state change and cancel retry when offline.
- **FEAT**: add support for keepPreviousData & examples regarding this.
- **FEAT**: resolve and resolveWith helper support.
- **FEAT**: add initial support for `InfiniteQuery`.
- **FEAT**(infinite-query): onData and onError listener support.
- **FEAT**(infinite-query): add `useInfiniteQuery` hook with example.
- **FEAT**(infinite-query): add setInfiniteQueryData support.
- **FEAT**(infinite-query): add refetchPages, refetchOnStale, refetchOnMount support.
- **FEAT**(infinite-query): add all the features of query in infinite query.
- **FEAT**: implement refetchOnApplicationResume and refetchOnWindowFocus.
- **DOCS**: add dynamic query & mutation section.
- **DOCS**: add paginated-query section and update optimistc update section.
- **DOCS**: update according to the new query bowl refactor.
- **DOCS**: Front page Images added.
- **DOCS**: add infinite query page.
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+3 -3
View File
@@ -9,9 +9,9 @@ environment:
dependencies:
flutter:
sdk: flutter
fl_query: ^1.0.0-alpha.2
fl_query_connectivity_plus_adapter: ^0.1.0
fl_query_devtools: ^0.1.0
fl_query: ^1.0.0-alpha.3
fl_query_connectivity_plus_adapter: ^0.1.0-alpha.1
fl_query_devtools: ^0.1.0-alpha.1
go_router: ^6.0.9
http: ^0.13.5
+1 -1
View File
@@ -1,6 +1,6 @@
name: fl_query
description: Asynchronous data caching, refetching & invalidation library for Flutter
version: 1.0.0-alpha.2
version: 1.0.0-alpha.3
homepage: https://fl-query.vercel.app
issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -1,3 +1,7 @@
## 0.1.0-alpha.1
- Update a dependency to the latest release.
## 0.0.1
* TODO: Describe initial release.
@@ -1,6 +1,6 @@
name: fl_query_connectivity_plus_adapter
description: Connectivity Plus adapter for FlQuery Connectivity
version: 0.1.0
version: 0.1.0-alpha.1
homepage: https://fl-query.vercel.app
repository: https://github.com/KRTirtho/tree/main/packages/fl_query_connectivity_plus_adapter
@@ -13,7 +13,7 @@ environment:
dependencies:
flutter:
sdk: flutter
fl_query: ^1.0.0-alpha.2
fl_query: ^1.0.0-alpha.3
connectivity_plus: ^4.0.1
dev_dependencies:
+4
View File
@@ -1,3 +1,7 @@
## 0.1.0-alpha.1
- Update a dependency to the latest release.
## 0.0.1
* TODO: Describe initial release.
+2 -2
View File
@@ -1,6 +1,6 @@
name: fl_query_devtools
description: Devtools support for Fl-Query
version: 0.1.0
version: 0.1.0-alpha.1
homepage: https://fl-query.vercel.app
repository: https://github.com/KRTirtho/fl-query/tree/main/packages/fl_query_devtools
issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -12,7 +12,7 @@ environment:
dependencies:
flutter:
sdk: flutter
fl_query: ^1.0.0-alpha.2
fl_query: ^1.0.0-alpha.3
json_view: ^0.4.1
dev_dependencies:
+34
View File
@@ -1,3 +1,37 @@
## 1.0.0-alpha.3
- **REFACTOR**: move devtools to separate library.
- **REFACTOR**: more convenient ways customizing config.
- **REFACTOR**(QueryBowl): query bowl logic as a separate class instead of a stateful widget.
- **REFACTOR**(example): package specific examples instead of a single example.
- **FIX**(fl_query_hooks): fetch query when queryKey changes.
- **FIX**(fl_query_hooks): query/mutation reset to initial memoized values on hot reload.
- **FIX**: state update on unmounted hook and infinite query cache refetch not working.
- **FIX**: refetchOnExternalDataChange isn't working #18.
- **FIX**(base_query): onData callback getting called with null #17.
- **FIX**(fl_query_hooks): unneeded empty instances of query/mutation.
- **FIX**(fl_query_hooks): newest query/mutation/infinite-query instance not getting returned.
- **FEAT**: connectivity adapter package for connectivity_plus.
- **FEAT**: add devtools (WIP).
- **FEAT**: new next_page signature, query/mutation fn in notifier and safe update in use_updater.
- **FEAT**: use function hooks instead of class hooks.
- **FEAT**: use mutation hook add.
- **FEAT**: useInfiniteQuery hook add.
- **FEAT**: useQuery hook with working example.
- **FEAT**: safe cancellation of running operation on reset.
- **FEAT**: add infinite query builder with example.
- **FEAT**: cache, client, query builder add and refreshOnQueryFnChange option.
- **FEAT**: initial query and retryer implementation.
- **FEAT**: clean old junk.
- **FEAT**: add query and infinite query disk caching support.
- **FEAT**(infinite-query): onData and onError listener support.
- **FEAT**(infinite-query): add `useInfiniteQuery` hook with example.
- **FEAT**(infinite-query): add refetchPages, refetchOnStale, refetchOnMount support.
- **FEAT**: add initial support for `InfiniteQuery`.
- **FEAT**: add support for keepPreviousData & examples regarding this.
- **DOCS**: add infinite query page.
- **DOCS**: add paginated-query section and update optimistc update section.
# Changelog
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
+3 -3
View File
@@ -13,9 +13,9 @@ dependencies:
sdk: flutter
cupertino_icons: ^1.0.2
fl_query: ^1.0.0-alpha.2
fl_query_connectivity_plus_adapter: ^0.1.0
fl_query_hooks: ^1.0.0-alpha.2
fl_query: ^1.0.0-alpha.3
fl_query_connectivity_plus_adapter: ^0.1.0-alpha.1
fl_query_hooks: ^1.0.0-alpha.3
go_router: ^6.0.9
http: ^0.13.5
flutter_hooks: ^0.18.6
+2 -2
View File
@@ -1,7 +1,7 @@
name: fl_query_hooks
description: Elite flutter_hooks compatible library for fl_query, the
Asynchronous data caching, refetching & invalidation library for Flutter
version: 1.0.0-alpha.2
version: 1.0.0-alpha.3
homepage: https://fl-query.vercel.app
issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -15,7 +15,7 @@ environment:
dependencies:
flutter:
sdk: flutter
fl_query: ^1.0.0-alpha.2
fl_query: ^1.0.0-alpha.3
flutter_hooks: ^0.18.6
dev_dependencies: