diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f425104d..5f31b26ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +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.01.13`. + * Bump runtimeVersion to `2025.01.14`. * Upgraded stable Dart analysis SDK to `3.6.1` + * Upgraded stable Flutter analysis SDK to `3.27.2`. * Upgraded pana to `0.22.18`. * Upgraded dartdoc to `8.3.2`. * Upgraded dependencies. diff --git a/Dockerfile.worker b/Dockerfile.worker index a7fa25849..0b9056e7a 100644 --- a/Dockerfile.worker +++ b/Dockerfile.worker @@ -26,7 +26,7 @@ RUN mkdir -p /home/worker/config/flutter-stable RUN XDG_CONFIG_HOME=/home/worker/config/dart-stable tool/setup-dart.sh /home/worker/dart/stable 3.6.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.27.1 +RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.27.2 # 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 695c04837..453ca78fe 100644 --- a/app/lib/shared/versions.dart +++ b/app/lib/shared/versions.dart @@ -24,7 +24,7 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$'); /// when the version switch happens. const _acceptedRuntimeVersions = [ // The current [runtimeVersion]. - '2025.01.13', + '2025.01.14', // Fallback runtime versions. '2025.01.07', '2024.12.17', @@ -63,7 +63,7 @@ bool shouldGCVersion(String version) => // keep in-sync with SDK version in .mono_repo.yml and Dockerfile final String runtimeSdkVersion = '3.6.0'; final String toolStableDartSdkVersion = '3.6.1'; -final String toolStableFlutterSdkVersion = '3.27.1'; +final String toolStableFlutterSdkVersion = '3.27.2'; final semanticToolStableDartSdkVersion = Version.parse(toolStableDartSdkVersion);