Skip to content

Commit 04a6aa2

Browse files
committed
Merge remote-tracking branch 'upstream/main' into colorscheme-mobile-support-v2
2 parents 1d4d137 + 3754d04 commit 04a6aa2

360 files changed

Lines changed: 2641 additions & 1613 deletions

File tree

Some content is hidden

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

.ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,14 +262,14 @@ targets:
262262
timeout: 30
263263
properties:
264264
target_file: analyze_legacy.yaml
265-
channel: "3.38.10"
265+
channel: "3.41.9"
266266

267267
- name: Linux analyze_legacy N-2
268268
recipe: packages/packages
269269
timeout: 30
270270
properties:
271271
target_file: analyze_legacy.yaml
272-
channel: "3.35.7"
272+
channel: "3.38.10"
273273

274274
- name: Linux_android custom_package_tests master
275275
recipe: packages/packages

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3598686e42e37134209fa9df8223d9cbaaf513da
1+
e03b91f1fe34a3ae734d2d2113986672bdcbd78d

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
00b0c91f06209d9e4a41f71b7a512d6eb3b9c694
1+
559ffa3f75e7402d65a8def9c28389a9b2e6fe42
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ set -e
1010
# missing version/CHANGELOG detection since PR-level overrides aren't available
1111
# in post-submit.
1212
if [[ $LUCI_PR == "" ]]; then
13-
.ci/scripts/tool_runner.sh version-check --ignore-platform-interface-breaks
13+
.ci/scripts/tool_runner.sh validate --ignore-platform-interface-breaks
1414
else
15-
.ci/scripts/tool_runner.sh version-check --check-for-missing-changes --pr-labels="$PR_OVERRIDE_LABELS"
15+
.ci/scripts/tool_runner.sh validate --check-for-missing-changes --pr-labels="$PR_OVERRIDE_LABELS"
1616
fi

.ci/targets/repo_checks.yaml

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -26,46 +26,12 @@ tasks:
2626
script: .ci/scripts/tool_runner.sh
2727
args: ["license-check"]
2828
always: true
29-
# The major and minor version here should match the lowest version analyzed
30-
# in legacy version analysis (.ci.yaml analyze_legacy).
31-
- name: pubspec validation
32-
script: .ci/scripts/tool_runner.sh
33-
args:
34-
- "pubspec-check"
35-
- "--min-min-flutter-version=3.35.0"
36-
- "--allow-dependencies=script/configs/allowed_unpinned_deps.yaml"
37-
- "--allow-pinned-dependencies=script/configs/allowed_pinned_deps.yaml"
38-
always: true
39-
- name: README validation
40-
script: .ci/scripts/tool_runner.sh
41-
args: ["readme-check"]
42-
always: true
43-
# Re-run with --require-excerpts, skipping packages that still need
44-
# to be converted. Once https://github.com/flutter/flutter/issues/102679
45-
# has been fixed, this can be removed --require-excerpts added to the
46-
# run above.
47-
- name: README snippet configuration validation
48-
script: .ci/scripts/tool_runner.sh
49-
args: ["readme-check", "--require-excerpts", "--exclude=script/configs/temp_exclude_excerpt.yaml"]
50-
always: true
5129
- name: README snippet validation
5230
script: .ci/scripts/tool_runner.sh
5331
args: ["update-excerpts", "--fail-on-change"]
5432
always: true
55-
- name: Gradle validation
56-
script: .ci/scripts/tool_runner.sh
57-
args: ["gradle-check"]
58-
always: true
59-
- name: Repository-level package metadata validation
60-
script: .ci/scripts/tool_runner.sh
61-
args: ["check-repo-package-info"]
62-
always: true
63-
- name: Dependabot coverage validation
64-
script: .ci/scripts/tool_runner.sh
65-
args: ["dependabot-check"]
66-
always: true
67-
- name: CHANGELOG and version validation
68-
script: .ci/scripts/check_version.sh
33+
- name: Repository standards validation
34+
script: .ci/scripts/validate.sh
6935
always: true
7036
- name: federated safety check
7137
script: .ci/scripts/check_federated_safety.sh

.github/workflows/internals/install_flutter/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@ runs:
1515
shell: bash
1616
run: |
1717
cd $HOME
18-
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.41.0 _flutter
18+
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.44.0 _flutter
1919
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
2020
cd $GITHUB_WORKSPACE

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Directory for files cached by the repo tooling
2+
/.repo_tool_cache/
3+
14
.DS_Store
25
.atom/
36
.idea

AGENTS.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,9 @@ dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart update-dependency
9090
The tool can also run native and integration tests, but these may require a more complete environment than is available.
9191
- **Validation**: Run these checks to ensure that changes follow team guidelines:
9292
```bash
93+
dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart validate --packages <changed_packages>
9394
dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart publish-check --packages <changed_packages>
94-
dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart readme-check --packages <changed_packages>
95-
dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart version-check --packages <changed_packages>
9695
dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart license-check
97-
dart run $REPO_ROOT/script/tool/bin/flutter_plugin_tools.dart repo-package-info-check
9896
```
9997

10098
### Specialized Workflows

packages/animations/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## NEXT
2+
3+
* Updates minimum supported SDK version to Flutter 3.38/Dart 3.10.
4+
15
## 2.2.0
26

37
* Adds support for custom `closedShadows` and `openShadows` to `OpenContainer`.

packages/animations/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ publish_to: none
66
version: 0.0.1
77

88
environment:
9-
sdk: ^3.9.0
10-
flutter: ">=3.35.0"
9+
sdk: ^3.10.0
10+
flutter: ">=3.38.0"
1111

1212
dependencies:
1313
animations:

0 commit comments

Comments
 (0)