diff --git a/ChangeLog.txt b/ChangeLog.txt index e2c0531de..156a70dfc 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,6 @@ +2020.03.18 Version 8.6.2 + * Fixed a bug in the pom that disrupted the ability to download from maven central. + 2020.03.10 Version 8.6.1 * 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. * 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. diff --git a/README.md b/README.md index 242e730be..e04561e3b 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w com.microsoft.azure azure-storage - 8.6.1 + 8.6.2 ``` diff --git a/microsoft-azure-storage-samples/pom.xml b/microsoft-azure-storage-samples/pom.xml index 959816f7f..bb0127b13 100644 --- a/microsoft-azure-storage-samples/pom.xml +++ b/microsoft-azure-storage-samples/pom.xml @@ -26,7 +26,7 @@ com.microsoft.azure azure-storage - 8.6.1 + 8.6.2 com.microsoft.azure diff --git a/microsoft-azure-storage-samples/src/com/microsoft/azure/storage/logging/pom.xml b/microsoft-azure-storage-samples/src/com/microsoft/azure/storage/logging/pom.xml index 42a42c0f3..1f24b9e02 100644 --- a/microsoft-azure-storage-samples/src/com/microsoft/azure/storage/logging/pom.xml +++ b/microsoft-azure-storage-samples/src/com/microsoft/azure/storage/logging/pom.xml @@ -26,7 +26,7 @@ com.microsoft.azure azure-storage - 8.6.1 + 8.6.2 com.microsoft.azure diff --git a/microsoft-azure-storage/src/com/microsoft/azure/storage/Constants.java b/microsoft-azure-storage/src/com/microsoft/azure/storage/Constants.java index 9925b3c95..85967e678 100644 --- a/microsoft-azure-storage/src/com/microsoft/azure/storage/Constants.java +++ b/microsoft-azure-storage/src/com/microsoft/azure/storage/Constants.java @@ -765,7 +765,7 @@ public static class HeaderConstants { /** * Specifies the value to use for UserAgent header. */ - public static final String USER_AGENT_VERSION = "8.6.1"; + public static final String USER_AGENT_VERSION = "8.6.2"; /** * The default type for content-type and accept diff --git a/pom.xml b/pom.xml index 96c4a36d1..bf2d9df47 100644 --- a/pom.xml +++ b/pom.xml @@ -10,7 +10,7 @@ 4.0.0 com.microsoft.azure azure-storage - 8.6.1 + 8.6.2 jar Microsoft Azure Storage Client SDK @@ -25,25 +25,6 @@ - - - com.azure - - This library has been replaced by the following new Azure SDKs. You can read about the new Azure SDKs at https://aka.ms/azsdkvalueprop. - - The latest libraries to interact with the Azure Blob Storage service are: - - * https://search.maven.org/artifact/com.azure/azure-storage-blob - * https://search.maven.org/artifact/com.azure/azure-storage-blob-cryptography - * https://search.maven.org/artifact/com.azure/azure-storage-blob-batch - * https://search.maven.org/artifact/com.azure/azure-storage-queue - * https://search.maven.org/artifact/com.azure/azure-storage-file-share - - It is recommended that you move to the new package. - - - - scm:git:https://github.com/Azure/azure-storage-java scm:git:git://github.com/Azure/azure-storage-java.git