File tree 11 files changed +75
-13
lines changed
fl_query_connectivity_plus_adapter
11 files changed +75
-13
lines changed Original file line number Diff line number Diff line change 3
3
All notable changes to this project will be documented in this file.
4
4
See [ Conventional Commits] ( https://conventionalcommits.org ) for commit guidelines.
5
5
6
+ ## 2024-06-02
7
+
8
+ ### Changes
9
+
10
+ ---
11
+
12
+ Packages with breaking changes:
13
+
14
+ - There are no breaking changes in this release.
15
+
16
+ Packages with other changes:
17
+
18
+ - [ ` fl_query ` - ` v1.1.0 ` ] ( #fl_query---v110 )
19
+ - [ ` fl_query_connectivity_plus_adapter ` - ` v0.1.0+1 ` ] ( #fl_query_connectivity_plus_adapter---v0101 )
20
+ - [ ` fl_query_devtools ` - ` v0.1.0+1 ` ] ( #fl_query_devtools---v0101 )
21
+ - [ ` fl_query_hooks ` - ` v1.1.0 ` ] ( #fl_query_hooks---v110 )
22
+
23
+ ---
24
+
25
+ #### ` fl_query ` - ` v1.1.0 `
26
+
27
+ - ** FIX** : infinite query did not load pages in the correct order (#64 ).
28
+ - ** FIX** : infinite query hasErrors always true for dynamic error types.
29
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
30
+ - ** FIX** : error not resetting after successful query/mutation (#43 ).
31
+ - ** FEAT** : add is fetching getter (#65 ).
32
+
33
+ #### ` fl_query_connectivity_plus_adapter ` - ` v0.1.0+1 `
34
+
35
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
36
+
37
+ #### ` fl_query_devtools ` - ` v0.1.0+1 `
38
+
39
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
40
+
41
+ #### ` fl_query_hooks ` - ` v1.1.0 `
42
+
43
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
44
+ - ** FEAT** : add is fetching getter (#65 ).
45
+
46
+
6
47
## 2023-10-20
7
48
8
49
### Changes
Original file line number Diff line number Diff line change
1
+ ## 1.1.0
2
+
3
+ - ** FIX** : infinite query did not load pages in the correct order (#64 ).
4
+ - ** FIX** : infinite query hasErrors always true for dynamic error types.
5
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
6
+ - ** FIX** : error not resetting after successful query/mutation (#43 ).
7
+ - ** FEAT** : add is fetching getter (#65 ).
8
+
1
9
## 1.0.0
2
10
3
11
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ environment:
9
9
dependencies :
10
10
flutter :
11
11
sdk : flutter
12
- fl_query : ^1.0 .0
13
- fl_query_connectivity_plus_adapter : ^0.1.0
14
- fl_query_devtools : ^0.1.0
12
+ fl_query : ^1.1 .0
13
+ fl_query_connectivity_plus_adapter : ^0.1.0+1
14
+ fl_query_devtools : ^0.1.0+1
15
15
go_router : ^6.0.9
16
16
http : ^0.13.5
17
17
Original file line number Diff line number Diff line change 1
1
name : fl_query
2
2
description : Asynchronous data caching, refetching & invalidation library for Flutter
3
- version : 1.0 .0
3
+ version : 1.1 .0
4
4
5
5
homepage : https://fl-query.krtirtho.dev
6
6
issue_tracker : https://github.com/KRTirtho/fl-query/issues
Original file line number Diff line number Diff line change
1
+ ## 0.1.0+1
2
+
3
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
4
+
1
5
## 0.1.0
2
6
3
7
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Original file line number Diff line number Diff line change 1
1
name : fl_query_connectivity_plus_adapter
2
2
description : Connectivity Plus adapter for FlQuery Connectivity
3
- version : 0.1.0
3
+ version : 0.1.0+1
4
4
5
5
homepage : https://fl-query.krtirtho.dev
6
6
repository : https://github.com/KRTirtho/tree/main/packages/fl_query_connectivity_plus_adapter
@@ -13,7 +13,7 @@ environment:
13
13
dependencies :
14
14
flutter :
15
15
sdk : flutter
16
- fl_query : ^1.0 .0
16
+ fl_query : ^1.1 .0
17
17
connectivity_plus : ^4.0.1
18
18
19
19
dev_dependencies :
Original file line number Diff line number Diff line change
1
+ ## 0.1.0+1
2
+
3
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
4
+
1
5
## 0.1.0
2
6
3
7
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Original file line number Diff line number Diff line change 1
1
name : fl_query_devtools
2
2
description : Devtools support for Fl-Query
3
- version : 0.1.0
3
+ version : 0.1.0+1
4
4
homepage : https://fl-query.krtirtho.dev
5
5
repository : https://github.com/KRTirtho/fl-query/tree/main/packages/fl_query_devtools
6
6
issue_tracker : https://github.com/KRTirtho/fl-query/issues
@@ -12,7 +12,7 @@ environment:
12
12
dependencies :
13
13
flutter :
14
14
sdk : flutter
15
- fl_query : ^1.0 .0
15
+ fl_query : ^1.1 .0
16
16
json_view : ^0.4.1
17
17
18
18
dev_dependencies :
Original file line number Diff line number Diff line change
1
+ ## 1.1.0
2
+
3
+ - ** FIX** : schedule to queue doesn't work and stale queries cause infinite loop.
4
+ - ** FEAT** : add is fetching getter (#65 ).
5
+
1
6
## 1.0.0
2
7
3
8
- Graduate package to a stable release. See pre-releases prior to this version for changelog entries.
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ dependencies:
13
13
sdk : flutter
14
14
15
15
cupertino_icons : ^1.0.2
16
- fl_query : ^1.0 .0
17
- fl_query_connectivity_plus_adapter : ^0.1.0
18
- fl_query_hooks : ^1.0 .0
16
+ fl_query : ^1.1 .0
17
+ fl_query_connectivity_plus_adapter : ^0.1.0+1
18
+ fl_query_hooks : ^1.1 .0
19
19
go_router : ^6.0.9
20
20
http : ^0.13.5
21
21
flutter_hooks : ^0.20.0
Original file line number Diff line number Diff line change 1
1
name : fl_query_hooks
2
2
description : Elite flutter_hooks compatible library for fl_query, the
3
3
Asynchronous data caching, refetching & invalidation library for Flutter
4
- version : 1.0 .0
4
+ version : 1.1 .0
5
5
6
6
homepage : https://fl-query.krtirtho.dev
7
7
issue_tracker : https://github.com/KRTirtho/fl-query/issues
@@ -15,7 +15,7 @@ environment:
15
15
dependencies :
16
16
flutter :
17
17
sdk : flutter
18
- fl_query : ^1.0 .0
18
+ fl_query : ^1.1 .0
19
19
flutter_hooks : ^0.20.0
20
20
21
21
dev_dependencies :
You can’t perform that action at this time.
0 commit comments