Skip to content

Commit 025613a

Browse files
azure-cosmos-spark Hotfix release 4.17.1 (Azure#33761)
1 parent 77036c2 commit 025613a

File tree

11 files changed

+30
-36
lines changed

11 files changed

+30
-36
lines changed

eng/versioning/version_client.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ com.azure:azure-cosmos;4.41.0;4.42.0-beta.1
9393
com.azure:azure-cosmos-benchmark;4.0.1-beta.1;4.0.1-beta.1
9494
com.azure:azure-cosmos-dotnet-benchmark;4.0.1-beta.1;4.0.1-beta.1
9595
com.azure.cosmos.spark:azure-cosmos-spark_3_2-12;1.0.0-beta.1;1.0.0-beta.1
96-
com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;4.17.0;4.18.0-beta.1
97-
com.azure.cosmos.spark:azure-cosmos-spark_3-2_2-12;4.17.0;4.18.0-beta.1
98-
com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12;4.17.0;4.18.0-beta.1
96+
com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;4.17.0;4.17.1
97+
com.azure.cosmos.spark:azure-cosmos-spark_3-2_2-12;4.17.0;4.17.1
98+
com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12;4.17.0;4.17.1
9999
com.azure:azure-cosmos-encryption;1.11.0;1.12.0-beta.1
100100
com.azure:azure-data-appconfiguration;1.4.2;1.5.0-beta.1
101101
com.azure:azure-data-appconfiguration-perf;1.0.0-beta.1;1.0.0-beta.1

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
## Release History
22

3-
### 4.18.0-beta.1 (Unreleased)
4-
5-
#### Features Added
6-
7-
#### Breaking Changes
3+
### 4.17.1 (2023-02-27)
84

95
#### Bugs Fixed
10-
11-
#### Other Changes
6+
- Fixed LSN offset for Spark 2 -> Spark 3 offset conversion UDF function - See [PR 33757](https://github.com/Azure/azure-sdk-for-java/pull/33757)
127

138
### 4.17.0 (2023-02-17)
149

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
2929
#### azure-cosmos-spark_3-1_2-12
3030
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
3131
|--------------| ------------------------ | -------------------- | ----------------------- | ----------------------------- |
32+
| 4.17.1 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
3233
| 4.17.0 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
3334
| 4.16.0 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
3435
| 4.15.0 | 3.1.1 - 3.1.2 | 8 | 2.12 | 8.\*, 9.\* |
@@ -69,6 +70,7 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
6970
#### azure-cosmos-spark_3-2_2-12
7071
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
7172
|-----------| ------------------------ | -------------------- | ----------------------- | ----------------------------- |
73+
| 4.17.1 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
7274
| 4.17.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
7375
| 4.16.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
7476
| 4.15.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
@@ -94,17 +96,18 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
9496
#### azure-cosmos-spark_3-3_2-12
9597
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
9698
|-----------|--------------------------| -------------------- | ----------------------- |-------------------------------|
99+
| 4.17.1 | 3.3.0 | 8 | 2.12 | 11.\* |
97100
| 4.17.0 | 3.3.0 | 8 | 2.12 | 11.\* |
98101
| 4.16.0 | 3.3.0 | 8 | 2.12 | 11.\* |
99102
| 4.15.0 | 3.3.0 | 8 | 2.12 | 11.\* |
100103
### Download
101104

102105
You can use the maven coordinate of the jar to auto install the Spark Connector to your Databricks Runtime 8 from Maven:
103-
`com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12:4.17.0`
106+
`com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12:4.17.1`
104107

105108
You can also integrate against Cosmos DB Spark Connector in your SBT project:
106109
```scala
107-
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-1_2-12" % "4.17.0"
110+
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-1_2-12" % "4.17.1"
108111
```
109112

110113
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>com.azure.cosmos.spark</groupId>
1313
<artifactId>azure-cosmos-spark_3-1_2-12</artifactId>
14-
<version>4.18.0-beta.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;current} -->
14+
<version>4.17.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-1_2-12;current} -->
1515
<packaging>jar</packaging>
1616
<url>https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/cosmos/azure-cosmos-spark_3-1_2-12</url>
1717
<name>OLTP Spark 3.1 Connector for Azure Cosmos DB SQL API</name>

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
## Release History
22

3-
### 4.18.0-beta.1 (Unreleased)
4-
5-
#### Features Added
6-
7-
#### Breaking Changes
3+
### 4.17.1 (2023-02-27)
84

95
#### Bugs Fixed
10-
11-
#### Other Changes
6+
- Fixed LSN offset for Spark 2 -> Spark 3 offset conversion UDF function - See [PR 33757](https://github.com/Azure/azure-sdk-for-java/pull/33757)
127

138
### 4.17.0 (2023-02-17)
149

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
2828
#### azure-cosmos-spark_3-2_2-12
2929
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
3030
|-----------| ------------------------ | -------------------- | ----------------------- | ----------------------------- |
31+
| 4.17.1 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
3132
| 4.17.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
3233
| 4.16.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
3334
| 4.15.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
@@ -53,13 +54,15 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
5354
#### azure-cosmos-spark_3-3_2-12
5455
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
5556
|-----------|--------------------------| -------------------- | ----------------------- |-------------------------------|
57+
| 4.17.1 | 3.3.0 | 8 | 2.12 | 11.\* |
5658
| 4.17.0 | 3.3.0 | 8 | 2.12 | 11.\* |
5759
| 4.16.0 | 3.3.0 | 8 | 2.12 | 11.\* |
5860
| 4.15.0 | 3.3.0 | 8 | 2.12 | 11.\* |
5961

6062
#### azure-cosmos-spark_3-1_2-12
6163
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
6264
|--------------| ------------------------ | -------------------- | ----------------------- | ----------------------------- |
65+
| 4.17.1 | 3.2.0 - 3.2.1 | 8 | 2.12 | 8.\*, 9.\* |
6366
| 4.17.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 8.\*, 9.\* |
6467
| 4.16.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 8.\*, 9.\* |
6568
| 4.15.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 8.\*, 9.\* |
@@ -100,11 +103,11 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
100103
### Download
101104

102105
You can use the maven coordinate of the jar to auto install the Spark Connector to your Databricks Runtime 10 from Maven:
103-
`com.azure.cosmos.spark:azure-cosmos-spark_3-2_2-12:4.17.0`
106+
`com.azure.cosmos.spark:azure-cosmos-spark_3-2_2-12:4.17.1`
104107

105108
You can also integrate against Cosmos DB Spark Connector in your SBT project:
106109
```scala
107-
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-2_2-12" % "4.17.0"
110+
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-2_2-12" % "4.17.1"
108111
```
109112

110113
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-2_2-12/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>com.azure.cosmos.spark</groupId>
1313
<artifactId>azure-cosmos-spark_3-2_2-12</artifactId>
14-
<version>4.18.0-beta.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-2_2-12;current} -->
14+
<version>4.17.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-2_2-12;current} -->
1515
<packaging>jar</packaging>
1616
<url>https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/cosmos/azure-cosmos-spark_3-2_2-12</url>
1717
<name>OLTP Spark 3.2 Connector for Azure Cosmos DB SQL API</name>

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

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
## Release History
22

3-
### 4.18.0-beta.1 (Unreleased)
4-
5-
#### Features Added
6-
7-
#### Breaking Changes
3+
### 4.17.1 (2023-02-27)
84

95
#### Bugs Fixed
10-
11-
#### Other Changes
6+
- Fixed LSN offset for Spark 2 -> Spark 3 offset conversion UDF function - See [PR 33757](https://github.com/Azure/azure-sdk-for-java/pull/33757)
127

138
### 4.17.0 (2023-02-17)
149

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,15 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
2828
#### azure-cosmos-spark_3-3_2-12
2929
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
3030
|-----------|--------------------------| -------------------- | ----------------------- |-------------------------------|
31+
| 4.17.1 | 3.3.0 | 8 | 2.12 | 11.\* |
3132
| 4.17.0 | 3.3.0 | 8 | 2.12 | 11.\* |
3233
| 4.16.0 | 3.3.0 | 8 | 2.12 | 11.\* |
3334
| 4.15.0 | 3.3.0 | 8 | 2.12 | 11.\* |
3435

3536
#### azure-cosmos-spark_3-2_2-12
3637
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
3738
|-----------| ------------------------ | -------------------- | ----------------------- | ----------------------------- |
39+
| 4.17.1 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
3840
| 4.17.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
3941
| 4.16.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
4042
| 4.15.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
@@ -60,6 +62,7 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
6062
#### azure-cosmos-spark_3-1_2-12
6163
| Connector | Supported Spark Versions | Minimum Java Version | Supported Scala Versions | Supported Databricks Runtimes |
6264
|--------------| ------------------------ | -------------------- | ----------------------- | ----------------------------- |
65+
| 4.17.1 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
6366
| 4.17.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
6467
| 4.16.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
6568
| 4.15.0 | 3.2.0 - 3.2.1 | 8 | 2.12 | 10.\* |
@@ -100,11 +103,11 @@ https://github.com/Azure/azure-sdk-for-java/issues/new
100103
### Download
101104

102105
You can use the maven coordinate of the jar to auto install the Spark Connector to your Databricks Runtime 11 from Maven:
103-
`com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12:4.17.0`
106+
`com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12:4.17.1`
104107

105108
You can also integrate against Cosmos DB Spark Connector in your SBT project:
106109
```scala
107-
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-3_2-12" % "4.17.0"
110+
libraryDependencies += "com.azure.cosmos.spark" % "azure-cosmos-spark_3-3_2-12" % "4.17.1"
108111
```
109112

110113
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-3_2-12/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>com.azure.cosmos.spark</groupId>
1313
<artifactId>azure-cosmos-spark_3-3_2-12</artifactId>
14-
<version>4.18.0-beta.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12;current} -->
14+
<version>4.17.1</version> <!-- {x-version-update;com.azure.cosmos.spark:azure-cosmos-spark_3-3_2-12;current} -->
1515
<packaging>jar</packaging>
1616
<url>https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/cosmos/azure-cosmos-spark_3-3_2-12</url>
1717
<name>OLTP Spark 3.3 Connector for Azure Cosmos DB SQL API</name>

0 commit comments

Comments
 (0)