Skip to content
This repository was archived by the owner on Jun 24, 2026. It is now read-only.

Commit c514de5

Browse files
committed
Merge branch 'docs'
2 parents 96b8450 + 3b2e752 commit c514de5

6 files changed

Lines changed: 27 additions & 7 deletions

File tree

packages/fl_query/CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
v0.1.0
1+
## v0.2.0
2+
3+
### New
4+
- Paginated/Lagged Query support using `QueryJob`'s `keepPreviousData`
5+
- Mutation event context (returned data from `onMutate` available in `onData` & `onError`)
6+
- Support for `refetchOnMount`. Now query will be refetched when a new widget is mounted.
7+
8+
### Improvements
9+
- Only one Query & Mutation instance in `QueryBuilder` & `MutationBuilder` which reduces memory usage
10+
- Optimistic updates are now context driven
11+
12+
13+
## v0.1.0
214

315
Initial Release
416

packages/fl_query/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies:
3434
# The following adds the Cupertino Icons font to your application.
3535
# Use with the CupertinoIcons class for iOS style icons.
3636
cupertino_icons: ^1.0.2
37-
fl_query: ^0.1.0
37+
fl_query: ^0.2.0
3838
http: ^0.13.5
3939

4040
dev_dependencies:

packages/fl_query/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fl_query
22
description: Asynchronous data caching, refetching & invalidation library for Flutter
3-
version: 0.1.0
3+
version: 0.2.0
44
homepage: https://fl-query.vercel.app
55

66
issue_tracker: https://github.com/KRTirtho/fl-query/issues

packages/fl_query_hooks/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.2.0
2+
3+
### New
4+
- Support Paginated/Lagged Query using `keepPreviousData`
5+
6+
### Improvements
7+
- Only one Query & Mutation instance in `useQuery` & `useMutation` reducing memory usage
8+
19
## 0.1.0
210

311
Initial Release

packages/fl_query_hooks/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ dependencies:
3434
# The following adds the Cupertino Icons font to your application.
3535
# Use with the CupertinoIcons class for iOS style icons.
3636
cupertino_icons: ^1.0.2
37-
fl_query: ^0.1.0
38-
fl_query_hooks: ^0.1.0
37+
fl_query: ^0.2.0
38+
fl_query_hooks: ^0.2.0
3939
flutter_hooks: ^0.18.5+1
4040
http: ^0.13.5
4141

packages/fl_query_hooks/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: fl_query_hooks
22
description: Elite flutter_hooks compatible library for fl_query, the Asynchronous data caching, refetching & invalidation library for Flutter
3-
version: 0.1.0
3+
version: 0.2.0
44
homepage: https://fl-query.vercel.app
55

66
issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -16,7 +16,7 @@ dependencies:
1616
sdk: flutter
1717
flutter_hooks: ^0.18.5+1
1818
uuid: ^3.0.6
19-
fl_query: ^0.1.0
19+
fl_query: ^0.2.0
2020

2121
dev_dependencies:
2222
flutter_test:

0 commit comments

Comments
 (0)