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

Commit 36b49ee

Browse files
authored
Merge pull request #529 from Azure/legacy-dev
Legacy dev
2 parents 72e3d28 + ffcf834 commit 36b49ee

File tree

7 files changed

+41
-8
lines changed

7 files changed

+41
-8
lines changed

ChangeLog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
XXXX.XX.XX Version X.X.X
1+
2020.03.10 Version 8.6.1
22
* Fixed a bug in BlobInputStream that would return extra zeros at the end of the stream if the data was encrypted using client-side encryption.
33
* MD5 checks on BlobInputStream are skipped if data being downloaded is also being decrypted via client-side encryption, even if disableMd5Calculation is set to false. Previously this check would always fail as MD5 is calculated on cipher text on upload but was calculated on plaintext on download.
44
* Added a workaround to a JDK bug that would ignore connection timeouts on retries, causing hangs in some scenarios. This requires defaulting setting https keep-alive on all sockets. It can be disabled via BlobRequestOptions.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
3939
<dependency>
4040
<groupId>com.microsoft.azure</groupId>
4141
<artifactId>azure-storage</artifactId>
42-
<version>8.6.0</version>
42+
<version>8.6.1</version>
4343
</dependency>
4444
```
4545

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>8.6.0</version>
29+
<version>8.6.1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>com.microsoft.azure</groupId>

microsoft-azure-storage-samples/src/com/microsoft/azure/storage/logging/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>8.6.0</version>
29+
<version>8.6.1</version>
3030
</dependency>
3131
<dependency>
3232
<groupId>com.microsoft.azure</groupId>

microsoft-azure-storage/src/com/microsoft/azure/storage/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -765,7 +765,7 @@ public static class HeaderConstants {
765765
/**
766766
* Specifies the value to use for UserAgent header.
767767
*/
768-
public static final String USER_AGENT_VERSION = "8.6.0";
768+
public static final String USER_AGENT_VERSION = "8.6.1";
769769

770770
/**
771771
* The default type for content-type and accept

microsoft-azure-storage/src/com/microsoft/azure/storage/core/KeepAliveSocketFactory.java

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License.
1+
/**
2+
* Copyright Microsoft Corporation
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
* http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS,
11+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* See the License for the specific language governing permissions and
13+
* limitations under the License.
14+
*/
315

416
package com.microsoft.azure.storage.core;
517

pom.xml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>com.microsoft.azure</groupId>
1212
<artifactId>azure-storage</artifactId>
13-
<version>8.6.0</version>
13+
<version>8.6.1</version>
1414
<packaging>jar</packaging>
1515

1616
<name>Microsoft Azure Storage Client SDK</name>
@@ -25,6 +25,27 @@
2525
</license>
2626
</licenses>
2727

28+
>
29+
30+
<distributionManagement>
31+
<relocation>
32+
<groupId>com.azure</groupId>
33+
<message>
34+
This library has been replaced by the following new Azure SDKs. You can read about the new Azure SDKs at https://aka.ms/azsdkvalueprop.
35+
36+
The latest libraries to interact with the Azure Blob Storage service are:
37+
38+
* https://search.maven.org/artifact/com.azure/azure-storage-blob
39+
* https://search.maven.org/artifact/com.azure/azure-storage-blob-cryptography
40+
* https://search.maven.org/artifact/com.azure/azure-storage-blob-batch
41+
* https://search.maven.org/artifact/com.azure/azure-storage-queue
42+
* https://search.maven.org/artifact/com.azure/azure-storage-file-share
43+
44+
It is recommended that you move to the new package.
45+
</message>
46+
</relocation>
47+
</distributionManagement>
48+
2849
<scm>
2950
<url>scm:git:https://github.com/Azure/azure-storage-java</url>
3051
<connection>scm:git:git://github.com/Azure/azure-storage-java.git</connection>

0 commit comments

Comments
 (0)