Skip to content

Commit 6c3ad50

Browse files
[Release] Release v0.116.0
## Release v0.116.0 ### Bug Fixes - Make the client ID optional in `DatabricksOAuthTokenSource`. Previously `getToken()` threw a `NullPointerException` ("ClientID cannot be null") when no client ID was set, which prevented token exchange for users authenticated through a web browser OAuth flow whose IdP JWT does not contain a client ID. When the client ID is null or empty, the `client_id` parameter is now omitted from the token exchange request to perform account-wide token federation.
1 parent 2b44706 commit 6c3ad50

11 files changed

Lines changed: 21 additions & 16 deletions

File tree

.release_metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"timestamp": "2026-06-02 09:32:43+0000"
2+
"timestamp": "2026-06-04 09:25:09+0000"
33
}

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Version changelog
22

3+
## Release v0.116.0 (2026-06-04)
4+
5+
### Bug Fixes
6+
7+
- Make the client ID optional in `DatabricksOAuthTokenSource`. Previously `getToken()` threw a
8+
`NullPointerException` ("ClientID cannot be null") when no client ID was set, which prevented
9+
token exchange for users authenticated through a web browser OAuth flow whose IdP JWT does not
10+
contain a client ID. When the client ID is null or empty, the `client_id` parameter is now
11+
omitted from the token exchange request to perform account-wide token federation.
12+
13+
314
## Release v0.115.0 (2026-06-02)
415

516
### API Changes

NEXT_CHANGELOG.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
# NEXT CHANGELOG
22

3-
## Release v0.116.0
3+
## Release v0.117.0
44

55
### New Features and Improvements
66

77
### Breaking Changes
88

99
### Bug Fixes
1010

11-
- Make the client ID optional in `DatabricksOAuthTokenSource`. Previously `getToken()` threw a
12-
`NullPointerException` ("ClientID cannot be null") when no client ID was set, which prevented
13-
token exchange for users authenticated through a web browser OAuth flow whose IdP JWT does not
14-
contain a client ID. When the client ID is null or empty, the `client_id` parameter is now
15-
omitted from the token exchange request to perform account-wide token federation.
16-
1711
### Security Vulnerabilities
1812

1913
### Documentation

databricks-sdk-java/lockfile.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"artifactId": "databricks-sdk-java",
33
"groupId": "com.databricks",
4-
"version": "0.115.0",
4+
"version": "0.116.0",
55
"lockFileVersion": 1,
66
"dependencies": [
77
{

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.115.0</version>
8+
<version>0.116.0</version>
99
</parent>
1010
<artifactId>databricks-sdk-java</artifactId>
1111
<name>Databricks SDK for Java</name>

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
@@ -36,7 +36,7 @@ public String getValue() {
3636
// TODO: check if reading from
3737
// /META-INF/maven/com.databricks/databrics-sdk-java/pom.properties
3838
// or getClass().getPackage().getImplementationVersion() is enough.
39-
private static final String version = "0.115.0";
39+
private static final String version = "0.116.0";
4040

4141
public static void withProduct(String product, String productVersion) {
4242
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.115.0</version>
27+
<version>0.116.0</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
@@ -40,7 +40,7 @@
4040
<dependency>
4141
<groupId>com.databricks</groupId>
4242
<artifactId>databricks-sdk-java</artifactId>
43-
<version>0.115.0</version>
43+
<version>0.116.0</version>
4444
</dependency>
4545
</dependencies>
4646
</project>

lockfile.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"artifactId": "databricks-sdk-parent",
33
"groupId": "com.databricks",
4-
"version": "0.115.0",
4+
"version": "0.116.0",
55
"lockFileVersion": 1,
66
"dependencies": [],
77
"mavenPlugins": [],

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.115.0</version>
7+
<version>0.116.0</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)