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
{{ message }}
This repository was archived by the owner on Jul 19, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: ChangeLog.txt
+14-1Lines changed: 14 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,18 @@
1
-
2017.XX.XX Version X.X.0
1
+
2017.XX.XX Version X.X.X
2
+
* Added ErrorReceivingResponseEvent which fires when a network error occurs before the responseReceivedEvent fires. If the responseReceivedEvent fires sucessfully, this new event will not fire.
3
+
* For Premium Accounts only, added support for getting and setting the tier on a page blob. The tier can also be set when creating or copying from an existing page blob.
2
4
* Added support for server side encryption for File Service.
5
+
6
+
2017.06.21 Version 5.3.1
7
+
* Fixed a bug in specific upload case for block blobs. This only affects uploads greater than the max put blob threshold, that have increased the streamWriteSizeInBytes beyond the 4 MB and storeBlobContentMD5 has been disabled.
8
+
* In some cases in the above mentioned upload path, fixed a bug where StorageExceptions were being thrown instead of IOExceptions.
9
+
10
+
2017.06.13 Version 5.3.0
11
+
* Fixed a bug where the transactional MD5 check would fail when downloading a range of blob or file and the recovery action is performed on a subsection of the range.
12
+
* Fixed leaking connections for table requests.
13
+
* Fixed a bug where retries happened immediately when experiencing a network exception uploading data or getting the response.
14
+
* Fixed a bug where the response stream was not being closed on nonretryable exceptions.
15
+
3
16
2017.05.23 Version 5.2.0
4
17
* Fixed Exists() calls on Shares and Directories to now populate metadata. This was already being done for Files.
5
18
* Changed blob constants to support up to 256 MB on put blob for block blobs. The default value for put blob threshold has also been updated to half of the maximum, or 128 MB currently.
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
30
30
<dependency>
31
31
<groupId>com.microsoft.azure</groupId>
32
32
<artifactId>azure-storage</artifactId>
33
-
<version>5.2.0</version>
33
+
<version>5.3.1</version>
34
34
</dependency>
35
35
```
36
36
@@ -127,6 +127,8 @@ If you would like to become an active contributor to this project please follow
127
127
128
128
If you encounter any bugs with the library please file an issue in the [Issues](https://github.com/Azure/azure-storage-java/issues) section of the project.
129
129
130
+
When sending pull requests, please send non-breaking PRs to the dev branch and breaking changes to the dev_breaking branch. Do not make PRs against master.
0 commit comments