Skip to content

Commit 4d63628

Browse files
authored
Upgrade analysis SDKs (#6287)
1 parent 03c390f commit 4d63628

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ Important changes to data models, configuration, and migrations between each
22
AppEngine version, listed here to ease deployment and troubleshooting.
33

44
## Next Release (replace with git tag when deployed)
5-
* Bumped runtimeVersion to `2022.12.13`.
6-
* Upgraded stable Dart analysis SDK to `2.18.5`.
5+
* Bumped runtimeVersion to `2022.12.16`
6+
* Upgraded stable Dart analysis SDK to `2.18.6`.
7+
* Upgraded stable Flutter analysis SDK to `3.3.10`.
78
* Upgraded preview Dart analysis SDK to `2.19.0-444.1.beta`.
89
* Upgraded preview Flutter analysis SDK to `3.7.0-1.1.pre`.
910
* Upgraded pana to `0.21.23`.

Dockerfile.app

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ WORKDIR /project/app
3333
RUN dart /project/tool/pub_get_offline.dart /project/app
3434

3535
# Setup analysis Dart SDKs
36-
RUN /project/tool/setup-dart.sh /tool/stable 2.18.5
36+
RUN /project/tool/setup-dart.sh /tool/stable 2.18.6
3737
RUN /project/tool/setup-dart.sh /tool/preview 2.19.0-444.1.beta
3838
RUN /project/tool/setup-dart.sh /tool/future latest
3939

4040
# Setup analysis Flutter SDKs
41-
RUN /project/tool/setup-flutter.sh /tool/stable 3.3.9
41+
RUN /project/tool/setup-flutter.sh /tool/stable 3.3.10
4242
RUN /project/tool/setup-flutter.sh /tool/preview 3.7.0-1.1.pre
4343
RUN /project/tool/setup-flutter.sh /tool/future master
4444

Dockerfile.worker

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ COPY --chown=worker:worker . /home/worker/pub-dev
1818
WORKDIR /home/worker/pub-dev
1919

2020
# Setup Dart SDK into /home/worker/dart/{stable,preview}/
21-
RUN tool/setup-dart.sh /home/worker/dart 2.18.5
21+
RUN tool/setup-dart.sh /home/worker/dart 2.18.6
2222
RUN mv /home/worker/dart/dart-sdk /home/worker/dart/stable
2323
RUN tool/setup-dart.sh /home/worker/dart 2.19.0-444.1.beta
2424
RUN mv /home/worker/dart/dart-sdk /home/worker/dart/preview
2525

2626
# Setup Flutter SDK into /home/worker/flutter/{stable,preview}/
27-
RUN tool/setup-flutter.sh /home/worker/flutter 3.3.9
27+
RUN tool/setup-flutter.sh /home/worker/flutter 3.3.10
2828
RUN mv /home/worker/flutter/flutter /home/worker/flutter/stable
2929
RUN tool/setup-flutter.sh /home/worker/flutter 3.7.0-1.1.pre
3030
RUN mv /home/worker/flutter/flutter /home/worker/flutter/preview

app/lib/shared/versions.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
2222
/// when the version switch happens.
2323
const acceptedRuntimeVersions = <String>[
2424
// The current [runtimeVersion].
25-
'2022.12.13',
25+
'2022.12.16',
2626
// Fallback runtime versions.
2727
'2022.12.07',
2828
'2022.11.23',
@@ -54,8 +54,8 @@ bool shouldGCVersion(String version) =>
5454

5555
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
5656
final String runtimeSdkVersion = '2.18.0';
57-
final String toolStableDartSdkVersion = '2.18.5';
58-
final String toolStableFlutterSdkVersion = '3.3.9';
57+
final String toolStableDartSdkVersion = '2.18.6';
58+
final String toolStableFlutterSdkVersion = '3.3.10';
5959
final String toolPreviewDartSdkVersion = '2.19.0-444.1.beta';
6060
final String toolPreviewFlutterSdkVersion = '3.7.0-1.1.pre';
6161

0 commit comments

Comments
 (0)