Skip to content

Commit 5f70d72

Browse files
authored
Upgrade Flutter analysis SDK (#8460)
1 parent b00c703 commit 5f70d72

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ Important changes to data models, configuration, and migrations between each
22
AppEngine version, listed here to ease deployment and troubleshooting.
33

44
## Next Release (replace with git tag when deployed)
5-
* Bump runtimeVersion to `2025.01.13`.
5+
* Bump runtimeVersion to `2025.01.14`.
66
* Upgraded stable Dart analysis SDK to `3.6.1`
7+
* Upgraded stable Flutter analysis SDK to `3.27.2`.
78
* Upgraded pana to `0.22.18`.
89
* Upgraded dartdoc to `8.3.2`.
910
* Upgraded dependencies.

Dockerfile.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN mkdir -p /home/worker/config/flutter-stable
2626
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.6.1
2727

2828
# Setup Flutter SDK into /home/worker/flutter/{stable,preview}/
29-
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.27.1
29+
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.27.2
3030

3131
# Setup webp
3232
RUN tool/setup-webp.sh /home/worker/bin

app/lib/shared/versions.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
2424
/// when the version switch happens.
2525
const _acceptedRuntimeVersions = <String>[
2626
// The current [runtimeVersion].
27-
'2025.01.13',
27+
'2025.01.14',
2828
// Fallback runtime versions.
2929
'2025.01.07',
3030
'2024.12.17',
@@ -63,7 +63,7 @@ bool shouldGCVersion(String version) =>
6363
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
6464
final String runtimeSdkVersion = '3.6.0';
6565
final String toolStableDartSdkVersion = '3.6.1';
66-
final String toolStableFlutterSdkVersion = '3.27.1';
66+
final String toolStableFlutterSdkVersion = '3.27.2';
6767

6868
final semanticToolStableDartSdkVersion =
6969
Version.parse(toolStableDartSdkVersion);

0 commit comments

Comments
 (0)