Skip to content

Commit 5985eec

Browse files
ckunkikaklakariada
andauthored
#74: Fixed vulnerability CVE-2024-25638 by updating dependency dnsja…va:dnsjava:jar:3.4.0 (#75)
* #74: Fixed vulnerability CVE-2024-25638 by updating dependency dnsjava:dnsjava:jar:3.4.0 Co-authored-by: Christoph Pirkl <[email protected]>
1 parent 064d364 commit 5985eec

File tree

6 files changed

+120
-82
lines changed

6 files changed

+120
-82
lines changed

.github/workflows/dependencies_update.yml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dependencies.md

+76-73
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changelog.md

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_2.0.10.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Parquet for Java 2.0.10, released 2024-07-29
2+
3+
Code name: Fix CVE-2024-25638 in dependency
4+
5+
## Summary
6+
7+
This release fixes vulnerability CVE-2024-25638 by updating transitive dependency `dnsjava:dnsjava:jar:3.4.0`.
8+
9+
## Security Issues
10+
11+
* #74: Fixed vulnerability CVE-2024-25638 by updating dependency `dnsjava:dnsjava:jar:3.4.0`.
12+
13+
## Dependency Updates
14+
15+
### Compile Dependency Updates
16+
17+
* Added `dnsjava:dnsjava:3.6.0`
18+
* Updated `org.apache.commons:commons-configuration2:2.10.1` to `2.11.0`
19+
* Updated `org.apache.parquet:parquet-hadoop:1.13.1` to `1.14.1`
20+
* Updated `org.scala-lang:scala-library:2.13.13` to `2.13.14`
21+
22+
### Test Dependency Updates
23+
24+
* Updated `org.junit.jupiter:junit-jupiter:5.10.2` to `5.10.3`
25+
26+
### Plugin Dependency Updates
27+
28+
* Updated `com.exasol:project-keeper-maven-plugin:4.3.2` to `4.3.3`

pk_generated_parent.pom

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

+13-7
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.exasol</groupId>
55
<artifactId>parquet-io-java</artifactId>
6-
<version>2.0.9</version>
6+
<version>2.0.10</version>
77
<name>Parquet for Java</name>
88
<description>This project provides a library that reads Parquet files into Java objects.</description>
99
<url>https://github.com/exasol/parquet-io-java/</url>
1010
<parent>
1111
<artifactId>parquet-io-java-generated-parent</artifactId>
1212
<groupId>com.exasol</groupId>
13-
<version>2.0.9</version>
13+
<version>2.0.10</version>
1414
<relativePath>pk_generated_parent.pom</relativePath>
1515
</parent>
1616
<properties>
17-
<scala.version>2.13.13</scala.version>
17+
<scala.version>2.13.14</scala.version>
1818
<scala.compat.version>2.13</scala.compat.version>
1919
<mockito.version>5.12.0</mockito.version>
2020
</properties>
2121
<dependencies>
2222
<dependency>
2323
<groupId>org.apache.parquet</groupId>
2424
<artifactId>parquet-hadoop</artifactId>
25-
<version>1.13.1</version>
25+
<version>1.14.1</version>
2626
</dependency>
2727
<!-- Update transitive dependency of org.apache.parquet:parquet-hadoop to fix CVE-2024-36114 -->
2828
<dependency>
@@ -145,7 +145,13 @@
145145
<dependency>
146146
<groupId>org.apache.commons</groupId>
147147
<artifactId>commons-configuration2</artifactId>
148-
<version>2.10.1</version>
148+
<version>2.11.0</version>
149+
</dependency>
150+
<!-- Upgrade transitive dependency of org.apache.hadoop:hadoop-client to fix CVE-2024-25638 -->
151+
<dependency>
152+
<groupId>dnsjava</groupId>
153+
<artifactId>dnsjava</artifactId>
154+
<version>3.6.0</version>
149155
</dependency>
150156
<dependency>
151157
<groupId>org.scala-lang</groupId>
@@ -161,7 +167,7 @@
161167
<dependency>
162168
<groupId>org.junit.jupiter</groupId>
163169
<artifactId>junit-jupiter</artifactId>
164-
<version>5.10.2</version>
170+
<version>5.10.3</version>
165171
<scope>test</scope>
166172
</dependency>
167173
<dependency>
@@ -287,7 +293,7 @@
287293
<plugin>
288294
<groupId>com.exasol</groupId>
289295
<artifactId>project-keeper-maven-plugin</artifactId>
290-
<version>4.3.2</version>
296+
<version>4.3.3</version>
291297
<executions>
292298
<execution>
293299
<goals>

0 commit comments

Comments
 (0)