Skip to content

Commit 1fcedfa

Browse files
authored
[go_router] Batch release (#11537)
This PR was created automatically to batch release the `go_router`.
2 parents 3481f35 + 234501b commit 1fcedfa

291 files changed

Lines changed: 12465 additions & 14321 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,25 +95,25 @@ platform_properties:
9595
[
9696
{"dependency": "ruby", "version": "ruby_3.1-pod_1.13"}
9797
]
98-
os: Mac-15.5|Mac-15.7
98+
os: Mac-15.7
9999
device_type: none
100100
cpu: arm64
101101
$flutter/osx_sdk : >-
102102
{
103-
"sdk_version": "16c5032a"
103+
"sdk_version": "17c52"
104104
}
105105
mac_x64:
106106
properties:
107107
dependencies: >-
108108
[
109109
{"dependency": "ruby", "version": "ruby_3.1-pod_1.13"}
110110
]
111-
os: Mac-15.5|Mac-15.7
111+
os: Mac-15.7
112112
device_type: none
113113
cpu: x86
114114
$flutter/osx_sdk : >-
115115
{
116-
"sdk_version": "16c5032a"
116+
"sdk_version": "17c52"
117117
}
118118
119119
targets:

.ci/flutter_master.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
bf18e3958a05cd8cc098d4bfcbe9163d596cf3af
1+
2844af6a713467da39a34658fb889a61a953cb67

.ci/flutter_stable.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
db50e20168db8fee486b9abf32fc912de3bc5b6a
1+
cc0734ac716fbb8b90f3f9db8020958b1553afa7

.ci/legacy_project/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ and then deleting everything but `android/` from it:
5252
imperative apply (this includes moving where the Android Gradle
5353
Plugin (AGP) version is set from `build.gradle` to `settings.gradle`).
5454
- Modifies `settings.gradle` to upgrade the Kotlin Gradle Plugin (KGP)
55-
from version 1.9.0 to 2.1.0. If a user runs into an error with the AGP version,
55+
from version 1.9.0 to 2.2.20. If a user runs into an error with the AGP version,
5656
the warning is clear on how to upgrade the version to one that we support.
5757
- Modifies `gradle.properties` to not set android.enableJetifier=true.
5858
- Update `app/build.gradle` to enable library desugaring to support

.ci/legacy_project/all_packages/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pluginManagement {
2020
plugins {
2121
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
2222
id "com.android.application" version "8.9.1" apply false
23-
id "org.jetbrains.kotlin.android" version "2.1.0" apply false
23+
id "org.jetbrains.kotlin.android" version "2.2.20" apply false
2424
}
2525

2626
include ":app"

.ci/scripts/create_simulator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o pipefail
99
# The name here must match remove_simulator.sh
1010
readonly DEVICE_NAME=Flutter-iPhone
1111
readonly DEVICE=com.apple.CoreSimulator.SimDeviceType.iPhone-14
12-
readonly OS=com.apple.CoreSimulator.SimRuntime.iOS-18-2
12+
readonly OS=com.apple.CoreSimulator.SimRuntime.iOS-26-2
1313

1414
# Delete any existing devices named Flutter-iPhone. Having more than one may
1515
# cause issues when builds target the device.

.ci/targets/ios_platform_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ tasks:
2626
- name: native test
2727
script: .ci/scripts/tool_runner.sh
2828
# Simulator name and version must match name and version in create_simulator.sh
29-
args: ["native-test", "--ios", "--ios-destination", "platform=iOS Simulator,name=Flutter-iPhone,OS=18.2", "--xcode-warnings-exceptions=script/configs/xcode_warnings_exceptions.yaml"]
29+
args: ["native-test", "--ios", "--ios-destination", "platform=iOS Simulator,name=Flutter-iPhone,OS=26.2", "--xcode-warnings-exceptions=script/configs/xcode_warnings_exceptions.yaml"]
3030
- name: boot simulator
3131
# Ensure simulator is still booted
3232
script: .ci/scripts/boot_simulator.sh

.github/dependabot.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,15 +125,17 @@ updates:
125125
patterns:
126126
- "androidx.annotation:annotation"
127127
ignore:
128+
- dependency-name: "androidx.test:*"
129+
update-types: ["version-update:semver-patch"]
128130
- dependency-name: "com.android.tools.build:gradle"
131+
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
132+
- dependency-name: "io.mockk:mockk:*"
129133
update-types: ["version-update:semver-patch"]
130134
- dependency-name: "junit:junit"
131135
update-types: ["version-update:semver-patch"]
136+
- dependency-name: "org.jetbrains.kotlin:*"
137+
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
132138
- dependency-name: "org.mockito:*"
133139
update-types: ["version-update:semver-patch"]
134-
- dependency-name: "androidx.test:*"
135-
update-types: ["version-update:semver-patch"]
136140
- dependency-name: "org.robolectric:*"
137141
update-types: ["version-update:semver-patch"]
138-
- dependency-name: "io.mockk:mockk:*"
139-
update-types: ["version-update:semver-patch"]

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# because there doesn't appear to be anything to wait for. To avoid that,
4141
# explicitly wait for one LUCI test by name first.
4242
- name: Wait for test check-in
43-
uses: lewagon/wait-on-check-action@a08fbe2b86f9336198f33be6ad9c16b96f92799c
43+
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
4444
with:
4545
ref: ${{ github.sha }}
4646
check-name: 'Linux ci_yaml packages roller'
@@ -52,7 +52,7 @@ jobs:
5252

5353
# This workflow should be the last to run. So wait for all the other tests to succeed.
5454
- name: Wait on all tests
55-
uses: lewagon/wait-on-check-action@a08fbe2b86f9336198f33be6ad9c16b96f92799c
55+
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
5656
with:
5757
ref: ${{ github.sha }}
5858
running-workflow-name: 'release'

.github/workflows/reusable_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# explicitly wait for one LUCI test by name first.
4444
- name: Wait for test check-in
4545
if: inputs.branch-name == 'main'
46-
uses: lewagon/wait-on-check-action@a08fbe2b86f9336198f33be6ad9c16b96f92799c
46+
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
4747
with:
4848
ref: ${{ github.sha }}
4949
check-name: 'Linux ci_yaml packages roller'
@@ -56,7 +56,7 @@ jobs:
5656
# This workflow should be the last to run. So wait for all the other tests to succeed.
5757
- name: Wait on all tests
5858
if: inputs.branch-name == 'main'
59-
uses: lewagon/wait-on-check-action@a08fbe2b86f9336198f33be6ad9c16b96f92799c
59+
uses: lewagon/wait-on-check-action@9312864dfbc9fd208e9c0417843430751c042800
6060
with:
6161
ref: ${{ github.sha }}
6262
running-workflow-name: 'release'

0 commit comments

Comments
 (0)