File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.8.17
2
+ - Fix bug in ` ObjectMetadata.replace ` where ` contentEncoding ` overwrote
3
+ ` contentDisposition ` and ` contentLanguage ` .
4
+
1
5
## 0.8.16
2
6
3
7
- ` BucketEntry ` is now ` sealed ` this may cause ** breakage** for anyone
Original file line number Diff line number Diff line change @@ -514,8 +514,8 @@ class _ObjectMetadata implements ObjectMetadata {
514
514
contentType: contentType ?? this .contentType,
515
515
contentEncoding: contentEncoding ?? this .contentEncoding,
516
516
cacheControl: cacheControl ?? this .cacheControl,
517
- contentDisposition: contentDisposition ?? this .contentEncoding ,
518
- contentLanguage: contentLanguage ?? this .contentEncoding ,
517
+ contentDisposition: contentDisposition ?? this .contentDisposition ,
518
+ contentLanguage: contentLanguage ?? this .contentLanguage ,
519
519
custom: custom != null ? Map .from (custom) : this .custom);
520
520
}
521
521
}
Original file line number Diff line number Diff line change 1
1
name : gcloud
2
- version : 0.8.16
2
+ version : 0.8.17
3
3
description : >-
4
4
High level idiomatic Dart API for Google Cloud Storage, Pub-Sub and Datastore.
5
5
repository : https://github.com/dart-lang/labs/tree/main/pkgs/gcloud
You can’t perform that action at this time.
0 commit comments