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

Commit

Permalink
Merge pull request #535 from rickle-msft/pomFix
Browse files Browse the repository at this point in the history
Pom fix
  • Loading branch information
rickle-msft authored Mar 18, 2020
2 parents 475eb84 + 17787db commit 979799e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 24 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To get the binaries of this library as distributed by Microsoft, ready for use w
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>8.6.1</version>
<version>8.6.2</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion microsoft-azure-storage-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>8.6.1</version>
<version>8.6.2</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>8.6.1</version>
<version>8.6.2</version>
</dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
21 changes: 1 addition & 20 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-storage</artifactId>
<version>8.6.1</version>
<version>8.6.2</version>
<packaging>jar</packaging>

<name>Microsoft Azure Storage Client SDK</name>
Expand All @@ -25,25 +25,6 @@
</license>
</licenses>

<distributionManagement>
<relocation>
<groupId>com.azure</groupId>
<message>
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.
</message>
</relocation>
</distributionManagement>

<scm>
<url>scm:git:https://github.com/Azure/azure-storage-java</url>
<connection>scm:git:git://github.com/Azure/azure-storage-java.git</connection>
Expand Down

0 comments on commit 979799e

Please sign in to comment.