diff --git a/CHANGELOG.md b/CHANGELOG.md index 5913938..f438be2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,47 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-06-02 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`fl_query` - `v1.1.0`](#fl_query---v110) + - [`fl_query_connectivity_plus_adapter` - `v0.1.0+1`](#fl_query_connectivity_plus_adapter---v0101) + - [`fl_query_devtools` - `v0.1.0+1`](#fl_query_devtools---v0101) + - [`fl_query_hooks` - `v1.1.0`](#fl_query_hooks---v110) + +--- + +#### `fl_query` - `v1.1.0` + + - **FIX**: infinite query did not load pages in the correct order (#64). + - **FIX**: infinite query hasErrors always true for dynamic error types. + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + - **FIX**: error not resetting after successful query/mutation (#43). + - **FEAT**: add is fetching getter (#65). + +#### `fl_query_connectivity_plus_adapter` - `v0.1.0+1` + + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + +#### `fl_query_devtools` - `v0.1.0+1` + + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + +#### `fl_query_hooks` - `v1.1.0` + + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + - **FEAT**: add is fetching getter (#65). + + ## 2023-10-20 ### Changes diff --git a/packages/fl_query/CHANGELOG.md b/packages/fl_query/CHANGELOG.md index 0f8c993..d8bebc8 100644 --- a/packages/fl_query/CHANGELOG.md +++ b/packages/fl_query/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.1.0 + + - **FIX**: infinite query did not load pages in the correct order (#64). + - **FIX**: infinite query hasErrors always true for dynamic error types. + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + - **FIX**: error not resetting after successful query/mutation (#43). + - **FEAT**: add is fetching getter (#65). + ## 1.0.0 - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. diff --git a/packages/fl_query/example/pubspec.yaml b/packages/fl_query/example/pubspec.yaml index a371f6e..4f69bd1 100644 --- a/packages/fl_query/example/pubspec.yaml +++ b/packages/fl_query/example/pubspec.yaml @@ -9,9 +9,9 @@ environment: dependencies: flutter: sdk: flutter - fl_query: ^1.0.0 - fl_query_connectivity_plus_adapter: ^0.1.0 - fl_query_devtools: ^0.1.0 + fl_query: ^1.1.0 + fl_query_connectivity_plus_adapter: ^0.1.0+1 + fl_query_devtools: ^0.1.0+1 go_router: ^6.0.9 http: ^0.13.5 diff --git a/packages/fl_query/pubspec.yaml b/packages/fl_query/pubspec.yaml index 5a3b015..ebbd8fa 100644 --- a/packages/fl_query/pubspec.yaml +++ b/packages/fl_query/pubspec.yaml @@ -1,6 +1,6 @@ name: fl_query description: Asynchronous data caching, refetching & invalidation library for Flutter -version: 1.0.0 +version: 1.1.0 homepage: https://fl-query.krtirtho.dev issue_tracker: https://github.com/KRTirtho/fl-query/issues diff --git a/packages/fl_query_connectivity_plus_adapter/CHANGELOG.md b/packages/fl_query_connectivity_plus_adapter/CHANGELOG.md index 61c9252..8e56dd6 100644 --- a/packages/fl_query_connectivity_plus_adapter/CHANGELOG.md +++ b/packages/fl_query_connectivity_plus_adapter/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.0+1 + + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + ## 0.1.0 - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. diff --git a/packages/fl_query_connectivity_plus_adapter/pubspec.yaml b/packages/fl_query_connectivity_plus_adapter/pubspec.yaml index 1b6971f..aaea27f 100644 --- a/packages/fl_query_connectivity_plus_adapter/pubspec.yaml +++ b/packages/fl_query_connectivity_plus_adapter/pubspec.yaml @@ -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+1 homepage: https://fl-query.krtirtho.dev 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 + fl_query: ^1.1.0 connectivity_plus: ^4.0.1 dev_dependencies: diff --git a/packages/fl_query_devtools/CHANGELOG.md b/packages/fl_query_devtools/CHANGELOG.md index 56c60de..cb8c2ca 100644 --- a/packages/fl_query_devtools/CHANGELOG.md +++ b/packages/fl_query_devtools/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.1.0+1 + + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + ## 0.1.0 - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. diff --git a/packages/fl_query_devtools/pubspec.yaml b/packages/fl_query_devtools/pubspec.yaml index d04fe67..83abb46 100644 --- a/packages/fl_query_devtools/pubspec.yaml +++ b/packages/fl_query_devtools/pubspec.yaml @@ -1,6 +1,6 @@ name: fl_query_devtools description: Devtools support for Fl-Query -version: 0.1.0 +version: 0.1.0+1 homepage: https://fl-query.krtirtho.dev 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 + fl_query: ^1.1.0 json_view: ^0.4.1 dev_dependencies: diff --git a/packages/fl_query_hooks/CHANGELOG.md b/packages/fl_query_hooks/CHANGELOG.md index 0ca3b08..e78f94f 100644 --- a/packages/fl_query_hooks/CHANGELOG.md +++ b/packages/fl_query_hooks/CHANGELOG.md @@ -1,3 +1,8 @@ +## 1.1.0 + + - **FIX**: schedule to queue doesn't work and stale queries cause infinite loop. + - **FEAT**: add is fetching getter (#65). + ## 1.0.0 - Graduate package to a stable release. See pre-releases prior to this version for changelog entries. diff --git a/packages/fl_query_hooks/example/pubspec.yaml b/packages/fl_query_hooks/example/pubspec.yaml index 6cd62db..0b52035 100644 --- a/packages/fl_query_hooks/example/pubspec.yaml +++ b/packages/fl_query_hooks/example/pubspec.yaml @@ -13,9 +13,9 @@ dependencies: sdk: flutter cupertino_icons: ^1.0.2 - fl_query: ^1.0.0 - fl_query_connectivity_plus_adapter: ^0.1.0 - fl_query_hooks: ^1.0.0 + fl_query: ^1.1.0 + fl_query_connectivity_plus_adapter: ^0.1.0+1 + fl_query_hooks: ^1.1.0 go_router: ^6.0.9 http: ^0.13.5 flutter_hooks: ^0.20.0 diff --git a/packages/fl_query_hooks/pubspec.yaml b/packages/fl_query_hooks/pubspec.yaml index b9ba538..d8d5c39 100644 --- a/packages/fl_query_hooks/pubspec.yaml +++ b/packages/fl_query_hooks/pubspec.yaml @@ -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 +version: 1.1.0 homepage: https://fl-query.krtirtho.dev issue_tracker: https://github.com/KRTirtho/fl-query/issues @@ -15,7 +15,7 @@ environment: dependencies: flutter: sdk: flutter - fl_query: ^1.0.0 + fl_query: ^1.1.0 flutter_hooks: ^0.20.0 dev_dependencies: