Skip to content

Commit 512d657

Browse files
authored
Fix: updating metadata on copyObject. (#8420)
1 parent db8039a commit 512d657

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ 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+
* Bump runtimeVersion to `2024.12.17`.
56

67
## `20241217t093900-all`
78
* Bump runtimeVersion to `2024.12.12`.

app/lib/shared/storage.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ extension StorageExt on Storage {
8181
String dest, {
8282
ObjectMetadata? metadata,
8383
}) async {
84-
return await _retry(() async => await copyObject(src, dest));
84+
return await _retry(
85+
() async => await copyObject(src, dest, metadata: metadata));
8586
}
8687
}
8788

app/lib/shared/versions.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ final RegExp runtimeVersionPattern = RegExp(r'^\d{4}\.\d{2}\.\d{2}$');
2424
/// when the version switch happens.
2525
const _acceptedRuntimeVersions = <String>[
2626
// The current [runtimeVersion].
27-
'2024.12.12',
27+
'2024.12.17',
2828
// Fallback runtime versions.
2929
'2024.12.11',
3030
'2024.12.09',

0 commit comments

Comments
 (0)