Skip to content

Commit 2a54441

Browse files
committed
Merge remote-tracking branch 'upstream/main'
# Conflicts: # README.md
2 parents 0f08fcb + 48b739a commit 2a54441

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+2473
-1716
lines changed

.github/FUNDING.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/documentation.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/question.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/base.yaml

Lines changed: 13 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches: [main]
66
tags:
7-
- '*'
7+
- '[0-9]+.[0-9]+.[0-9]+*'
88

99
pull_request:
1010
branches: [main]
@@ -14,10 +14,6 @@ on:
1414
jobs:
1515
build:
1616
runs-on: macos-latest
17-
strategy:
18-
fail-fast: false
19-
matrix:
20-
channel: [stable, beta]
2117

2218
steps:
2319
- uses: actions/checkout@v3
@@ -30,12 +26,12 @@ jobs:
3026
- name: Flutter action
3127
uses: subosito/flutter-action@v2
3228
with:
33-
channel: ${{ matrix.channel }}
29+
channel: 'stable'
3430

3531
- name: Install dependencies
3632
run: flutter pub get
3733
- name: Format code
38-
run: flutter format --dry-run --set-exit-if-changed $(find . -name "*.dart" -not -wholename "./lib/localization/intl/*")
34+
run: dart format --set-exit-if-changed $(find . -name "*.dart" -not -wholename "./lib/localization/intl/*")
3935
- name: Analyze static code
4036
run: flutter analyze
4137
- name: Run tests
@@ -49,7 +45,6 @@ jobs:
4945
flutter build ios --debug --no-codesign
5046
5147
- name: Upload coverage to Codecov
52-
if: ${{ matrix.channel == 'stable' }}
5348
uses: codecov/codecov-action@v3
5449
with:
5550
files: coverage/lcov.info
@@ -60,31 +55,16 @@ jobs:
6055
if: ${{ github.ref_type == 'tag' }}
6156
needs: build
6257
name: Deploy package
58+
permissions:
59+
id-token: write
6360
runs-on: ubuntu-latest
64-
6561
steps:
66-
- name: Configure enviroment
67-
uses: actions/checkout@v3
68-
- name: Download flutter
69-
uses: subosito/flutter-action@v2
70-
with:
71-
channel: 'stable'
72-
- name: Setup pub credentials
73-
shell: bash
74-
env:
75-
PUB_DEV_PUBLISH_ACCESS_TOKEN: ${{ secrets.PUB_DEV_PUBLISH_ACCESS_TOKEN }}
76-
PUB_DEV_PUBLISH_REFRESH_TOKEN: ${{ secrets.PUB_DEV_PUBLISH_REFRESH_TOKEN }}
77-
run: |
78-
sh ./tool/pub_login.sh
79-
- name: Publish package
80-
run: dart pub publish -v -f
81-
- name: Build changelog
82-
id: github_release
83-
uses: mikepenz/release-changelog-builder-action@v3
84-
env:
85-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86-
- name: Create release
87-
uses: softprops/[email protected]
88-
with:
89-
body: ${{steps.github_release.outputs.changelog}}
62+
- uses: actions/checkout@v3
63+
- uses: dart-lang/setup-dart@v1
64+
- name: Flutter action
65+
uses: subosito/flutter-action@v2
66+
with:
67+
channel: 'stable'
68+
- name: Publish package
69+
run: dart pub publish -v -f
9070

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@v7
10+
- uses: actions/stale@v8
1111
with:
1212
repo-token: ${{ secrets.GITHUB_TOKEN }}
1313
stale-issue-message: "This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days."

CHANGELOG.md

Lines changed: 42 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,50 @@
1+
## 9.0.0
2+
3+
* Update constraints to Flutter 3.10
4+
* Update intl to 0.18.0
5+
* Update constraints to Dart 3.0
6+
7+
## 9.0.0-dev.2
8+
9+
* Update constraints to Dart 3.0
10+
11+
## 9.0.0-dev.1
12+
13+
* Update constraints to Flutter 3.10
14+
* Update intl to 0.18.0
15+
16+
## 8.6.1
17+
18+
* Add missed translations for some languages
19+
20+
## 8.6.0
21+
22+
* Add missed translations for all languages
23+
* Add support for more languanges
24+
* Swedish
25+
26+
## 8.5.0
27+
28+
* New validators for minWordsCount & maxWordsCount
29+
* Simplify arb files and correct intl_zh.arb
30+
* Build with Flutter 3.7.5
31+
* Add support for more languanges
32+
* Mongolian
33+
* Nepali and burmese
34+
* Albanian
35+
* Vietnamese
36+
137
## 8.4.0
238

339
* Refactor l10n generator. Thanks [@ipcjs]()
440
* Add property to allow empty on equalLength validator. Thanks [@CircleCurve](https://github.com/CircleCurve)
541
* Add support for more languanges
6-
- Czech. Thanks [@edlman](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/3)
7-
- Bosnian and Croatian. Thanks [@abratanovic](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/9)
8-
- Malay. Thanks [@azmilazizi](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/13)
9-
- Thai. Thanks [@narospol](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/19)
10-
- Tamil. Thanks [@Purus](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/26)
11-
- Greek. Thanks [@nrallakis](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/27)
42+
* Czech. Thanks [@edlman](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/3)
43+
* Bosnian and Croatian. Thanks [@abratanovic](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/9)
44+
* Malay. Thanks [@azmilazizi](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/13)
45+
* Thai. Thanks [@narospol](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/19)
46+
* Tamil. Thanks [@Purus](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/26)
47+
* Greek. Thanks [@nrallakis](https://github.com/flutter-form-builder-ecosystem/form_builder_validators/pull/27)
1248

1349
## 8.3.0
1450

0 commit comments

Comments
 (0)