Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release version update for 2.6.13 #375

Merged
merged 3 commits into from
Jan 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ For example, using maven, you can add the following dependency to your maven pom
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</parent>

<artifactId>azure-cosmosdb-benchmark</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions changelog/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.6.13 - 2021-01-20
- Fixed "request headers is too long" for query plan and CRUD operations on stored procedures.
- Fixed issue with enabling openssl.

## 2.6.12 - 2021-01-18
- Fixed an issue with excessive regional fail-overs when retrieving responses with invalid json from Gateway.

Expand Down
2 changes: 1 addition & 1 deletion commons-test-utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</parent>
<artifactId>azure-cosmosdb-commons-test-utils</artifactId>
<name>Common Test Components for Testing Async SDK for SQL API of Azure Cosmos DB Service</name>
Expand Down
2 changes: 1 addition & 1 deletion commons/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</parent>
<artifactId>azure-cosmosdb-commons</artifactId>
<name>Common Components for Async SDK for SQL API of Azure Cosmos DB Service</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public static class Versions {
// TODO: FIXME we can use maven plugin for generating a version file
// @see
// https://stackoverflow.com/questions/2469922/generate-a-version-java-file-in-maven
public static final String SDK_VERSION = "2.6.12";
public static final String SDK_VERSION = "2.6.13";
public static final String SDK_NAME = "cosmosdb-java-sdk";
public static final String QUERY_VERSION = "1.0";
}
Expand Down
2 changes: 1 addition & 1 deletion direct-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE.
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-direct</artifactId>
<name>Azure Cosmos DB Async SDK Direct Internal Implementation</name>
<version>2.6.12</version>
<version>2.6.13</version>
<description>Azure Cosmos DB Async SDK Direct Internal Implementation</description>
<url>https://docs.microsoft.com/en-us/azure/cosmos-db</url>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</parent>

<artifactId>azure-cosmosdb-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ SOFTWARE.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</parent>
<artifactId>azure-cosmosdb-gateway</artifactId>
<name>Common Gateway Components for Async SDK for SQL API of Azure Cosmos DB Service</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
<packaging>pom</packaging>
<name>Azure Cosmos DB SQL API</name>
<description>Java Async SDK (with Reactive Extension RX support) for Azure Cosmos DB SQL API</description>
Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ SOFTWARE.
<parent>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-cosmosdb-parent</artifactId>
<version>2.6.12</version>
<version>2.6.13</version>
</parent>
<artifactId>azure-cosmosdb</artifactId>
<name>Async SDK for SQL API of Azure Cosmos DB Service</name>
Expand Down