Skip to content

Commit e9e6185

Browse files
committed
update versions
1 parent f59752d commit e9e6185

File tree

2 files changed

+37
-15
lines changed

2 files changed

+37
-15
lines changed

doc/changes/changes_0.6.14.md

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,37 @@
1-
# Udf Debugging Java 0.6.14, released 2024-??-??
1+
# Udf Debugging Java 0.6.14, released 2024-11-18
22

3-
Code name:
3+
Code name: Fix CVE-2024-47535: io.netty:netty-common:jar:4.1.108.Final:runtime
44

55
## Summary
66

7-
## Features
7+
This release fixes CVE-2024-47535 in `io.netty:netty-common:jar:4.1.108.Final:runtime`.
88

9-
* ISSUE_NUMBER: description
9+
## Security
10+
11+
* #67: Fixed CVE-2024-47535 in `io.netty:netty-common:jar:4.1.108.Final:runtime`
1012

1113
## Dependency Updates
1214

15+
### Compile Dependency Updates
16+
17+
* Updated `com.exasol:bucketfs-java:3.1.2` to `3.2.0`
18+
* Updated `org.apache.commons:commons-compress:1.26.1` to `1.27.1`
19+
* Updated `org.slf4j:slf4j-jdk14:2.0.12` to `2.0.16`
20+
21+
### Runtime Dependency Updates
22+
23+
* Updated `org.eclipse.parsson:parsson:1.1.6` to `1.1.7`
24+
25+
### Test Dependency Updates
26+
27+
* Updated `com.exasol:exasol-testcontainers:7.0.1` to `7.1.1`
28+
* Updated `com.exasol:test-db-builder-java:3.5.4` to `3.6.0`
29+
* Updated `org.itsallcode:junit5-system-extensions:1.2.0` to `1.2.2`
30+
* Updated `org.junit.jupiter:junit-jupiter-engine:5.10.2` to `5.11.3`
31+
* Updated `org.junit.jupiter:junit-jupiter-params:5.10.2` to `5.11.3`
32+
* Updated `org.mockito:mockito-junit-jupiter:5.11.0` to `5.14.2`
33+
* Updated `org.testcontainers:junit-jupiter:1.19.7` to `1.20.3`
34+
1335
### Plugin Dependency Updates
1436

1537
* Updated `com.exasol:error-code-crawler-maven-plugin:2.0.2` to `2.0.3`

pom.xml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<description>Utilities for debugging, profiling and code coverage measure for UDFs.</description>
88
<url>https://github.com/exasol/udf-debugging-java/</url>
99
<properties>
10-
<junit.version>5.10.2</junit.version>
10+
<junit.version>5.11.3</junit.version>
1111
<jacoco.version>0.8.12</jacoco.version>
1212
</properties>
1313
<dependencies>
@@ -19,7 +19,7 @@
1919
<dependency>
2020
<groupId>org.eclipse.parsson</groupId>
2121
<artifactId>parsson</artifactId>
22-
<version>1.1.6</version>
22+
<version>1.1.7</version>
2323
<scope>runtime</scope>
2424
</dependency>
2525
<dependency>
@@ -42,12 +42,12 @@
4242
<dependency>
4343
<groupId>com.exasol</groupId>
4444
<artifactId>bucketfs-java</artifactId>
45-
<version>3.1.2</version>
45+
<version>3.2.0</version>
4646
</dependency>
4747
<dependency>
4848
<groupId>com.exasol</groupId>
4949
<artifactId>exasol-test-setup-abstraction-java</artifactId>
50-
<version>2.1.2</version>
50+
<version>2.1.6</version>
5151
<!-- This is not a compile-dependency since it would pull a lot of transitive
5252
dependencies (like the AWS SDK) into project where it's absolutely not
5353
needed. That's possible since we only use the classes from this dependencies
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.apache.commons</groupId>
5959
<artifactId>commons-compress</artifactId>
60-
<version>1.26.1</version>
60+
<version>1.27.1</version>
6161
</dependency>
6262
<!-- test dependencies -->
6363
<dependency>
@@ -75,7 +75,7 @@
7575
<dependency>
7676
<groupId>org.mockito</groupId>
7777
<artifactId>mockito-junit-jupiter</artifactId>
78-
<version>5.11.0</version>
78+
<version>5.14.2</version>
7979
<scope>test</scope>
8080
</dependency>
8181
<dependency>
@@ -88,32 +88,32 @@
8888
<dependency>
8989
<groupId>com.exasol</groupId>
9090
<artifactId>exasol-testcontainers</artifactId>
91-
<version>7.0.1</version>
91+
<version>7.1.1</version>
9292
<scope>test</scope>
9393
</dependency>
9494
<dependency>
9595
<groupId>org.testcontainers</groupId>
9696
<artifactId>junit-jupiter</artifactId>
97-
<version>1.19.7</version>
97+
<version>1.20.3</version>
9898
<scope>test</scope>
9999
</dependency>
100100
<dependency>
101101
<groupId>com.exasol</groupId>
102102
<artifactId>test-db-builder-java</artifactId>
103-
<version>3.5.4</version>
103+
<version>3.6.0</version>
104104
<scope>test</scope>
105105
</dependency>
106106
<dependency>
107107
<groupId>org.itsallcode</groupId>
108108
<artifactId>junit5-system-extensions</artifactId>
109-
<version>1.2.0</version>
109+
<version>1.2.2</version>
110110
<scope>test</scope>
111111
</dependency>
112112
<dependency>
113113
<!-- Enable log output for integration tests -->
114114
<groupId>org.slf4j</groupId>
115115
<artifactId>slf4j-jdk14</artifactId>
116-
<version>2.0.12</version>
116+
<version>2.0.16</version>
117117
</dependency>
118118
</dependencies>
119119
<build>

0 commit comments

Comments
 (0)