diff --git a/CHANGELOG.md b/CHANGELOG.md index 760d4d27ea..f017c00387 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ Important changes to data models, configuration, and migrations between each AppEngine version, listed here to ease deployment and troubleshooting. ## Next Release (replace with git tag when deployed) + * Bump runtimeVersion to `2025.06.02`. + * Upgraded stable Dart analysis SDK to `3.8.1` + * Upgraded stable Flutter analysis SDK to `3.32.1`. * Note: search instance uses separate isolate for the SDK index. ## `20250522t102600-all` diff --git a/Dockerfile.worker b/Dockerfile.worker index 55dd7c8599..20e5f63c27 100644 --- a/Dockerfile.worker +++ b/Dockerfile.worker @@ -23,10 +23,10 @@ RUN mkdir -p /home/worker/config/dart-stable RUN mkdir -p /home/worker/config/flutter-stable # Setup Dart SDK into /home/worker/dart/{stable,preview}/ -RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.8.0 +RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.8.1 # Setup Flutter SDK into /home/worker/flutter/{stable,preview}/ -RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.32.0 +RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.32.1 # Setup webp RUN tool/setup-webp.sh /home/worker/bin diff --git a/app/lib/shared/versions.dart b/app/lib/shared/versions.dart index a1bb4d5e00..37d947952d 100644 --- a/app/lib/shared/versions.dart +++ b/app/lib/shared/versions.dart @@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$'); /// when the version switch happens. const _acceptedRuntimeVersions = [ // The current [runtimeVersion]. - '2025.05.21', + '2025.06.02', // Fallback runtime versions. + '2025.05.21', '2025.05.15', - '2025.05.13', ]; /// Sets the current runtime versions. @@ -62,8 +62,8 @@ bool shouldGCVersion(String version) => // keep in-sync with SDK version in .mono_repo.yml and Dockerfile final String runtimeSdkVersion = '3.8.0'; -final String toolStableDartSdkVersion = '3.8.0'; -final String toolStableFlutterSdkVersion = '3.32.0'; +final String toolStableDartSdkVersion = '3.8.1'; +final String toolStableFlutterSdkVersion = '3.32.1'; final semanticToolStableDartSdkVersion = Version.parse(toolStableDartSdkVersion);