You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: ChangeLog.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,33 @@
2
2
3
3
> See [BreakingChanges](BreakingChanges.md) for a detailed list of API breaks.
4
4
5
+
## Version 0.34.0:
6
+
7
+
### All:
8
+
- All: Support for 2016-05-31 REST version. Please see our REST API documentation and blogs for information about the related added features. If you are using the Storage Emulator, please update to Emulator version 4.6
9
+
- All: Several error messages have been clarified or made more specific.
10
+
11
+
### Blob:
12
+
- Added support for server-side encryption headers.
13
+
- Properly return connections to pool when checking for non-existent blobs.
14
+
- Fixed a bug with parallel uploads for PageBlobs and BlockBlobs where chunks were being buffered and queued faster than can be processed, potentially causing out-of-memory issues.
15
+
- Added large block blob upload support. Blocks can now support sizes up to 100 MB and thus the maximum size of a BlockBlob is now 5,000,000 MB (~4.75 TB).
16
+
- Added streaming upload support for the put_block method and a new memory optimized upload algorithm for create_blob_from_stream and create_blob_from_file APIs. (BlockBlobService)
17
+
- The new upload strategy will no longer fully buffer seekable streams unless Encryption is enabled. See 'use_byte_buffer' parameter documentation on the 'create_blob_from_stream' method for more details.
18
+
- Fixed a deserialization bug with get_block_list() where calling it with anything but the 'all' block_list_type would cause an error.
19
+
- Using If-None-Match: * will now fail when reading a blob. Previously this header was ignored for blob reads.
20
+
- Populate public access when listing blob containers.
21
+
- The public access setting on a blob container is now a container property returned from downloadProperties.
22
+
- Populate content MD5 for range gets on blobs.
23
+
- Added support for incremental copy on page blobs. The source must be a snapshot of a page blob and include a SAS token.
24
+
25
+
### File:
26
+
- Prefix support for listing files and directories.
27
+
- Populate content MD5 for range gets on files.
28
+
29
+
### Queue:
30
+
- put_message now returns a QueueMessage with the PopReceipt, Id, NextVisibleTime, InsertionTime, and ExpirationTime properties populated along with the content.
0 commit comments