Skip to content

Commit 1b7e37b

Browse files
Release for Cosmos spark connector 4.5.1 (Azure#26035)
* Release for Cosmos spark connector 4.5.1 * Update CHANGELOG.md
1 parent 425358a commit 1b7e37b

File tree

12 files changed

+34
-29
lines changed

12 files changed

+34
-29
lines changed

eng/jacoco-test-coverage/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
<dependency>
179179
<groupId>com.azure</groupId>
180180
<artifactId>azure-cosmos</artifactId>
181-
<version>4.24.0-beta.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
181+
<version>4.24.0-snapshot.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
182182
</dependency>
183183
<dependency>
184184
<groupId>com.azure</groupId>

eng/versioning/version_client.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ com.azure:azure-core-serializer-json-gson;1.1.9;1.2.0-beta.1
7777
com.azure:azure-core-serializer-json-jackson;1.2.10;1.3.0-beta.1
7878
com.azure:azure-core-test;1.7.5;1.8.0-beta.1
7979
com.azure:azure-core-tracing-opentelemetry;1.0.0-beta.17;1.0.0-beta.18
80-
com.azure:azure-cosmos;4.23.0;4.24.0-beta.1
80+
com.azure:azure-cosmos;4.23.0;4.24.0-snapshot.1
8181
com.azure:azure-cosmos-benchmark;4.0.1-beta.1;4.0.1-beta.1
8282
com.azure:azure-cosmos-dotnet-benchmark;4.0.1-beta.1;4.0.1-beta.1
83-
com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;4.5.1-beta.1;4.5.1-beta.1
83+
com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;4.5.1;4.5.1
8484
com.azure:azure-cosmos-encryption;1.0.0-beta.9;1.0.0-beta.10
8585
com.azure:azure-data-appconfiguration;1.2.4;1.3.0-beta.1
8686
com.azure:azure-data-appconfiguration-perf;1.0.0-beta.1;1.0.0-beta.1

sdk/cosmos/azure-cosmos-benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Licensed under the MIT License.
4646
<dependency>
4747
<groupId>com.azure</groupId>
4848
<artifactId>azure-cosmos</artifactId>
49-
<version>4.24.0-beta.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
49+
<version>4.24.0-snapshot.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
5050
</dependency>
5151

5252
<dependency>

sdk/cosmos/azure-cosmos-dotnet-benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Licensed under the MIT License.
4646
<dependency>
4747
<groupId>com.azure</groupId>
4848
<artifactId>azure-cosmos</artifactId>
49-
<version>4.24.0-beta.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
49+
<version>4.24.0-snapshot.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
5050
</dependency>
5151

5252
<dependency>

sdk/cosmos/azure-cosmos-encryption/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Licensed under the MIT License.
4747
<dependency>
4848
<groupId>com.azure</groupId>
4949
<artifactId>azure-cosmos</artifactId>
50-
<version>4.24.0-beta.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
50+
<version>4.24.0-snapshot.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
5151
</dependency>
5252

5353
<dependency>

sdk/cosmos/azure-cosmos-spark_3-1_2-12/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Release History
2-
### 4.5.1-beta.1 (Unreleased)
2+
### 4.5.1 (2021-12-14)
3+
#### Key Bug Fixes
4+
* Fixed an issue that can cause hangs when bulk-ingesting data into Cosmos containers with more than 255 physical partitions - See [PR 26017](https://github.com/Azure/azure-sdk-for-java/pull/26017)
5+
* Improved robustness of built-in retry policies for transient I/O errors when calculating Spark partitioning, do schema inference or process Catalog APIs. - See [PR 26029](https://github.com/Azure/azure-sdk-for-java/pull/26029)
6+
37
### 4.5.0 (2021-12-09)
48
#### New Features
59
* Added a user defined function that can be used to calculate the "feedRange" of a partition key value. This "feedRange" can be used to determine co-located documents and to optimize query performance when the query is scoped to a single/few logical partitions. - See [PR 25889](https://github.com/Azure/azure-sdk-for-java/pull/25889).

sdk/cosmos/azure-cosmos-spark_3-1_2-12/README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,29 +24,30 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
2424

2525
### Version Compatibility
2626

27-
| Connector | Minimum Spark Version | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
28-
| ------------- | --------------------- | -------------------- | ----------------------- | ----------------------------- |
29-
| 4.5.0 | 3.1.1 | 8 | 2.12 | 8.\*, 9.\* |
30-
| 4.4.2 | 3.1.1 | 8 | 2.12 | 8.\*, 9.\* |
31-
| 4.4.1 | 3.1.1 | 8 | 2.12 | 8.\*, 9.\* |
32-
| 4.4.0 | 3.1.1 | 8 | 2.12 | 8.\*, 9.\* |
33-
| 4.3.1 | 3.1.1 | 8 | 2.12 | 8.\*, 9.\* |
34-
| 4.3.0 | 3.1.1 | 8 | 2.12 | 8.\*, 9.\* |
35-
| 4.2.0 | 3.1.1 | 8 | 2.12 | 8.\* |
36-
| 4.1.0 | 3.1.1 | 8 | 2.12 | 8.\* |
37-
| 4.0.0 | 3.1.1 | 8 | 2.12 | 8.\* |
38-
| 4.0.0-beta.3 | 3.1.1 | 8 | 2.12 | 8.\* |
39-
| 4.0.0-beta.2 | 3.1.1 | 8 | 2.12 | 8.\* |
40-
| 4.0.0-beta.1 | 3.1.1 | 8 | 2.12 | 8.\* |
27+
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
28+
| ------------- | ------------------------ | -------------------- | ----------------------- | ----------------------------- |
29+
| 4.5.1 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
30+
| 4.5.0 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
31+
| 4.4.2 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
32+
| 4.4.1 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
33+
| 4.4.0 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
34+
| 4.3.1 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
35+
| 4.3.0 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
36+
| 4.2.0 | 3.1.1 | 8 | 2.12 | 8.\* |
37+
| 4.1.0 | 3.1.1 | 8 | 2.12 | 8.\* |
38+
| 4.0.0 | 3.1.1 | 8 | 2.12 | 8.\* |
39+
| 4.0.0-beta.3 | 3.1.1 | 8 | 2.12 | 8.\* |
40+
| 4.0.0-beta.2 | 3.1.1 | 8 | 2.12 | 8.\* |
41+
| 4.0.0-beta.1 | 3.1.1 | 8 | 2.12 | 8.\* |
4142

4243
### Download
4344

4445
You can use the maven coordinate of the jar to auto install the Spark Connector to your Databricks Runtime 8 from Maven:
45-
`com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12:4.5.0`
46+
`com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12:4.5.1`
4647

4748
You can also integrate against Cosmos DB Spark Connector in your SBT project:
4849
```scala
49-
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-1_2-12" % "4.5.0"
50+
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-1_2-12" % "4.5.1"
5051
```
5152

5253
Cosmos DB Spark Connector is available on [Maven Central Repo](https://search.maven.org/search?q=g:com.azure.cosmos.spark).

sdk/cosmos/azure-cosmos-spark_3-1_2-12/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>com.azure.cosmos.spark</groupId>
1414
<artifactId>azure-cosmos-spark_3-1_2-12</artifactId>
15-
<version>4.5.1-beta.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;current} -->
15+
<version>4.5.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;current} -->
1616
<packaging>jar</packaging>
1717
<name>OLTP Spark Connector for Azure Cosmos DB SQL API</name>
1818
<description>OLTP Spark Connector for Azure Cosmos DB SQL API</description>
@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>com.azure</groupId>
6666
<artifactId>azure-cosmos</artifactId>
67-
<version>4.24.0-beta.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
67+
<version>4.24.0-snapshot.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
6868
</dependency>
6969
<dependency>
7070
<groupId>org.scala-lang.modules</groupId>

sdk/cosmos/azure-cosmos/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Release History
22

3-
### 4.24.0-beta.1 (Unreleased)
3+
### 4.24.0-snapshot.1 (Unreleased)
44

55
#### Features Added
66

sdk/cosmos/azure-cosmos/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Licensed under the MIT License.
1313

1414
<groupId>com.azure</groupId>
1515
<artifactId>azure-cosmos</artifactId>
16-
<version>4.24.0-beta.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
16+
<version>4.24.0-snapshot.1</version> <!-- {x-version-update;com.azure:azure-cosmos;current} -->
1717
<name>Microsoft Azure SDK for SQL API of Azure Cosmos DB Service</name>
1818
<description>This Package contains Microsoft Azure Cosmos SDK (with Reactive Extension Reactor support) for Azure Cosmos DB SQL API</description>
1919
<packaging>jar</packaging>

0 commit comments

Comments
 (0)