diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e4c89964..d34b33ae9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## [9.1.0] + +### Features + +* `FormBuilderFieldText`: Add onTapOutside property + +### Fixes + +* `FormBuilderField`: Misspelling +* `FormBuilderField`: Remove force validation on autovalidation enables modes +* `FormBuilderField`: Only focus on invalid field when no focus in another field +* `FormBuilderField`: Only focus on invalid field when focusOnInvalid is true +* `FormBuilderFieldDecoration`: Remove readonly property to enable decoration fields +* `FormBuilderDropdown`: Only show dropdown value when has value on items +* `FormBuilderDropdown`: Add deep compare when update dropdown items +* `FormBuilderDateTimePicker`: Check mounted after async + +### Others + +* Improve readme +* Apply MIT license +* Update gradle config on example + ## [9.0.0] ### BREAKING CHANGES diff --git a/example/pubspec.lock b/example/pubspec.lock index 3992dd7d8..8055d4bd1 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -60,7 +60,7 @@ packages: path: ".." relative: true source: path - version: "9.0.0" + version: "9.1.0" flutter_lints: dependency: "direct dev" description: diff --git a/pubspec.yaml b/pubspec.yaml index 65657a81d..a15d21041 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 +version: 9.1.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