Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

### Updated
- `DatabaseMetaData.getColumns(...)` with a `null` catalog now issues a single `SHOW COLUMNS IN ALL CATALOGS` statement (consistent with `getSchemas`/`getTables`) instead of enumerating every catalog and issuing a per-catalog `SHOW COLUMNS`. Older DBR versions that do not support the syntax transparently fall back to the previous enumerate-and-fan-out behavior.
- Bumped `jackson-databind` (and `jackson-core`/`jackson-annotations`) from 2.18.8 to 2.18.9 to resolve CVE-2026-54515, CVE-2026-59889, and GHSA-mhm7-754m-9p8w (`@JsonView`/`@JsonIgnoreProperties` deserialization bypasses).
- Bumped `lz4-java` from 1.10.1 to 1.11.1 to resolve CVE-2026-59949 (native XXHash JVM crash on invalid byte-array ranges).
- Bumped shaded `netty-buffer`/`netty-common` from 4.2.13.Final to 4.2.15.Final (Netty security release). Addresses issue #1584.
- Bumped Apache `httpcore5` from 5.3.6 to 5.4.3 and pinned the transitive `httpcore5-h2` (HTTP/2 HPACK decoder) to 5.4.3 to resolve CVE-2026-54399 (HTTP/1.1 parser DoS) and CVE-2026-54428 (HPACK header-list-size enforcement). `httpclient5` stays at 5.5.2, which is compatible with the httpcore5 5.4.x branch. Addresses issue #1584.

### Fixed
- Fixed `IdleConnectionEvictor` thread leak in long-running applications. Driver-side resources (HTTP client, background threads) are now always released when `Connection.close()` is called, even if statement cleanup or server-side session termination fails.
Expand Down
17 changes: 13 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,17 @@
<databricks-sdk.version>0.118.0</databricks-sdk.version>
<httpclient.version>4.5.14</httpclient.version>
<async-httpclient.version>5.5.2</async-httpclient.version>
<httpcore5.version>5.3.6</httpcore5.version>
<httpcore5.version>5.4.3</httpcore5.version>
<thrift.version>0.23.0</thrift.version>
<slf4j.version>2.0.13</slf4j.version>
<jackson.version>2.18.8</jackson.version>
<jackson.version>2.18.9</jackson.version>
<gson.version>2.13.2</gson.version>
<google.guava.version>33.0.0-jre</google.guava.version>
<google.findbugs.annotations.version>3.0.1</google.findbugs.annotations.version>
<immutables.value.version>2.9.2</immutables.value.version>
<lz4-compression.version>1.10.1</lz4-compression.version>
<lz4-compression.version>1.11.1</lz4-compression.version>
<annotation.version>1.3.5</annotation.version>
<netty.version>4.2.13.Final</netty.version>
<netty.version>4.2.15.Final</netty.version>
<grpc.version>1.71.0</grpc.version>
<jts-core.version>1.20.0</jts-core.version>
<resilience4j.version>1.7.0</resilience4j.version>
Expand Down Expand Up @@ -121,6 +121,15 @@
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<!-- Force safe version of httpcore5-h2 (HTTP/2 HPACK decoder) across all
modules, including the uber jar, to resolve CVE-2026-54428. It is a
transitive dep of httpclient5 (which otherwise drags in 5.3.6); pin it
to the same 5.4.3 as the directly-declared httpcore5. See issue #1584. -->
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5-h2</artifactId>
<version>${httpcore5.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
Loading