Skip to content

Commit

Permalink
chore(release): 9.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deandreamatias committed May 11, 2023
1 parent bce51df commit 33b14de
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
## [9.0.0]

### BREAKING CHANGES

* [Improve autovalidateMode](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1232)
* On FormBuilderField, `autovalidateMode` change default from `AutovalidateMode.onUserInteraction` to `AutovalidateMode.disabled`
* [Refactor FormBuilderField](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1238)
* Add widget to remove decoration property from core. Now exist two field widgets:
1. `FormBuilderField`: Refactored. Now don't included decoration property or references to this property
2. `FormBuilderFieldDecoration`: New. Like the old `FormBuilderField`
* [Remove FormBuilderCupertinoSegmentedControl](https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1240)
* Remove `FormBuilderCupertinoSegmentedControl` field. Included on [form_builder_cupertino_fields](https://pub.dev/packages/form_builder_cupertino_fields)
* Update custom fields example without cupertino widgets
* Remove cupertino icons dependency
* Update intl version to 0.18.0
* Update constraints to Flutter 3.10
* Update constraints to Dart 3

### Features

* **NEW** Add errors getter on `FormBuilder`. Can get all errors on form from formKey
* Improve examples
* Add gifs to readme
* `FormBuilderSlider`: Able custom widgets max, min and value
* `FormBuilderTextField`: Add `contentInsertionConfiguration` property

### Fixes

* Improve FormBuilder rebuild. Now only rebuild at same time the field that user touch, not all touched fields
* Verify error fields on form validation
* `FormBuilderDropdown`: Improve widget and solved assert error with initialValue (issue closed after 2 years and 5 months)

## [9.0.0-dev.3]

### BREAKING CHANGE
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ packages:
path: ".."
relative: true
source: path
version: "9.0.0-dev.3"
version: "9.0.0"
flutter_lints:
dependency: "direct dev"
description:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_form_builder
description: This package helps in creation of forms in Flutter by removing the boilerplate code, reusing validation, react to changes, and collect final user input.
version: 9.0.0-dev.3
version: 9.0.0
repository: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder
issue_tracker: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues
homepage: https://github.com/flutter-form-builder-ecosystem
Expand Down

0 comments on commit 33b14de

Please sign in to comment.