From be6660f6dccc1d2764ff35a647862e9104666869 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 7 May 2024 09:24:30 +0000 Subject: [PATCH] chore(release): 3.0.0 [skip ci] # [3.0.0](https://github.com/smartive/fluorflow/compare/v2.0.1...v3.0.0) (2024-05-07) ### Features * use native navigation instead of getX navigation ([#6](https://github.com/smartive/fluorflow/issues/6)) ([e9cf309](https://github.com/smartive/fluorflow/commit/e9cf309a02825c772cba35cd2c5170ba7aa3441e)) ### BREAKING CHANGES * The `DialogService` was deleted. Dialog related methods are now in the `NavigationService`. * The `BottomSheetService` was deleted. All related methods are now in the `NavigationService`. * the close methods for dialog and sheet (`closeDialog` and `closeSheet`) are removed. They are unified in the method `closeOverlay` in the `NavigationService`. * Since getX is removed, the base logic of the entry point in the app could be simplified. Instead of the key and observer being methods, they are now static initialized fields on the navigation service. BRAKING CHANGE: The `preventDuplicates` parameter for the navigation method is gone. Currently, with native navigation, the user of the package is responsible to have an overview of the navigation stack. --- packages/fluorflow/CHANGELOG.md | 27 +++++++++++++++++++++++ packages/fluorflow/pubspec.yaml | 2 +- packages/fluorflow_generator/CHANGELOG.md | 27 +++++++++++++++++++++++ packages/fluorflow_generator/pubspec.yaml | 2 +- 4 files changed, 56 insertions(+), 2 deletions(-) diff --git a/packages/fluorflow/CHANGELOG.md b/packages/fluorflow/CHANGELOG.md index 228c128..821c58c 100644 --- a/packages/fluorflow/CHANGELOG.md +++ b/packages/fluorflow/CHANGELOG.md @@ -1,3 +1,30 @@ +# [3.0.0](https://github.com/smartive/fluorflow/compare/v2.0.1...v3.0.0) (2024-05-07) + + +### Features + +* use native navigation instead of getX navigation ([#6](https://github.com/smartive/fluorflow/issues/6)) ([e9cf309](https://github.com/smartive/fluorflow/commit/e9cf309a02825c772cba35cd2c5170ba7aa3441e)) + + +### BREAKING CHANGES + +* The `DialogService` was deleted. +Dialog related methods are now in the `NavigationService`. +* The `BottomSheetService` was deleted. +All related methods are now in the `NavigationService`. +* the close methods for dialog and +sheet (`closeDialog` and `closeSheet`) are removed. They +are unified in the method `closeOverlay` in the `NavigationService`. +* Since getX is removed, the base logic of +the entry point in the app could be simplified. Instead of +the key and observer being methods, they are now static +initialized fields on the navigation service. + +BRAKING CHANGE: The `preventDuplicates` parameter for the +navigation method is gone. Currently, with native +navigation, the user of the package is responsible to +have an overview of the navigation stack. + ## [2.0.1](https://github.com/smartive/fluorflow/compare/v2.0.0...v2.0.1) (2024-03-18) diff --git a/packages/fluorflow/pubspec.yaml b/packages/fluorflow/pubspec.yaml index 9be5a86..e44de79 100644 --- a/packages/fluorflow/pubspec.yaml +++ b/packages/fluorflow/pubspec.yaml @@ -1,6 +1,6 @@ name: fluorflow description: An MVVM framework for Flutter to build scalable and maintainable applications. -version: 2.0.1 +version: 3.0.0 homepage: https://github.com/smartive/fluorflow repository: https://github.com/smartive/fluorflow.git diff --git a/packages/fluorflow_generator/CHANGELOG.md b/packages/fluorflow_generator/CHANGELOG.md index 228c128..821c58c 100644 --- a/packages/fluorflow_generator/CHANGELOG.md +++ b/packages/fluorflow_generator/CHANGELOG.md @@ -1,3 +1,30 @@ +# [3.0.0](https://github.com/smartive/fluorflow/compare/v2.0.1...v3.0.0) (2024-05-07) + + +### Features + +* use native navigation instead of getX navigation ([#6](https://github.com/smartive/fluorflow/issues/6)) ([e9cf309](https://github.com/smartive/fluorflow/commit/e9cf309a02825c772cba35cd2c5170ba7aa3441e)) + + +### BREAKING CHANGES + +* The `DialogService` was deleted. +Dialog related methods are now in the `NavigationService`. +* The `BottomSheetService` was deleted. +All related methods are now in the `NavigationService`. +* the close methods for dialog and +sheet (`closeDialog` and `closeSheet`) are removed. They +are unified in the method `closeOverlay` in the `NavigationService`. +* Since getX is removed, the base logic of +the entry point in the app could be simplified. Instead of +the key and observer being methods, they are now static +initialized fields on the navigation service. + +BRAKING CHANGE: The `preventDuplicates` parameter for the +navigation method is gone. Currently, with native +navigation, the user of the package is responsible to +have an overview of the navigation stack. + ## [2.0.1](https://github.com/smartive/fluorflow/compare/v2.0.0...v2.0.1) (2024-03-18) diff --git a/packages/fluorflow_generator/pubspec.yaml b/packages/fluorflow_generator/pubspec.yaml index 1d04e1c..f266bf0 100644 --- a/packages/fluorflow_generator/pubspec.yaml +++ b/packages/fluorflow_generator/pubspec.yaml @@ -1,6 +1,6 @@ name: fluorflow_generator description: Code Generator for the FluorFlow package. -version: 2.0.1 +version: 3.0.0 homepage: https://github.com/smartive/fluorflow repository: https://github.com/smartive/fluorflow.git