Skip to content

Commit b8c2de7

Browse files
authored
Updated dependencies (#47)
1 parent e9f2cc1 commit b8c2de7

File tree

5 files changed

+35
-11
lines changed

5 files changed

+35
-11
lines changed

doc/changes/changelog.md

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_0.6.7.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Udf Debugging Java 0.6.7, released 2022-12-22
2+
3+
Code name: Dependency Upgrade
4+
5+
## Summary
6+
7+
Updated dependencies after breaking changes in interface of bucketfs-java to re-enable compatibility with newer versions of bucketfs-java used by other libraries, e.g. exasol-testcontainers.
8+
9+
## Changes
10+
11+
* #46: Updated dependencies
12+
13+
## Dependency Updates
14+
15+
### Compile Dependency Updates
16+
17+
* Updated `com.exasol:bucketfs-java:2.4.1` to `2.6.0`
18+
* Updated `org.slf4j:slf4j-api:2.0.4` to `2.0.6`
19+
20+
### Test Dependency Updates
21+
22+
* Updated `com.exasol:exasol-testcontainers:6.3.1` to `6.4.1`
23+
* Updated `org.mockito:mockito-junit-jupiter:4.9.0` to `4.10.0`

pk_generated_parent.pom

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>udf-debugging-java</artifactId>
5-
<version>0.6.6</version>
5+
<version>0.6.7</version>
66
<name>udf-debugging-java</name>
77
<description>Utilities for debugging, profiling and code coverage measure for UDFs.</description>
88
<url>https://github.com/exasol/udf-debugging-java/</url>
@@ -74,12 +74,12 @@
7474
<dependency>
7575
<groupId>com.exasol</groupId>
7676
<artifactId>bucketfs-java</artifactId>
77-
<version>2.4.1</version>
77+
<version>2.6.0</version>
7878
</dependency>
7979
<dependency>
8080
<groupId>com.exasol</groupId>
8181
<artifactId>exasol-test-setup-abstraction-java</artifactId>
82-
<version>1.0.0</version>
82+
<version>1.1.1</version>
8383
<!-- This is not a compile-dependency since it would pull a lot of transitive dependencies (like the AWS
8484
SDK) into project where it's absolutely not needed. That's possible since we only use the classes from this
8585
dependencies in methods that are ment to be used with the exasol-test-setup-abstraction-java. -->
@@ -93,7 +93,7 @@
9393
<dependency>
9494
<groupId>org.slf4j</groupId>
9595
<artifactId>slf4j-api</artifactId>
96-
<version>2.0.4</version>
96+
<version>2.0.6</version>
9797
</dependency>
9898
<!-- test dependencies -->
9999
<dependency>
@@ -111,7 +111,7 @@
111111
<dependency>
112112
<groupId>org.mockito</groupId>
113113
<artifactId>mockito-junit-jupiter</artifactId>
114-
<version>4.9.0</version>
114+
<version>4.10.0</version>
115115
<scope>test</scope>
116116
</dependency>
117117
<dependency>
@@ -124,7 +124,7 @@
124124
<dependency>
125125
<groupId>com.exasol</groupId>
126126
<artifactId>exasol-testcontainers</artifactId>
127-
<version>6.3.1</version>
127+
<version>6.4.1</version>
128128
<scope>test</scope>
129129
</dependency>
130130
<dependency>
@@ -181,9 +181,8 @@
181181
<plugin>
182182
<groupId>org.sonatype.ossindex.maven</groupId>
183183
<artifactId>ossindex-maven-plugin</artifactId>
184-
<!-- Vulnerability in io.netty:netty-handler:4.1.77.Final
185-
https://ossindex.sonatype.org/vulnerability/sonatype-2020-0026
186-
Excluded until a fixed version is available. exasol-test-setup-abstraction-java dependency -->
184+
<!-- io.netty:netty-handler:
185+
Not a vulnerability in netty but how it is configured by the client software.amazon.awssdk:netty-nio-client. -->
187186
<configuration>
188187
<excludeVulnerabilityIds>
189188
<exclude>sonatype-2020-0026</exclude>
@@ -195,7 +194,7 @@
195194
<parent>
196195
<artifactId>udf-debugging-java-generated-parent</artifactId>
197196
<groupId>com.exasol</groupId>
198-
<version>0.6.6</version>
197+
<version>0.6.7</version>
199198
<relativePath>pk_generated_parent.pom</relativePath>
200199
</parent>
201200
</project>

release_config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
release-platforms:
22
- GitHub
33
- Maven
4+
language: Java

0 commit comments

Comments
 (0)