Skip to content

Commit 3d4dc3c

Browse files
authored
Cut a new release 0.9.8-oss (#607)
1 parent e8ceb7f commit 3d4dc3c

File tree

6 files changed

+26
-6
lines changed

6 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,24 @@
11
# Version Changelog
2+
3+
## [v0.9.8-oss] - 2024-12-13
4+
5+
### Added
6+
* Run queries in async mode in the thrift client.
7+
* Added GET and DELETE operations for the DBFS client, enabling full UC Volume operations (PUT, GET, DELETE) without spinning up DB compute.
8+
9+
### Updated
10+
* Do not send repeated DBSQL version queries.
11+
* Skip SEA compatibility check if null or empty DBSQL version is returned by the workspace.
12+
* Skips SEA check when DBSQL version string is blank space.
13+
* Updated SDK version to resolve CVEs.
14+
15+
### Fixed
16+
* Eliminated the statement execution thread pool.
17+
* Fixed UC volume GET operation.
18+
* Fixed async execution in SEA mode.
19+
* Fixed and updated the SDK version to resolve CVEs.
20+
---
21+
222
## [v0.9.7-oss] - 2024-11-20
323
### Added
424
* Added GCP OAuth support: Use Google ID (service account email) with a custom JWT or Google Credentials.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can install Databricks JDBC driver by adding the following to your `pom.xml`
1212
<dependency>
1313
<groupId>com.databricks</groupId>
1414
<artifactId>databricks-jdbc</artifactId>
15-
<version>0.9.7-oss</version>
15+
<version>0.9.8-oss</version>
1616
</dependency>
1717
```
1818
Databricks JDBC is compatible with Java 11 and higher. CI testing runs on Java versions 11, 17, and 21.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<groupId>com.databricks</groupId>
66
<artifactId>databricks-jdbc</artifactId>
77
<!-- This value may be modified by a release script to reflect the current version of the driver. -->
8-
<version>0.9.7-oss</version>
8+
<version>0.9.8-oss</version>
99
<packaging>jar</packaging>
1010
<name>Databricks JDBC Driver</name>
1111
<description>Databricks JDBC Driver.</description>

src/main/java/com/databricks/jdbc/common/util/DriverUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class DriverUtil {
2525

2626
private static final JdbcLogger LOGGER = JdbcLoggerFactory.getLogger(DriverUtil.class);
2727
public static final String DBSQL_VERSION_SQL = "SELECT current_version().dbsql_version";
28-
private static final String VERSION = "0.9.7-oss";
28+
private static final String VERSION = "0.9.8-oss";
2929
private static final int DBSQL_MIN_MAJOR_VERSION_FOR_SEA_SUPPORT = 2024;
3030
private static final int DBSQL_MIN_MINOR_VERSION_FOR_SEA_SUPPORT = 30;
3131

src/test/java/com/databricks/jdbc/api/impl/DatabricksDatabaseMetaDataTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ public void testGetDriverName() throws SQLException {
782782
@Test
783783
public void testGetDriverVersion() throws SQLException {
784784
String result = metaData.getDriverVersion();
785-
assertEquals("0.9.7-oss", result);
785+
assertEquals("0.9.8-oss", result);
786786
}
787787

788788
@Test

src/test/java/com/databricks/jdbc/common/util/UserAgentManagerTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ void testUserAgentSetsClientCorrectly() throws DatabricksSQLException {
1919
UserAgentManager.setUserAgent(connectionContext);
2020
String userAgent = getUserAgentString();
2121
System.out.println(getUserAgentString());
22-
assertTrue(userAgent.contains("DatabricksJDBCDriverOSS/0.9.7-oss"));
22+
assertTrue(userAgent.contains("DatabricksJDBCDriverOSS/0.9.8-oss"));
2323
assertTrue(userAgent.contains(" Java/THttpClient-HC-MyApp"));
2424
assertTrue(userAgent.contains(" databricks-jdbc-http "));
2525
assertFalse(userAgent.contains("databricks-sdk-java"));
@@ -29,7 +29,7 @@ void testUserAgentSetsClientCorrectly() throws DatabricksSQLException {
2929
DatabricksConnectionContextFactory.create(WAREHOUSE_JDBC_URL, new Properties());
3030
UserAgentManager.setUserAgent(connectionContext);
3131
userAgent = getUserAgentString();
32-
assertTrue(userAgent.contains("DatabricksJDBCDriverOSS/0.9.7-oss"));
32+
assertTrue(userAgent.contains("DatabricksJDBCDriverOSS/0.9.8-oss"));
3333
assertTrue(userAgent.contains(" Java/SQLExecHttpClient-HC-MyApp"));
3434
assertTrue(userAgent.contains(" databricks-jdbc-http "));
3535
assertFalse(userAgent.contains("databricks-sdk-java"));

0 commit comments

Comments
 (0)