Skip to content

Commit 0effaa6

Browse files
authored
## Description Version bump for [CVE-2024-52338](https://nvd.nist.gov/vuln/detail/CVE-2024-52338) and [CVE-2025-48924](https://nvd.nist.gov/vuln/detail/CVE-2025-48924) ## Testing NA ## Additional Notes to the Reviewer NA
1 parent b87424b commit 0effaa6

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

NEXT_CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
### Updated
1515
- Column name support for JDBC ResultSet operations is now case-insensitive
16+
- Updated arrow to 17.0.0 to resolve CVE-2024-52338
17+
- Updated commons-lang3 to 3.18.0 to resolve CVE-2025-48924
1618
- Enhanced SSL certificate path validation error messages to provide actionable troubleshooting steps.
1719

1820
### Fixed

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@
4040
</repository>
4141
</distributionManagement>
4242
<properties>
43-
<arrow.version>13.0.0</arrow.version>
43+
<arrow.version>17.0.0</arrow.version>
44+
<commons-lang3.version>3.18.0</commons-lang3.version>
4445
<maven.compiler.source>11</maven.compiler.source>
4546
<maven.compiler.target>11</maven.compiler.target>
4647
<mockito.version>5.2.0</mockito.version>
@@ -69,6 +70,16 @@
6970
<netty.version>4.2.0.Final</netty.version>
7071
<grpc.version>1.71.0</grpc.version>
7172
</properties>
73+
<dependencyManagement>
74+
<!-- Force safe version of commons-lang3 https://nvd.nist.gov/vuln/detail/CVE-2025-48924 -->
75+
<dependencies>
76+
<dependency>
77+
<groupId>org.apache.commons</groupId>
78+
<artifactId>commons-lang3</artifactId>
79+
<version>${commons-lang3.version}</version>
80+
</dependency>
81+
</dependencies>
82+
</dependencyManagement>
7283
<dependencies>
7384
<dependency>
7485
<groupId>com.databricks</groupId>

0 commit comments

Comments
 (0)