Skip to content
This repository was archived by the owner on Jul 19, 2024. It is now read-only.

Commit 76cbb41

Browse files
authored
Merge pull request #132 from jofriedm-msft/master
Java Storage Client Library 5.0.0
2 parents 8bc11d5 + 9887f26 commit 76cbb41

File tree

75 files changed

+3260
-1198
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+3260
-1198
lines changed

BreakingChanges.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
Changes in 5.0.0
2+
3+
BLOB
4+
* getQualifiedUri() has been deprecated. Please use getSnapshotQualifiedUri() instead. This new function will return the blob including the snapshot (if present) and no SAS token.
5+
* getQualifiedStorageUri() has been deprecated. Please use getSnapshotQualifiedStorageUri() instead. This new function will return the blob including the snapshot (if present) and no SAS token.
6+
* Fixed a bug where copying from a blob that included a SAS token and a snapshot did not use the SAS token.
7+
8+
FILE
9+
* Fixed a bug where copying from a blob that included a SAS token and a snapshot did not use the SAS token.
10+
11+
QUEUE
12+
* For addMessage() the CloudQueueMessage message passed in will be populated with the pop receipt, insertion/expiration time, and message ID.
13+
114
Changes in 4.0.0
215

316
TABLE

ChangeLog.txt

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
1+
2017.01.18 Version 5.0.0
2+
* Prefix support for listing files and directories.
3+
* Added support for setting public access when creating a blob container
4+
* The public access setting on a blob container is now a container property returned from downloadProperties.
5+
* Add Message now modifies the PopReceipt, Id, NextVisibleTime, InsertionTime, and ExpirationTime properties of its CloudQueueMessage parameter.
6+
* Populate content MD5 for range gets on Blobs and Files.
7+
* Added support in Page Blob for incremental copy.
8+
* Added large BlockBlob upload support. Blocks can now support sizes up to 100 MB.
9+
* Added a new, memory-optimized upload strategy for the upload* APIs. This algorithm only applies for blocks greater than 4MB and when storeBlobContentMD5 and Client-Side Encryption are disabled.
10+
* getQualifiedUri() has been deprecated for Blobs. Please use getSnapshotQualifiedUri() instead. This new function will return the blob including the snapshot (if present) and no SAS token.
11+
* getQualifiedStorageUri() has been deprecated for Blobs. Please use getSnapshotQualifiedStorageUri() instead. This new function will return the blob including the snapshot (if present) and no SAS token.
12+
* Fixed a bug where copying from a blob that included a SAS token and a snapshot ommitted the SAS token.
13+
114
2016.08.30 Version 4.4.0
215
* Fixed a bug in client-side encryption for tables that was preventing the Java client from decrypting entities encrypted with the .NET client, and vice versa.
3-
16+
417
2016.07.06 Version 4.3.0
518
* Added support for server-side encryption.
619
* Added support for getBlobReferenceFromServer methods on CloudBlobContainer to support retrieving a blob without knowing its type.

microsoft-azure-storage-samples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<dependency>
2727
<groupId>com.microsoft.azure</groupId>
2828
<artifactId>azure-storage</artifactId>
29-
<version>4.4.0</version>
29+
<version>5.0.0</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>com.microsoft.azure</groupId>

0 commit comments

Comments
 (0)