chore(release): publish packages

- [email protected]
 - [email protected]
 - [email protected]
 - [email protected]
This commit is contained in:
Kingkor Roy Tirtho
2023-10-06 12:39:53 +06:00
parent 1cad748024
commit c5f24074cc
11 changed files with 71 additions and 13 deletions
+40
View File
@@ -3,6 +3,46 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## 2023-10-06
### Changes
---
Packages with breaking changes:
- There are no breaking changes in this release.
Packages with other changes:
- [`fl_query` - `v1.0.0-alpha.5`](#fl_query---v100-alpha5)
- [`fl_query_devtools` - `v0.1.0-alpha.3`](#fl_query_devtools---v010-alpha3)
- [`fl_query_hooks` - `v1.0.0-alpha.5`](#fl_query_hooks---v100-alpha5)
- [`fl_query_connectivity_plus_adapter` - `v0.1.0-alpha.4`](#fl_query_connectivity_plus_adapter---v010-alpha4)
Packages with dependency updates only:
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
- `fl_query_connectivity_plus_adapter` - `v0.1.0-alpha.4`
---
#### `fl_query` - `v1.0.0-alpha.5`
- **FIX**(query): isLoading & isRefreshing not working as expected.
- **FIX**(mutation): isMutating not working.
- **FEAT**(infinite_query): add isLoadingNextPage & remove isLoadingPage.
#### `fl_query_devtools` - `v0.1.0-alpha.3`
- **FEAT**(infinite_query): add isLoadingNextPage & remove isLoadingPage.
#### `fl_query_hooks` - `v1.0.0-alpha.5`
- **FIX**(mutation): isMutating not working.
## 2023-09-09 ## 2023-09-09
### Changes ### Changes
+6
View File
@@ -1,3 +1,9 @@
## 1.0.0-alpha.5
- **FIX**(query): isLoading & isRefreshing not working as expected.
- **FIX**(mutation): isMutating not working.
- **FEAT**(infinite_query): add isLoadingNextPage & remove isLoadingPage.
## 1.0.0-alpha.4 ## 1.0.0-alpha.4
- **FIX**: mutation onSuccess doesn't refresh all pages of infinite queries. - **FIX**: mutation onSuccess doesn't refresh all pages of infinite queries.
+3 -3
View File
@@ -9,9 +9,9 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
fl_query: ^1.0.0-alpha.4 fl_query: ^1.0.0-alpha.5
fl_query_connectivity_plus_adapter: ^0.1.0-alpha.3 fl_query_connectivity_plus_adapter: ^0.1.0-alpha.4
fl_query_devtools: ^0.1.0-alpha.2 fl_query_devtools: ^0.1.0-alpha.3
go_router: ^6.0.9 go_router: ^6.0.9
http: ^0.13.5 http: ^0.13.5
+1 -1
View File
@@ -1,6 +1,6 @@
name: fl_query name: fl_query
description: Asynchronous data caching, refetching & invalidation library for Flutter description: Asynchronous data caching, refetching & invalidation library for Flutter
version: 1.0.0-alpha.4 version: 1.0.0-alpha.5
homepage: https://fl-query.vercel.app homepage: https://fl-query.vercel.app
issue_tracker: https://github.com/KRTirtho/fl-query/issues issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -1,3 +1,7 @@
## 0.1.0-alpha.4
- Update a dependency to the latest release.
## 0.1.0-alpha.3 ## 0.1.0-alpha.3
- Update a dependency to the latest release. - Update a dependency to the latest release.
@@ -1,6 +1,6 @@
name: fl_query_connectivity_plus_adapter name: fl_query_connectivity_plus_adapter
description: Connectivity Plus adapter for FlQuery Connectivity description: Connectivity Plus adapter for FlQuery Connectivity
version: 0.1.0-alpha.3 version: 0.1.0-alpha.4
homepage: https://fl-query.vercel.app homepage: https://fl-query.vercel.app
repository: https://github.com/KRTirtho/tree/main/packages/fl_query_connectivity_plus_adapter repository: https://github.com/KRTirtho/tree/main/packages/fl_query_connectivity_plus_adapter
@@ -13,7 +13,7 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
fl_query: ^1.0.0-alpha.4 fl_query: ^1.0.0-alpha.5
connectivity_plus: ^4.0.1 connectivity_plus: ^4.0.1
dev_dependencies: dev_dependencies:
+4
View File
@@ -1,3 +1,7 @@
## 0.1.0-alpha.3
- **FEAT**(infinite_query): add isLoadingNextPage & remove isLoadingPage.
## 0.1.0-alpha.2 ## 0.1.0-alpha.2
- **FIX**(devtools): no wrapping child inside SizedBox.shrink. - **FIX**(devtools): no wrapping child inside SizedBox.shrink.
+2 -2
View File
@@ -1,6 +1,6 @@
name: fl_query_devtools name: fl_query_devtools
description: Devtools support for Fl-Query description: Devtools support for Fl-Query
version: 0.1.0-alpha.2 version: 0.1.0-alpha.3
homepage: https://fl-query.vercel.app homepage: https://fl-query.vercel.app
repository: https://github.com/KRTirtho/fl-query/tree/main/packages/fl_query_devtools repository: https://github.com/KRTirtho/fl-query/tree/main/packages/fl_query_devtools
issue_tracker: https://github.com/KRTirtho/fl-query/issues issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -12,7 +12,7 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
fl_query: ^1.0.0-alpha.4 fl_query: ^1.0.0-alpha.5
json_view: ^0.4.1 json_view: ^0.4.1
dev_dependencies: dev_dependencies:
+4
View File
@@ -1,3 +1,7 @@
## 1.0.0-alpha.5
- **FIX**(mutation): isMutating not working.
## 1.0.0-alpha.4+1 ## 1.0.0-alpha.4+1
- **FIX**(fl_query_hooks): upgrade flutter_hooks version & dart sdk constrain. - **FIX**(fl_query_hooks): upgrade flutter_hooks version & dart sdk constrain.
+3 -3
View File
@@ -13,9 +13,9 @@ dependencies:
sdk: flutter sdk: flutter
cupertino_icons: ^1.0.2 cupertino_icons: ^1.0.2
fl_query: ^1.0.0-alpha.4 fl_query: ^1.0.0-alpha.5
fl_query_connectivity_plus_adapter: ^0.1.0-alpha.3 fl_query_connectivity_plus_adapter: ^0.1.0-alpha.4
fl_query_hooks: ^1.0.0-alpha.4+1 fl_query_hooks: ^1.0.0-alpha.5
go_router: ^6.0.9 go_router: ^6.0.9
http: ^0.13.5 http: ^0.13.5
flutter_hooks: ^0.20.0 flutter_hooks: ^0.20.0
+2 -2
View File
@@ -1,7 +1,7 @@
name: fl_query_hooks name: fl_query_hooks
description: Elite flutter_hooks compatible library for fl_query, the description: Elite flutter_hooks compatible library for fl_query, the
Asynchronous data caching, refetching & invalidation library for Flutter Asynchronous data caching, refetching & invalidation library for Flutter
version: 1.0.0-alpha.4+1 version: 1.0.0-alpha.5
homepage: https://fl-query.vercel.app homepage: https://fl-query.vercel.app
issue_tracker: https://github.com/KRTirtho/fl-query/issues issue_tracker: https://github.com/KRTirtho/fl-query/issues
@@ -15,7 +15,7 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
fl_query: ^1.0.0-alpha.4 fl_query: ^1.0.0-alpha.5
flutter_hooks: ^0.20.0 flutter_hooks: ^0.20.0
dev_dependencies: dev_dependencies: