Skip to content

Commit 1700933

Browse files
chore(release): 10.0.0-dev.3
1 parent 8c6641f commit 1700933

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# 10.0.0-dev.3
2+
3+
## BREAKING CHANGES
4+
5+
* feat: #1456 remove deprecated code by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1465
6+
* Solve issue #1456
7+
* Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead.
8+
* [FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead.
9+
* Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead.
10+
* Easy way! Only need execute `dart fix --apply` on your project.
11+
* Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
12+
* Rename FormBuilderFilterChip to FormBuilderFilterChips.
13+
* [FormBuilderFilterChip] Remove maxChips property.
14+
* [FormBuilderDateTimePicker] Remove resetIcon property.
15+
* [FormBuilder] Remove onPopInvoked property.
16+
17+
## Features
18+
19+
* feat: #1455 improve input decoration enabled property by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1464
20+
* Solve issue #1455
21+
122
# 10.0.0-dev.2
223

324
* feat: #1458 improve autovalidate modes by @deandreamatias in https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/pull/1460

README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,20 @@ class _ClearFormBuilderTextFieldState
407407
}
408408
```
409409

410+
## Migrations
411+
412+
### v9 to v10
413+
414+
- Remove `invalidateField` and `invalidateFirstField` methods from FormBuilderState. Use `fields[name]?.invalidate(errorText)` and `fields.first.invalidate(errorText)` instead
415+
- [FormBuilderTextField] Deprecate canRequestFocus property. Use `FocusNode.canRequestFocus.` instead
416+
- Assert on FormBuilderField.decoration.enabled property. Use FormBuilderField.enabled instead
417+
- Easy way! Only need execute `dart fix --apply` on your project.
418+
- Rename FormBuilderChoiceChip to FormBuilderChoiceChips.
419+
- Rename FormBuilderFilterChip to FormBuilderFilterChips.
420+
- [FormBuilderFilterChip] Remove maxChips property.
421+
- [FormBuilderDateTimePicker] Remove resetIcon property.
422+
- [FormBuilder] Remove onPopInvoked property.
423+
410424
## Support
411425

412426
### Contribute

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ packages:
6060
path: ".."
6161
relative: true
6262
source: path
63-
version: "10.0.0-dev.2"
63+
version: "10.0.0-dev.3"
6464
flutter_lints:
6565
dependency: "direct dev"
6666
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_form_builder
22
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.
3-
version: 10.0.0-dev.2
3+
version: 10.0.0-dev.3
44
repository: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder
55
issue_tracker: https://github.com/flutter-form-builder-ecosystem/flutter_form_builder/issues
66
homepage: https://github.com/flutter-form-builder-ecosystem

0 commit comments

Comments
 (0)