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+
15## 0.8.16
26
37 - ` 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 {
514514 contentType: contentType ?? this .contentType,
515515 contentEncoding: contentEncoding ?? this .contentEncoding,
516516 cacheControl: cacheControl ?? this .cacheControl,
517- contentDisposition: contentDisposition ?? this .contentEncoding ,
518- contentLanguage: contentLanguage ?? this .contentEncoding ,
517+ contentDisposition: contentDisposition ?? this .contentDisposition ,
518+ contentLanguage: contentLanguage ?? this .contentLanguage ,
519519 custom: custom != null ? Map .from (custom) : this .custom);
520520 }
521521}
Original file line number Diff line number Diff line change 11name : gcloud
2- version : 0.8.16
2+ version : 0.8.17
33description : >-
44 High level idiomatic Dart API for Google Cloud Storage, Pub-Sub and Datastore.
55repository : https://github.com/dart-lang/labs/tree/main/pkgs/gcloud
You can’t perform that action at this time.
0 commit comments