Skip to content

Commit f546a4f

Browse files
[Release] Release v0.93.0
## Release v0.93.0 ### API Changes * Add `parameters` field for `com.databricks.sdk.service.pipelines.StartUpdate`. * Add `parameters` field for `com.databricks.sdk.service.pipelines.UpdateInfo`. * [Breaking] Change `getDownloadFullQueryResult()` method for `workspaceClient.genie()` service with new required argument order. * [Breaking] Change `name` field for `com.databricks.sdk.service.apps.Space` to be required. * Change `name` field for `com.databricks.sdk.service.apps.Space` to be required. * [Breaking] Change `id` and `userId` fields for `com.databricks.sdk.service.dashboards.GenieConversation` to no longer be required. * [Breaking] Change `createdTimestamp` and `title` fields for `com.databricks.sdk.service.dashboards.GenieConversationSummary` to no longer be required. * [Breaking] Change `downloadIdSignature` field for `com.databricks.sdk.service.dashboards.GenieGetDownloadFullQueryResultRequest` to be required. * [Breaking] Change `id` field for `com.databricks.sdk.service.dashboards.GenieMessage` to no longer be required.
1 parent 7091c47 commit f546a4f

File tree

9 files changed

+22
-17
lines changed

9 files changed

+22
-17
lines changed

.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-02-24 08:12:23+0000"
2+
"timestamp": "2026-02-25 08:12:59+0000"
33
}

CHANGELOG.md

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

3+
## Release v0.93.0 (2026-02-25)
4+
5+
### API Changes
6+
* Add `parameters` field for `com.databricks.sdk.service.pipelines.StartUpdate`.
7+
* Add `parameters` field for `com.databricks.sdk.service.pipelines.UpdateInfo`.
8+
* [Breaking] Change `getDownloadFullQueryResult()` method for `workspaceClient.genie()` service with new required argument order.
9+
* [Breaking] Change `name` field for `com.databricks.sdk.service.apps.Space` to be required.
10+
* Change `name` field for `com.databricks.sdk.service.apps.Space` to be required.
11+
* [Breaking] Change `id` and `userId` fields for `com.databricks.sdk.service.dashboards.GenieConversation` to no longer be required.
12+
* [Breaking] Change `createdTimestamp` and `title` fields for `com.databricks.sdk.service.dashboards.GenieConversationSummary` to no longer be required.
13+
* [Breaking] Change `downloadIdSignature` field for `com.databricks.sdk.service.dashboards.GenieGetDownloadFullQueryResultRequest` to be required.
14+
* [Breaking] Change `id` field for `com.databricks.sdk.service.dashboards.GenieMessage` to no longer be required.
15+
16+
317
## Release v0.92.0 (2026-02-24)
418

519
### Bug Fixes

NEXT_CHANGELOG.md

100755100644
Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NEXT CHANGELOG
22

3-
## Release v0.93.0
3+
## Release v0.94.0
44

55
### New Features and Improvements
66

@@ -13,12 +13,3 @@
1313
### Internal Changes
1414

1515
### API Changes
16-
* Add `parameters` field for `com.databricks.sdk.service.pipelines.StartUpdate`.
17-
* Add `parameters` field for `com.databricks.sdk.service.pipelines.UpdateInfo`.
18-
* [Breaking] Change `getDownloadFullQueryResult()` method for `workspaceClient.genie()` service with new required argument order.
19-
* [Breaking] Change `name` field for `com.databricks.sdk.service.apps.Space` to be required.
20-
* Change `name` field for `com.databricks.sdk.service.apps.Space` to be required.
21-
* [Breaking] Change `id` and `userId` fields for `com.databricks.sdk.service.dashboards.GenieConversation` to no longer be required.
22-
* [Breaking] Change `createdTimestamp` and `title` fields for `com.databricks.sdk.service.dashboards.GenieConversationSummary` to no longer be required.
23-
* [Breaking] Change `downloadIdSignature` field for `com.databricks.sdk.service.dashboards.GenieGetDownloadFullQueryResultRequest` to be required.
24-
* [Breaking] Change `id` field for `com.databricks.sdk.service.dashboards.GenieMessage` to no longer be required.

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.92.0</version>
8+
<version>0.93.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.92.0";
39+
private static final String version = "0.93.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.92.0</version>
27+
<version>0.93.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
@@ -37,7 +37,7 @@
3737
<dependency>
3838
<groupId>com.databricks</groupId>
3939
<artifactId>databricks-sdk-java</artifactId>
40-
<version>0.92.0</version>
40+
<version>0.93.0</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.92.0</version>
7+
<version>0.93.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

shaded/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

66
<properties>
7-
<sdk.version>0.92.0</sdk.version>
7+
<sdk.version>0.93.0</sdk.version>
88
</properties>
99

1010
<groupId>com.databricks</groupId>

0 commit comments

Comments
 (0)