Skip to content

Commit 3ab0492

Browse files
authored
Upgrade runtime SDK to 3.8.0 (#8779)
1 parent 15f55f1 commit 3ab0492

File tree

16 files changed

+129
-127
lines changed

16 files changed

+129
-127
lines changed

.github/workflows/dart.yml

Lines changed: 114 additions & 114 deletions
Large diffs are not rendered by default.

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ AppEngine version, listed here to ease deployment and troubleshooting.
33

44
## Next Release (replace with git tag when deployed)
55
* Bump runtimeVersion to `2025.05.21`.
6+
* Upgraded runtime Dart SDK to `3.8.0`.
67
* Upgraded stable Flutter analysis SDK to `3.32.0`.
78

89
## `20250519t093200-all`

Dockerfile.app

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Keep version in-sync with .mono_repo.yml and app/lib/shared/versions.dart
2-
FROM dart:3.7.0
2+
FROM dart:3.8.0
33

44
# After install we remove the apt-index again to keep the docker image diff small.
55
RUN apt-get update && \

app/lib/shared/versions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ bool shouldGCVersion(String version) =>
6161
version.compareTo(gcBeforeRuntimeVersion) < 0;
6262

6363
// keep in-sync with SDK version in .mono_repo.yml and Dockerfile
64-
final String runtimeSdkVersion = '3.7.0';
64+
final String runtimeSdkVersion = '3.8.0';
6565
final String toolStableDartSdkVersion = '3.8.0';
6666
final String toolStableFlutterSdkVersion = '3.32.0';
6767

app/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://github.com/dart-lang/mono_repo for details
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

app/test/frontend/static_files_test.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ void main() {
137137
'/static/css/dartdoc.css.map',
138138
'/static/css/style.css.map',
139139
'/static/js/script.dart.js.deps',
140+
'/static/js/script.dart.js.info.data',
140141
'/static/js/script.dart.js.info.json',
141142
'/static/js/script.dart.js.map',
142143
'/static/material/bundle/script.min.js.map',

pkg/_pub_shared/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://github.com/dart-lang/mono_repo for details
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/api_builder/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://github.com/dart-lang/mono_repo for details
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/fake_gcloud/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/indexed_blob/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/pub_integration/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/pub_package_reader/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/pub_worker/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/web_app/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

pkg/web_css/mono_pkg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# See https://pub.dev/packages/mono_repo for details on this file
22
sdk:
3-
- 3.7.0
3+
- 3.8.0
44

55
stages:
66
- smoke_test:

tool/ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Created with package:mono_repo v6.6.2
2+
# Created with package:mono_repo v6.6.3
33

44
# Support built in commands on windows out of the box.
55

0 commit comments

Comments
 (0)