Skip to content

Commit 227a44e

Browse files
Release v0.17.1 (#215)
Major changes: * Allow customizing APIs in WorkspaceClient/AccountClient ([#213](#213)). Bug fixes: * Make modifications to make Azure connection work ([#202](#202)). * Tolerate missing GCP dependencies ([#214](#214)).
1 parent f4ac820 commit 227a44e

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Version changelog
22

3+
## 0.17.1
4+
5+
Major changes:
6+
7+
* Allow customizing APIs in WorkspaceClient/AccountClient ([#213](https://github.com/databricks/databricks-sdk-java/pull/213)).
8+
9+
Bug fixes:
10+
11+
* Make modifications to make Azure connection work ([#202](https://github.com/databricks/databricks-sdk-java/pull/202)).
12+
* Tolerate missing GCP dependencies ([#214](https://github.com/databricks/databricks-sdk-java/pull/214)).
13+
14+
15+
316
## 0.17.0
417

518
Bugfixes:
@@ -32,7 +45,7 @@ API Changes:
3245
`databricks.sdk.service.catalog.MonitorTimeSeriesProfileType`,
3346
`databricks.sdk.service.catalog.TableExistsResponse` and
3447
`databricks.sdk.service.catalog.UpdateMonitor`.
35-
* Added `validateOnly` field for `com.databricks.sdk.service.pipelines.StartUpdate`.
48+
* Added `validateOnly` field for `com.databricks.sdk.service.pipelines.StartUpdate`.
3649
* Added `validateOnly` field for `com.databricks.sdk.service.pipelines.UpdateInfo`.
3750
* Changed `createOboToken()` method for `workspaceClient.tokenManagement()` service with new required argument order.
3851
* Changed `get()` method for `workspaceClient.tokenManagement()` service to return `com.databricks.sdk.service.settings.GetTokenResponse` class.

databricks-sdk-java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.databricks</groupId>
77
<artifactId>databricks-sdk-parent</artifactId>
8-
<version>0.17.0</version>
8+
<version>0.17.1</version>
99
</parent>
1010
<artifactId>databricks-sdk-java</artifactId>
1111
<properties>

databricks-sdk-java/src/main/java/com/databricks/sdk/core/UserAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class UserAgent {
1313
// TODO: check if reading from
1414
// /META-INF/maven/com.databricks/databrics-sdk-java/pom.properties
1515
// or getClass().getPackage().getImplementationVersion() is enough.
16-
private static final String version = "0.17.0";
16+
private static final String version = "0.17.1";
1717

1818
public static void withProduct(String product, String productVersion) {
1919
UserAgent.product = product;

examples/docs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.databricks</groupId>
2626
<artifactId>databricks-sdk-java</artifactId>
27-
<version>0.17.0</version>
27+
<version>0.17.1</version>
2828
</dependency>
2929
</dependencies>
3030
</project>

examples/spring-boot-oauth-u2m-demo/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.databricks</groupId>
3939
<artifactId>databricks-sdk-java</artifactId>
40-
<version>0.17.0</version>
40+
<version>0.17.1</version>
4141
</dependency>
4242
<dependency>
4343
<groupId>com.fasterxml.jackson.datatype</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.databricks</groupId>
66
<artifactId>databricks-sdk-parent</artifactId>
7-
<version>0.17.0</version>
7+
<version>0.17.1</version>
88
<packaging>pom</packaging>
99
<name>Databricks SDK for Java</name>
1010
<description>The Databricks SDK for Java includes functionality to accelerate development with Java for

0 commit comments

Comments
 (0)