Skip to content

Upgrade runtime SDK to 3.8.0 #8779

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
228 changes: 114 additions & 114 deletions .github/workflows/dart.yml

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ AppEngine version, listed here to ease deployment and troubleshooting.

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

## `20250519t093200-all`
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.app
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Keep version in-sync with .mono_repo.yml and app/lib/shared/versions.dart
FROM dart:3.7.0
FROM dart:3.8.0

# After install we remove the apt-index again to keep the docker image diff small.
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion app/lib/shared/versions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ bool shouldGCVersion(String version) =>
version.compareTo(gcBeforeRuntimeVersion) < 0;

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

Expand Down
2 changes: 1 addition & 1 deletion app/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://github.com/dart-lang/mono_repo for details
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
1 change: 1 addition & 0 deletions app/test/frontend/static_files_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ void main() {
'/static/css/dartdoc.css.map',
'/static/css/style.css.map',
'/static/js/script.dart.js.deps',
'/static/js/script.dart.js.info.data',
'/static/js/script.dart.js.info.json',
'/static/js/script.dart.js.map',
'/static/material/bundle/script.min.js.map',
Expand Down
2 changes: 1 addition & 1 deletion pkg/_pub_shared/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://github.com/dart-lang/mono_repo for details
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/api_builder/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://github.com/dart-lang/mono_repo for details
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/fake_gcloud/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/indexed_blob/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/pub_integration/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/pub_package_reader/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/pub_worker/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/web_app/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion pkg/web_css/mono_pkg.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# See https://pub.dev/packages/mono_repo for details on this file
sdk:
- 3.7.0
- 3.8.0

stages:
- smoke_test:
Expand Down
2 changes: 1 addition & 1 deletion tool/ci.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Created with package:mono_repo v6.6.2
# Created with package:mono_repo v6.6.3

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

Expand Down