Skip to content

Commit 101a579

Browse files
[Release] Release v0.69.0
## Release v0.69.0 ### Bug Fixes * Fix proxy SPNego authentication to respect krb5.conf canonicalization settings instead of forcing hostname canonicalization. The SDK now defers to the Kerberos library configuration for hostname resolution. **Migration note**: If you experience new Kerberos authentication failures with proxy servers after upgrading, verify that your `krb5.conf` canonicalization settings (`rdns` and `dns_canonicalize_hostname`) are correctly configured for your environment. ### API Changes * Add `GOOGLE_ADS`, `TIKTOK_ADS`, `SALESFORCE_MARKETING_CLOUD`, `HUBSPOT`, `WORKDAY_HCM`, `GUIDEWIRE` and `ZENDESK` enum values for `com.databricks.sdk.service.pipelines.IngestionSourceType`.
1 parent 79d6604 commit 101a579

File tree

9 files changed

+18
-11
lines changed

9 files changed

+18
-11
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": "2025-10-30 12:31:22+0000"
2+
"timestamp": "2025-11-05 18:38:32+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.69.0 (2025-11-05)
4+
5+
### Bug Fixes
6+
7+
* Fix proxy SPNego authentication to respect krb5.conf canonicalization settings instead of forcing hostname canonicalization. The SDK now defers to the Kerberos library configuration for hostname resolution. **Migration note**: If you experience new Kerberos authentication failures with proxy servers after upgrading, verify that your `krb5.conf` canonicalization settings (`rdns` and `dns_canonicalize_hostname`) are correctly configured for your environment.
8+
9+
### API Changes
10+
* Add `GOOGLE_ADS`, `TIKTOK_ADS`, `SALESFORCE_MARKETING_CLOUD`, `HUBSPOT`, `WORKDAY_HCM`, `GUIDEWIRE` and `ZENDESK` enum values for `com.databricks.sdk.service.pipelines.IngestionSourceType`.
11+
12+
313
## Release v0.68.0 (2025-10-30)
414

515
### Documentation

NEXT_CHANGELOG.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
# NEXT CHANGELOG
22

3-
## Release v0.69.0
3+
## Release v0.70.0
44

55
### New Features and Improvements
66

77
### Bug Fixes
88

9-
* Fix proxy SPNego authentication to respect krb5.conf canonicalization settings instead of forcing hostname canonicalization. The SDK now defers to the Kerberos library configuration for hostname resolution. **Migration note**: If you experience new Kerberos authentication failures with proxy servers after upgrading, verify that your `krb5.conf` canonicalization settings (`rdns` and `dns_canonicalize_hostname`) are correctly configured for your environment.
10-
119
### Security Vulnerabilities
1210

1311
### Documentation
1412

1513
### Internal Changes
1614

1715
### API Changes
18-
* Add `GOOGLE_ADS`, `TIKTOK_ADS`, `SALESFORCE_MARKETING_CLOUD`, `HUBSPOT`, `WORKDAY_HCM`, `GUIDEWIRE` and `ZENDESK` enum values for `com.databricks.sdk.service.pipelines.IngestionSourceType`.

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.68.0</version>
8+
<version>0.69.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.68.0";
39+
private static final String version = "0.69.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.68.0</version>
27+
<version>0.69.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.68.0</version>
40+
<version>0.69.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.68.0</version>
7+
<version>0.69.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.68.0</sdk.version>
7+
<sdk.version>0.69.0</sdk.version>
88
</properties>
99

1010
<groupId>com.databricks</groupId>

0 commit comments

Comments
 (0)