Skip to content

Commit 00ff2eb

Browse files
committed
Upgrade SDKs
1 parent 34dc70b commit 00ff2eb

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +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.12.02`.
6-
* Upgraded stable Dart analysis SDK to `3.10.3`
7-
* Upgraded stable Flutter analysis SDK to `3.38.3`.
5+
* Bump runtimeVersion to `2025.12.09`.
6+
* Upgraded stable Dart analysis SDK to `3.10.4`
7+
* Upgraded stable Flutter analysis SDK to `3.38.4`.
88

99
## `20251127t092900-all`
1010
* Bump runtimeVersion to `2025.11.25`.

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.10.3
26+
RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.10.4
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.38.3
29+
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.38.4
3030

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

app/lib/shared/versions.dart

Lines changed: 3 additions & 3 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.12.02',
27+
'2025.12.09',
2828
// Fallback runtime versions.
2929
'2025.11.25',
3030
'2025.11.18',
@@ -62,8 +62,8 @@ bool shouldGCVersion(String version) =>
6262

6363
// keep in-sync with SDK version in .github/workflows/all-test.yml and Dockerfile.app
6464
final String runtimeSdkVersion = '3.10.1';
65-
final String toolStableDartSdkVersion = '3.10.3';
66-
final String toolStableFlutterSdkVersion = '3.38.3';
65+
final String toolStableDartSdkVersion = '3.10.4';
66+
final String toolStableFlutterSdkVersion = '3.38.4';
6767

6868
final semanticToolStableDartSdkVersion = Version.parse(
6969
toolStableDartSdkVersion,

0 commit comments

Comments
 (0)