Skip to content

Commit e3f22fe

Browse files
committed
Merge branch 'main' of github.com:databricks/databricks-sdk-java into spog-support
2 parents b7a4be0 + cf0c5fe commit e3f22fe

File tree

16 files changed

+75
-24
lines changed

16 files changed

+75
-24
lines changed

.codegen/_openapi_sha

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8e2bc4c67d9f4c3aed496549fed9f3e29e4874b1
1+
ed8b5e7ec1f143395503eebae9fbc74cf8c309bc

.github/workflows/tagging.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22
name: tagging
33

44
on:
5+
# Manual dispatch.
56
workflow_dispatch:
6-
# Runs at 8:00 UTC on Tuesday, Wednesday, and Thursday.
7-
# To disable this flow, simply comment the schedule section.
7+
# No inputs are required for the manual dispatch.
8+
9+
# Runs at 8:00 UTC on Tuesday, Wednesday, and Thursday. To enable automated
10+
# tagging for a repository, simply add it to the if block of the tag job.
811
schedule:
912
- cron: '0 8 * * TUE,WED,THU'
1013

@@ -15,6 +18,14 @@ concurrency:
1518

1619
jobs:
1720
tag:
21+
# Only run the tag job if the trigger is manual (workflow_dispatch) or
22+
# the repository has been approved for automated releases.
23+
#
24+
# To disable release for a repository, simply exclude it from the if
25+
# condition.
26+
if: >-
27+
github.event_name == 'workflow_dispatch' ||
28+
github.repository == 'databricks/databricks-sdk-go'
1829
environment: "release-is"
1930
runs-on:
2031
group: databricks-deco-testing-runner-group

.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-01-20 08:04:39+0000"
2+
"timestamp": "2026-01-21 08:04:45+0000"
33
}

CHANGELOG.md

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

3+
## Release v0.77.0 (2026-01-21)
4+
5+
### API Changes
6+
* Add `principalId` field for `com.databricks.sdk.service.workspace.CreateCredentialsRequest`.
7+
* Add `principalId` field for `com.databricks.sdk.service.workspace.DeleteCredentialsRequest`.
8+
* Add `principalId` field for `com.databricks.sdk.service.workspace.GetCredentialsRequest`.
9+
* Add `principalId` field for `com.databricks.sdk.service.workspace.ListCredentialsRequest`.
10+
* Add `principalId` field for `com.databricks.sdk.service.workspace.UpdateCredentialsRequest`.
11+
12+
313
## Release v0.76.0 (2026-01-20)
414

515
### API Changes

NEXT_CHANGELOG.md

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

3-
## Release v0.77.0
3+
## Release v0.78.0
44

55
### New Features and Improvements
66

@@ -15,8 +15,5 @@
1515
### Internal Changes
1616

1717
### API Changes
18-
* Add `principalId` field for `com.databricks.sdk.service.workspace.CreateCredentialsRequest`.
19-
* Add `principalId` field for `com.databricks.sdk.service.workspace.DeleteCredentialsRequest`.
20-
* Add `principalId` field for `com.databricks.sdk.service.workspace.GetCredentialsRequest`.
21-
* Add `principalId` field for `com.databricks.sdk.service.workspace.ListCredentialsRequest`.
22-
* Add `principalId` field for `com.databricks.sdk.service.workspace.UpdateCredentialsRequest`.
18+
* Add `outputs` field for `com.databricks.sdk.service.serving.QueryEndpointResponse`.
19+
* Add `sessionId` field for `com.databricks.sdk.service.sql.QueryInfo`.

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.76.0</version>
8+
<version>0.77.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.76.0";
39+
private static final String version = "0.77.0";
4040

4141
public static void withProduct(String product, String productVersion) {
4242
UserAgent.product = product;

databricks-sdk-java/src/main/java/com/databricks/sdk/service/catalog/ConnectionType.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
import com.databricks.sdk.support.Generated;
66

7-
/** Next Id: 54 */
7+
/** Next Id: 72 */
88
@Generated
99
public enum ConnectionType {
1010
BIGQUERY,

databricks-sdk-java/src/main/java/com/databricks/sdk/service/postgres/EndpointSpec.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,8 @@ public class EndpointSpec {
3535
private EndpointSettings settings;
3636

3737
/**
38-
* Duration of inactivity after which the compute endpoint is automatically suspended. Supported
39-
* values: -1s (never suspend), 0s (use default), or value should be between 60s and 604800s (1
40-
* minute to 1 week).
38+
* Duration of inactivity after which the compute endpoint is automatically suspended. If
39+
* specified should be between 60s and 604800s (1 minute to 1 week).
4140
*/
4241
@JsonProperty("suspend_timeout_duration")
4342
private Duration suspendTimeoutDuration;

databricks-sdk-java/src/main/java/com/databricks/sdk/service/postgres/ProjectDefaultEndpointSettings.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@ public class ProjectDefaultEndpointSettings {
2525
private Map<String, String> pgSettings;
2626

2727
/**
28-
* Duration of inactivity after which the compute endpoint is automatically suspended. Supported
29-
* values: -1s (never suspend), 0s (use default), or value should be between 60s and 604800s (1
30-
* minute to 1 week).
28+
* Duration of inactivity after which the compute endpoint is automatically suspended. If
29+
* specified should be between 60s and 604800s (1 minute to 1 week).
3130
*/
3231
@JsonProperty("suspend_timeout_duration")
3332
private Duration suspendTimeoutDuration;

0 commit comments

Comments
 (0)