Skip to content

Commit 795f7c0

Browse files
Merge upstream/main and bump version
2 parents 49f39ad + f751ffb commit 795f7c0

File tree

352 files changed

+10290
-2014
lines changed

Some content is hidden

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

352 files changed

+10290
-2014
lines changed

.ci.yaml

Lines changed: 137 additions & 41 deletions
Large diffs are not rendered by default.

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
83134ac7e44c9c9a9637955de23abecc304b492e
1+
5e8b5f4ea293b092e583c0fa9ad82fe189a72aa5

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ead455963c12b453cdb2358cad34969c76daf180
1+
6c4930c4ac86fb286f30e31d0ec8bffbcbb9953e

.ci/targets/android_device_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tasks:
1111
args:
1212
- "firebase-test-lab"
1313
- "--device"
14-
- "model=redfin,version=30"
14+
- "model=panther,version=33"
1515
- "--exclude=script/configs/exclude_integration_android.yaml"
1616
- "--project=flutter-infra-staging"
1717
- "--results-bucket=flutter_firebase_testlab_staging"
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
tasks:
2+
- name: prepare tool
3+
script: .ci/scripts/prepare_tool.sh
4+
infra_step: true # Note infra steps failing prevents "always" from running.
5+
- name: download Dart and Android deps
6+
script: script/tool_runner.sh
7+
infra_step: true
8+
args: ["fetch-deps", "--android", "--supporting-target-platforms-only", "--exclude=script/configs/exclude_integration_android_legacy_emulator.yaml"]
9+
# Only these two tests are run because they are the only ones that use the
10+
# emulator. Other tests would just duplicate android_platform_test.yaml tests.
11+
- name: native integration tests
12+
script: script/tool_runner.sh
13+
args: ["native-test", "--android", "--no-unit", "--exclude=script/configs/exclude_integration_android_legacy_emulator.yaml"]
14+
- name: drive examples
15+
script: script/tool_runner.sh
16+
args: ["drive-examples", "--android", "--exclude=script/configs/exclude_integration_android_legacy_emulator.yaml,script/configs/exclude_integration_android.yaml,script/configs/exclude_integration_android_emulator.yaml"]

.ci/targets/android_platform_tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@ tasks:
55
- name: download Dart and Android deps
66
script: script/tool_runner.sh
77
infra_step: true
8-
args: ["fetch-deps", "--android", "--supporting-target-platforms-only"]
8+
args: ["fetch-deps", "--android", "--supporting-target-platforms-only", "--exclude=script/configs/still_requires_api_33_avd.yaml"]
99
- name: build examples
1010
script: script/tool_runner.sh
11-
args: ["build-examples", "--apk"]
11+
args: ["build-examples", "--apk", "--exclude=script/configs/still_requires_api_33_avd.yaml"]
1212
- name: lint
1313
script: script/tool_runner.sh
14-
args: ["lint-android"]
14+
args: ["lint-android", "--exclude=script/configs/still_requires_api_33_avd.yaml"]
1515
# Native unit and native integration are split into two steps to allow for
1616
# different exclusions.
1717
# TODO(stuartmorgan): Eliminate the native unit test exclusion, and combine
1818
# these steps.
1919
- name: native unit tests
2020
script: script/tool_runner.sh
21-
args: ["native-test", "--android", "--no-integration", "--exclude=script/configs/exclude_native_unit_android.yaml"]
21+
args: ["native-test", "--android", "--no-integration", "--exclude=script/configs/exclude_native_unit_android.yaml,script/configs/still_requires_api_33_avd.yaml"]
2222
- name: native integration tests
2323
script: script/tool_runner.sh
24-
args: ["native-test", "--android", "--no-unit"]
24+
args: ["native-test", "--android", "--no-unit", "--exclude=script/configs/still_requires_api_33_avd.yaml"]
2525
- name: drive examples
2626
script: script/tool_runner.sh
27-
args: ["drive-examples", "--android", "--exclude=script/configs/exclude_integration_android.yaml,script/configs/exclude_integration_android_emulator.yaml"]
27+
args: ["drive-examples", "--android", "--exclude=script/configs/exclude_integration_android.yaml,script/configs/exclude_integration_android_emulator.yaml,script/configs/still_requires_api_33_avd.yaml"]

.ci/targets/android_platform_tests_api_33_avd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ tasks:
2020
# these steps.
2121
- name: native unit tests
2222
script: script/tool_runner.sh
23-
args: ["native-test", "--android", "--no-integration", "--filter-packages-to=script/configs/still_requires_api_33_avd.yaml"]
23+
args: ["native-test", "--android", "--no-integration", "--exclude=script/configs/exclude_native_unit_android.yaml", "--filter-packages-to=script/configs/still_requires_api_33_avd.yaml"]
2424
- name: native integration tests
2525
script: script/tool_runner.sh
2626
args: ["native-test", "--android", "--no-unit", "--filter-packages-to=script/configs/still_requires_api_33_avd.yaml"]
2727
- name: drive examples
2828
script: script/tool_runner.sh
29-
args: ["drive-examples", "--android", "--filter-packages-to=script/configs/still_requires_api_33_avd.yaml"]
29+
args: ["drive-examples", "--android", "--exclude=script/configs/exclude_integration_android.yaml,script/configs/exclude_integration_android_emulator.yaml", "--filter-packages-to=script/configs/still_requires_api_33_avd.yaml"]
3030

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,17 @@ updates:
209209
- dependency-name: "*"
210210
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
211211

212+
- package-ecosystem: "gradle"
213+
directory: "/packages/flutter_image/example/android/app"
214+
commit-message:
215+
prefix: "[flutter_image]"
216+
schedule:
217+
interval: "weekly"
218+
open-pull-requests-limit: 10
219+
ignore:
220+
- dependency-name: "*"
221+
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
222+
212223
- package-ecosystem: "gradle"
213224
directory: "/packages/flutter_markdown/example/android/app"
214225
commit-message:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
cd $GITHUB_WORKSPACE
3737
# Checks out a copy of the repo.
3838
- name: Check out code
39-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
39+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
4040
with:
4141
fetch-depth: 0 # Fetch all history so the tool can get all the tags to determine version.
4242
- name: Set up tools

.github/workflows/scorecards-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout code"
24-
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v2.4.0
24+
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v2.4.0
2525
with:
2626
persist-credentials: false
2727

2828
- name: "Run analysis"
29-
uses: ossf/scorecard-action@483ef80eb98fb506c348f7d62e28055e49fe2398 # v2.0.3
29+
uses: ossf/scorecard-action@0864cf19026789058feabb7e87baa5f140aac736 # v2.0.3
3030
with:
3131
results_file: results.sarif
3232
results_format: sarif
@@ -49,6 +49,6 @@ jobs:
4949

5050
# Upload the results to GitHub's code scanning dashboard.
5151
- name: "Upload to code-scanning"
52-
uses: github/codeql-action/upload-sarif@fdcae64e1484d349b3366718cdfef3d404390e85 # v1.0.26
52+
uses: github/codeql-action/upload-sarif@49abf0ba24d0b7953cb586944e918a0b92074c80 # v1.0.26
5353
with:
5454
sarif_file: results.sarif

0 commit comments

Comments
 (0)