Skip to content

Commit 9e983ff

Browse files
authored
[Release] v0.27.1 (#310)
## 0.27.1 ### New Features and Improvements * Specify proxy auth explicitly when using system proxy ([#300](#300)). * Accept any `HttpRequest` instead of `HttpUriRequest` in `CommonHttpClient` ([#305](#305)). * Add credential provider for Azure Github OIDC ([#307](#307)). ### Internal Changes * Add Release tag and Workflow Fix ([#309](#309)). * Improve Changelog by grouping changes ([#308](#308)). * Test parsing of error messages with `int` error codes ([#303](#303)). * Run AccountClientIT test only for aws-prod-ucacct ([#311](#311)).
1 parent 043c306 commit 9e983ff

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed

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+
## 0.27.1
4+
5+
### New Features and Improvements
6+
* Specify proxy auth explicitly when using system proxy ([#300](https://github.com/databricks/databricks-sdk-java/pull/300)).
7+
* Accept any `HttpRequest` instead of `HttpUriRequest` in `CommonHttpClient` ([#305](https://github.com/databricks/databricks-sdk-java/pull/305)).
8+
* Add credential provider for Azure Github OIDC ([#307](https://github.com/databricks/databricks-sdk-java/pull/307)).
9+
10+
### Internal Changes
11+
* Add Release tag and Workflow Fix ([#309](https://github.com/databricks/databricks-sdk-java/pull/309)).
12+
* Improve Changelog by grouping changes ([#308](https://github.com/databricks/databricks-sdk-java/pull/308)).
13+
* Test parsing of error messages with `int` error codes ([#303](https://github.com/databricks/databricks-sdk-java/pull/303)).
14+
* Run AccountClientIT test only for aws-prod-ucacct ([#311](https://github.com/databricks/databricks-sdk-java/pull/311)).
15+
16+
317
## 0.27.0
418

519
### Improvements

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.27.0</version>
8+
<version>0.27.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
@@ -32,7 +32,7 @@ public String getValue() {
3232
// TODO: check if reading from
3333
// /META-INF/maven/com.databricks/databrics-sdk-java/pom.properties
3434
// or getClass().getPackage().getImplementationVersion() is enough.
35-
private static final String version = "0.27.0";
35+
private static final String version = "0.27.1";
3636

3737
public static void withProduct(String product, String productVersion) {
3838
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.27.0</version>
27+
<version>0.27.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.27.0</version>
40+
<version>0.27.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.27.0</version>
7+
<version>0.27.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

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.27.0</sdk.version>
7+
<sdk.version>0.27.1</sdk.version>
88
</properties>
99

1010
<groupId>com.databricks</groupId>

0 commit comments

Comments
 (0)