Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ 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)
* Bump runtimeVersion to `2024.12.17`.

## `20241217t093900-all`
* Bump runtimeVersion to `2024.12.12`.
Expand Down
3 changes: 2 additions & 1 deletion app/lib/shared/storage.dart
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ extension StorageExt on Storage {
String dest, {
ObjectMetadata? metadata,
}) async {
return await _retry(() async => await copyObject(src, dest));
return await _retry(
() async => await copyObject(src, dest, metadata: metadata));
}
}

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 @@ -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].
'2024.12.12',
'2024.12.17',
// Fallback runtime versions.
'2024.12.11',
'2024.12.09',
Expand Down
Loading