Skip to content

Commit 362dd46

Browse files
Merge pull request #145 from flutter-form-builder-ecosystem/main
Rebase
2 parents 68663fd + 2a4cd76 commit 362dd46

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

.github/workflows/base.yaml

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99
- "[0-9]+.[0-9]+.[0-9]+*"
1010

1111
pull_request:
12-
branches: [main]
1312

1413
# This ensures that previous jobs for the PR are canceled when PR is updated
1514
concurrency:
@@ -81,8 +80,27 @@ jobs:
8180
working-directory: example
8281

8382
deployment:
83+
# Don't use because need generate l10n before publish
84+
# uses: flutter-form-builder-ecosystem/.github/.github/workflows/deployment.yaml@main
8485
if: ${{ github.ref_type == 'tag' }}
85-
uses: flutter-form-builder-ecosystem/.github/.github/workflows/deployment.yaml@main
86+
needs: [build, example]
87+
name: Deploy package
8688
permissions:
8789
id-token: write
88-
needs: [build, example]
90+
runs-on: ubuntu-latest
91+
steps:
92+
- name: Checkout repository
93+
uses: actions/checkout@v4
94+
with:
95+
fetch-depth: 1 # Use shallow clone for faster checkout
96+
- name: Setup Flutter
97+
uses: kuhnroyal/flutter-fvm-config-action/setup@v3
98+
with:
99+
path: '.fvmrc'
100+
flavor: 'stable'
101+
- name: Install dependencies
102+
run: dart pub get
103+
- name: Run l10n
104+
run: flutter gen-l10n
105+
- name: Publish package
106+
run: dart pub publish -v -f

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# Changelog
22

3-
## 11.0.1
3+
## 11.1.1
44

5+
- Fix issue when build fails due to missing l10n files
6+
7+
## 11.1.0
8+
9+
- Add Latvian language support
10+
- Add float validator
11+
- Add hexadecimal validator
512
- Align between validator input types with other validators
613
- Split up BaseValidator into TranslatedValidator so only that one needs to provide a translation
14+
- Update constraints to min Dart 3.6
15+
- Update constraints to min Flutter 3.27.0
716

817
## 11.0.0
918

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ Donate or become a sponsor of Flutter Form Builder Ecosystem
408408

409409
## Roadmap
410410

411+
- [API refactor to improve performance and behavior](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/129)
411412
- [Solve open issues](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/issues), [prioritizing bugs](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/labels/bug)
412413

413414
## Ecosystem

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: form_builder_validators
22
description: Form Builder Validators set of validators for FlutterFormBuilder. Provides common validators and a way to make your own.
3-
version: 11.0.0
3+
version: 11.1.1
44
repository: https://github.com/flutter-form-builder-ecosystem/form_builder_validators
55
issue_tracker: https://github.com/flutter-form-builder-ecosystem/form_builder_validators/issues
66
homepage: https://github.com/flutter-form-builder-ecosystem

0 commit comments

Comments
 (0)