Skip to content

Commit 3e2dc43

Browse files
authored
Upgrade Flutter analysis SDK (#8448)
1 parent 33ee8c8 commit 3e2dc43

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,7 +2,8 @@ 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 `2024.12.30`.
5+
* Bump runtimeVersion to `2025.01.07`.
6+
* Upgraded stable Flutter analysis SDK to `3.27.1`.
67
* Upgraded dartdoc to `8.3.1`.
78
* Note: removed required flag from `isBlocked` fields.
89
* Note: started deleting `Package.blocked` and `Package.blockedReason`.

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.0
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.0
29+
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.27.1
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-
'2024.12.30',
27+
'2025.01.07',
2828
// Fallback runtime versions.
2929
'2024.12.17',
3030
'2024.12.11',
@@ -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.0';
66-
final String toolStableFlutterSdkVersion = '3.27.0';
66+
final String toolStableFlutterSdkVersion = '3.27.1';
6767

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

0 commit comments

Comments
 (0)