Skip to content

Commit e76fcac

Browse files
authored
Upgrade analysis Dart SDK (#8550)
1 parent 9fdd235 commit e76fcac

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 `2025.02.07`.
5+
* Bump runtimeVersion to `2025.02.10`.
6+
* Upgraded stable Dart analysis SDK to `3.7.0`
67
* Upgraded stable Flutter analysis SDK to `3.27.4`.
78

89
## `20250206t125800-all`

Dockerfile.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RUN mkdir -p /home/worker/config/dart-stable
2323
RUN mkdir -p /home/worker/config/flutter-stable
2424

2525
# Setup Dart SDK into /home/worker/dart/{stable,preview}/
26-
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.6.2
26+
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable stable/raw/hash/a8bfb132c5f7b9555d13ea79eaf0eaa77825824d
2727

2828
# Setup Flutter SDK into /home/worker/flutter/{stable,preview}/
2929
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.27.4

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.02.07',
27+
'2025.02.10',
2828
// Fallback runtime versions.
2929
'2025.01.31',
3030
'2025.01.24',
@@ -62,7 +62,7 @@ bool shouldGCVersion(String version) =>
6262

6363
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
6464
final String runtimeSdkVersion = '3.6.0';
65-
final String toolStableDartSdkVersion = '3.6.2';
65+
final String toolStableDartSdkVersion = '3.7.0';
6666
final String toolStableFlutterSdkVersion = '3.27.4';
6767

6868
final semanticToolStableDartSdkVersion =

0 commit comments

Comments
 (0)