Skip to content

Commit

Permalink
chore(release): 3.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [3.0.0](v2.0.1...v3.0.0) (2024-05-07)

### Features

* use native navigation instead of getX navigation ([#6](#6)) ([e9cf309](e9cf309))

### 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.
  • Loading branch information
semantic-release-bot committed May 7, 2024
1 parent e9cf309 commit be6660f
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 2 deletions.
27 changes: 27 additions & 0 deletions packages/fluorflow/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/fluorflow/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
27 changes: 27 additions & 0 deletions packages/fluorflow_generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/fluorflow_generator/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit be6660f

Please sign in to comment.