Skip to content

Updated dependencies #47

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 22, 2022
Merged
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
1 change: 1 addition & 0 deletions doc/changes/changelog.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

23 changes: 23 additions & 0 deletions doc/changes/changes_0.6.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Udf Debugging Java 0.6.7, released 2022-12-22

Code name: Dependency Upgrade

## Summary

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.

## Changes

* #46: Updated dependencies

## Dependency Updates

### Compile Dependency Updates

* Updated `com.exasol:bucketfs-java:2.4.1` to `2.6.0`
* Updated `org.slf4j:slf4j-api:2.0.4` to `2.0.6`

### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:6.3.1` to `6.4.1`
* Updated `org.mockito:mockito-junit-jupiter:4.9.0` to `4.10.0`
2 changes: 1 addition & 1 deletion pk_generated_parent.pom

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 9 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>udf-debugging-java</artifactId>
<version>0.6.6</version>
<version>0.6.7</version>
<name>udf-debugging-java</name>
<description>Utilities for debugging, profiling and code coverage measure for UDFs.</description>
<url>https://github.com/exasol/udf-debugging-java/</url>
Expand Down Expand Up @@ -74,12 +74,12 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>bucketfs-java</artifactId>
<version>2.4.1</version>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-test-setup-abstraction-java</artifactId>
<version>1.0.0</version>
<version>1.1.1</version>
<!-- This is not a compile-dependency since it would pull a lot of transitive dependencies (like the AWS
SDK) into project where it's absolutely not needed. That's possible since we only use the classes from this
dependencies in methods that are ment to be used with the exasol-test-setup-abstraction-java. -->
Expand All @@ -93,7 +93,7 @@
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.4</version>
<version>2.0.6</version>
</dependency>
<!-- test dependencies -->
<dependency>
Expand All @@ -111,7 +111,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>4.9.0</version>
<version>4.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -124,7 +124,7 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>6.3.1</version>
<version>6.4.1</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -181,9 +181,8 @@
<plugin>
<groupId>org.sonatype.ossindex.maven</groupId>
<artifactId>ossindex-maven-plugin</artifactId>
<!-- Vulnerability in io.netty:netty-handler:4.1.77.Final
https://ossindex.sonatype.org/vulnerability/sonatype-2020-0026
Excluded until a fixed version is available. exasol-test-setup-abstraction-java dependency -->
<!-- io.netty:netty-handler:
Not a vulnerability in netty but how it is configured by the client software.amazon.awssdk:netty-nio-client. -->
<configuration>
<excludeVulnerabilityIds>
<exclude>sonatype-2020-0026</exclude>
Expand All @@ -195,7 +194,7 @@
<parent>
<artifactId>udf-debugging-java-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>0.6.6</version>
<version>0.6.7</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>
1 change: 1 addition & 0 deletions release_config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
release-platforms:
- GitHub
- Maven
language: Java