Skip to content

Commit

Permalink
[Release] Release v0.31.1 (#345)
Browse files Browse the repository at this point in the history
### New Features and Improvements

* Remove proxy settings from databricks config and use commons http
client builder for connection manager
([#337](#337)).


### Bug Fixes

* Remove Path Parameters from JSON body
([#344](#344)).
* Stop pagination on empty next page token
([#343](#343)).
  • Loading branch information
tanmay-db committed Sep 16, 2024
1 parent 97089a6 commit 82412f9
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Version changelog

## [Release] Release v0.31.1

### New Features and Improvements

* Remove proxy settings from databricks config and use commons http client builder for connection manager ([#337](https://github.com/databricks/databricks-sdk-java/pull/337)).


### Bug Fixes

* Remove Path Parameters from JSON body ([#344](https://github.com/databricks/databricks-sdk-java/pull/344)).
* Stop pagination on empty next page token ([#343](https://github.com/databricks/databricks-sdk-java/pull/343)).




## [Release] Release v0.31.0

### New Features and Improvements
Expand Down
2 changes: 1 addition & 1 deletion databricks-sdk-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.databricks</groupId>
<artifactId>databricks-sdk-parent</artifactId>
<version>0.31.0</version>
<version>0.31.1</version>
</parent>
<artifactId>databricks-sdk-java</artifactId>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public String getValue() {
// TODO: check if reading from
// /META-INF/maven/com.databricks/databrics-sdk-java/pom.properties
// or getClass().getPackage().getImplementationVersion() is enough.
private static final String version = "0.31.0";
private static final String version = "0.31.1";

public static void withProduct(String product, String productVersion) {
UserAgent.product = product;
Expand Down
2 changes: 1 addition & 1 deletion examples/docs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-sdk-java</artifactId>
<version>0.31.0</version>
<version>0.31.1</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion examples/spring-boot-oauth-u2m-demo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<dependency>
<groupId>com.databricks</groupId>
<artifactId>databricks-sdk-java</artifactId>
<version>0.31.0</version>
<version>0.31.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.databricks</groupId>
<artifactId>databricks-sdk-parent</artifactId>
<version>0.31.0</version>
<version>0.31.1</version>
<packaging>pom</packaging>
<name>Databricks SDK for Java</name>
<description>The Databricks SDK for Java includes functionality to accelerate development with Java for
Expand Down
2 changes: 1 addition & 1 deletion shaded/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<sdk.version>0.31.0</sdk.version>
<sdk.version>0.31.1</sdk.version>
</properties>

<groupId>com.databricks</groupId>
Expand Down

0 comments on commit 82412f9

Please sign in to comment.