Skip to content

Commit

Permalink
Upgrade analysis SDKs (dart-lang#7230)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos authored Nov 28, 2023
1 parent 7b73d66 commit 017cb57
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ 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.11.24`.
* Bumped runtimeVersion to `2023.11.28`.
* Upgraded stable Dart analysis SDK to `3.2.1`.
* Upgraded stable Flutter analysis SDK to `3.16.1`.
* Upgraded preview Dart analysis SDK to `3.3.0-166.0.dev`.
* Upgraded dartdoc to `8.0.0`.
* Note: Retrying HTTP failures on `SocketException`.

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ COPY --chown=worker:worker . /home/worker/pub-dev
WORKDIR /home/worker/pub-dev

# Setup Dart SDK into /home/worker/dart/{stable,preview}/
RUN tool/setup-dart.sh /home/worker/dart 3.2.0
RUN tool/setup-dart.sh /home/worker/dart 3.2.1
RUN mv /home/worker/dart/dart-sdk /home/worker/dart/stable
RUN tool/setup-dart.sh /home/worker/dart 3.3.0-120.0.dev
RUN tool/setup-dart.sh /home/worker/dart 3.3.0-166.0.dev
RUN tool/setup-webp.sh /home/worker/bin
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.0
RUN tool/setup-flutter.sh /home/worker/flutter 3.16.1
RUN mv /home/worker/flutter/flutter /home/worker/flutter/stable
RUN tool/setup-flutter.sh /home/worker/flutter 3.17.0-0.0.pre
RUN mv /home/worker/flutter/flutter /home/worker/flutter/preview
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,7 +24,7 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
/// when the version switch happens.
const _acceptedRuntimeVersions = <String>[
// The current [runtimeVersion].
'2023.11.24',
'2023.11.28',
// Fallback runtime versions.
'2023.11.21',
'2023.11.16',
Expand Down Expand Up @@ -62,9 +62,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.0';
final String toolStableFlutterSdkVersion = '3.16.0';
final String toolPreviewDartSdkVersion = '3.3.0-120.0.dev';
final String toolStableDartSdkVersion = '3.2.1';
final String toolStableFlutterSdkVersion = '3.16.1';
final String toolPreviewDartSdkVersion = '3.3.0-166.0.dev';
final String toolPreviewFlutterSdkVersion = '3.17.0-0.0.pre';

final semanticToolStableDartSdkVersion =
Expand Down

0 comments on commit 017cb57

Please sign in to comment.