Skip to content

Commit edba727

Browse files
authored
Upgrade analysis SDKs (#8801)
1 parent 140cc4b commit edba727

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +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.06.02`.
6+
* Upgraded stable Dart analysis SDK to `3.8.1`
7+
* Upgraded stable Flutter analysis SDK to `3.32.1`.
58
* Note: search instance uses separate isolate for the SDK index.
69

710
## `20250522t102600-all`

Dockerfile.worker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ 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.8.0
26+
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.8.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.32.0
29+
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.32.1
3030

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

app/lib/shared/versions.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ 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.05.21',
27+
'2025.06.02',
2828
// Fallback runtime versions.
29+
'2025.05.21',
2930
'2025.05.15',
30-
'2025.05.13',
3131
];
3232

3333
/// Sets the current runtime versions.
@@ -62,8 +62,8 @@ bool shouldGCVersion(String version) =>
6262

6363
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
6464
final String runtimeSdkVersion = '3.8.0';
65-
final String toolStableDartSdkVersion = '3.8.0';
66-
final String toolStableFlutterSdkVersion = '3.32.0';
65+
final String toolStableDartSdkVersion = '3.8.1';
66+
final String toolStableFlutterSdkVersion = '3.32.1';
6767

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

0 commit comments

Comments
 (0)