Skip to content

Commit

Permalink
Upgrade analysis SDKs (dart-lang#7312)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos authored Dec 18, 2023
1 parent 50dd494 commit 3d31e4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
* Bumped runtimeVersion to `2023.12.18`.
* Upgraded stable Flutter analysis SDK to `3.16.4`.
* Upgraded preview Flutter analysis SDK to `3.18.0-0.2.pre`.

## `20231212t114900-all`
* Bumped runtimeVersion to `2023.12.08`.
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ RUN XDG_CONFIG_HOME=/home/worker/config/preview tool/setup-dart.sh /home/worker/
RUN mv /home/worker/dart/dart-sdk /home/worker/dart/preview

# Setup Flutter SDK into /home/worker/flutter/{stable,preview}/
RUN tool/setup-flutter.sh /home/worker/flutter 3.16.3
RUN tool/setup-flutter.sh /home/worker/flutter 3.16.4
RUN mv /home/worker/flutter/flutter /home/worker/flutter/stable
RUN XDG_CONFIG_HOME=/home/worker/config/preview tool/setup-flutter.sh /home/worker/flutter 3.18.0-0.1.pre
RUN XDG_CONFIG_HOME=/home/worker/config/preview tool/setup-flutter.sh /home/worker/flutter 3.18.0-0.2.pre
RUN mv /home/worker/flutter/flutter /home/worker/flutter/preview

# Setup webp
Expand Down
8 changes: 4 additions & 4 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].
'2023.12.08',
'2023.12.18',
// Fallback runtime versions.
'2023.12.08',
'2023.11.28',
'2023.11.21',
];

/// Sets the current runtime versions.
Expand Down Expand Up @@ -63,9 +63,9 @@ bool shouldGCVersion(String version) =>
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
final String runtimeSdkVersion = '3.2.0';
final String toolStableDartSdkVersion = '3.2.3';
final String toolStableFlutterSdkVersion = '3.16.3';
final String toolStableFlutterSdkVersion = '3.16.4';
final String toolPreviewDartSdkVersion = '3.3.0-174.2.beta';
final String toolPreviewFlutterSdkVersion = '3.18.0-0.1.pre';
final String toolPreviewFlutterSdkVersion = '3.18.0-0.2.pre';

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

0 comments on commit 3d31e4e

Please sign in to comment.