Skip to content

Commit

Permalink
Upgrade analysis Flutter SDK (#8045)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos committed Sep 10, 2024
1 parent ddffcfc commit 3227447
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ 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)
* Bumped runtimeVersion to `2024.09.10`.
* Upgraded stable Flutter analysis SDK to `3.24.2`.

## `20240906t140400-all`
* Upgraded dependencies including `googleapis`.
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.2

# 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.24.1
RUN XDG_CONFIG_HOME=/home/worker/config/flutter-stable tool/setup-flutter.sh /home/worker/flutter/stable 3.24.2

# Setup webp
RUN tool/setup-webp.sh /home/worker/bin
Expand Down
6 changes: 3 additions & 3 deletions app/lib/shared/versions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
/// when the version switch happens.
const _acceptedRuntimeVersions = <String>[
// The current [runtimeVersion].
'2024.09.04',
'2024.09.10',
// Fallback runtime versions.
'2024.09.04',
'2024.08.27',
'2024.08.20',
];

/// Sets the current runtime versions.
Expand Down Expand Up @@ -63,7 +63,7 @@ bool shouldGCVersion(String version) =>
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
final String runtimeSdkVersion = '3.5.0';
final String toolStableDartSdkVersion = '3.5.2';
final String toolStableFlutterSdkVersion = '3.24.1';
final String toolStableFlutterSdkVersion = '3.24.2';

final semanticToolStableDartSdkVersion =
Version.parse(toolStableDartSdkVersion);
Expand Down

0 comments on commit 3227447

Please sign in to comment.