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

Commit 8c6dd85

Browse files
committed
Guava dependency upgrade by upgrading keyvault
1 parent 7a1f232 commit 8c6dd85

File tree

7 files changed

+18
-15
lines changed

7 files changed

+18
-15
lines changed

ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2020.06.22 Version 8.6.6
2+
* Upgraded keyvault dependency to pull in security fix in google.guava 24.1.
3+
14
2020.06.22 Version 8.6.5
25
* Fixed a race condition in XML parsing logic that in narrow situations could cause the parser to be initialized incorrectly resulting in an erroneously empty list result.
36

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

microsoft-azure-storage-test/res/TestConfigurations.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
<TenantConfiguration>
1919
<TenantName>ProductionTenant</TenantName>
2020
<TenantType>Cloud</TenantType>
21-
<AccountName>[ACCOUNT NAME HERE]</AccountName>
22-
<AccountKey>[ACCOUNT KEY HERE]</AccountKey>
23-
<BlobServiceEndpoint>http://[ACCOUNT].blob.core.windows.net</BlobServiceEndpoint>
24-
<QueueServiceEndpoint>http://[ACCOUNT].queue.core.windows.net</QueueServiceEndpoint>
25-
<TableServiceEndpoint>http://[ACCOUNT].table.core.windows.net</TableServiceEndpoint>
26-
<FileServiceEndpoint>http://[ACCOUNT].file.core.windows.net</FileServiceEndpoint>
27-
<BlobServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.blob.core.windows.net</BlobServiceSecondaryEndpoint>
28-
<QueueServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.queue.core.windows.net</QueueServiceSecondaryEndpoint>
29-
<TableServiceSecondaryEndpoint>http://[ACCOUNT]-secondary.table.core.windows.net</TableServiceSecondaryEndpoint>
21+
<AccountName>xclientdev3</AccountName>
22+
<AccountKey>3kvaatQpW5aSR+WqTIF31hgxmVWlMbkCuI1vl11elXAVUgZQ1rraM/d625Hh0I9rUc2NC949CJJj0yWyRNggjQ==</AccountKey>
23+
<BlobServiceEndpoint>http://xclientdev3.blob.core.windows.net</BlobServiceEndpoint>
24+
<QueueServiceEndpoint>http://xclientdev3.queue.core.windows.net</QueueServiceEndpoint>
25+
<TableServiceEndpoint>http://xclientdev3.table.core.windows.net</TableServiceEndpoint>
26+
<FileServiceEndpoint>http://xclientdev3.file.core.windows.net</FileServiceEndpoint>
27+
<BlobServiceSecondaryEndpoint>http://xclientdev3-secondary.blob.core.windows.net</BlobServiceSecondaryEndpoint>
28+
<QueueServiceSecondaryEndpoint>http://xclientdev3-secondary.queue.core.windows.net</QueueServiceSecondaryEndpoint>
29+
<TableServiceSecondaryEndpoint>http://xclientdev3-secondary.table.core.windows.net</TableServiceSecondaryEndpoint>
3030
<ActiveDirectoryApplicationId>[APPLICATION_ID]</ActiveDirectoryApplicationId>
3131
<ActiveDirectoryApplicationSecret>[APPLICATION_SECRET]</ActiveDirectoryApplicationSecret>
3232
<ActiveDirectoryTenantId>[TENANT_ID]</ActiveDirectoryTenantId>

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.5";
768+
public static final String USER_AGENT_VERSION = "8.6.6";
769769

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

pom.xml

Lines changed: 2 additions & 2 deletions
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.5</version>
13+
<version>8.6.6</version>
1414
<packaging>jar</packaging>
1515

1616
<name>Microsoft Azure Storage Client SDK</name>
@@ -73,7 +73,7 @@
7373
<dependency>
7474
<groupId>com.microsoft.azure</groupId>
7575
<artifactId>azure-keyvault-core</artifactId>
76-
<version>1.0.0</version>
76+
<version>1.2.4</version>
7777
</dependency>
7878
<dependency>
7979
<groupId>com.microsoft.azure</groupId>

0 commit comments

Comments
 (0)