Skip to content

Commit

Permalink
Upgrade runtime SDK to 3.4 (#7731)
Browse files Browse the repository at this point in the history
  • Loading branch information
isoos committed May 15, 2024
1 parent 84b9b1f commit 75c3b5b
Show file tree
Hide file tree
Showing 36 changed files with 701 additions and 538 deletions.
224 changes: 112 additions & 112 deletions .github/workflows/dart.yml

Large diffs are not rendered by default.

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 `2024.05.15`.
* Upgraded runtime Dart SDK to `3.4.0`.
* Upgraded dependencies.

## `20240514t110800-all`
* Fixes copy icon issue.
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.3.0
FROM dart:3.4.0

# After install we remove the apt-index again to keep the docker image diff small.
RUN apt-get update && \
Expand Down
8 changes: 4 additions & 4 deletions app/lib/package/models.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions app/lib/search/search_service.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/lib/service/rate_limit/models.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions app/lib/shared/configuration.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 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].
'2024.05.14',
'2024.05.15',
// Fallback runtime versions.
'2024.05.14',
'2024.05.01',
'2024.04.16',
];

/// Sets the current runtime versions.
Expand Down 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.3.0';
final String runtimeSdkVersion = '3.4.0';
final String toolStableDartSdkVersion = '3.4.0';
final String toolStableFlutterSdkVersion = '3.22.0';

Expand Down
2 changes: 1 addition & 1 deletion app/lib/task/models.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/lib/tool/test_profile/models.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.3.0
- 3.4.0

stages:
- smoke_test:
Expand Down

0 comments on commit 75c3b5b

Please sign in to comment.