Skip to content

Commit

Permalink
#48: Fixed CVE-2023-4043 in test dependency `org.eclipse.parsson:pars…
Browse files Browse the repository at this point in the history
…son` (#49)
  • Loading branch information
kaklakariada authored Nov 20, 2023
1 parent 07e75bc commit 9ebaedb
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 21 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/ci-build.yml

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

23 changes: 19 additions & 4 deletions .github/workflows/dependencies_check.yml

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

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

4 changes: 4 additions & 0 deletions .project-keeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ sources:
modules:
- maven_central
- integration_tests
build:
exasolDbVersions:
- "8.23.1"
- "7.1.24"
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.

28 changes: 28 additions & 0 deletions doc/changes/changes_1.6.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Matcher for SQL Result Sets 1.6.3, released 2023-11-20

Code name: Fix CVE-2023-4043 in test dependency `org.eclipse.parsson:parsson`

## Summary

This release fixes vulnerability CVE-2023-4043 in test dependency `org.eclipse.parsson:parsson`. The release also runs integration tests with Exasol 8.

## Security

* #48: Fixed CVE-2023-4043 in test dependency `org.eclipse.parsson:parsson`

## Dependency Updates

### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:6.6.2` to `6.6.3`
* Updated `org.junit.jupiter:junit-jupiter-engine:5.10.0` to `5.10.1`
* Updated `org.junit.jupiter:junit-jupiter-params:5.10.0` to `5.10.1`
* Updated `org.testcontainers:jdbc:1.19.1` to `1.19.2`
* Updated `org.testcontainers:junit-jupiter:1.19.1` to `1.19.2`

### Plugin Dependency Updates

* Updated `com.exasol:project-keeper-maven-plugin:2.9.14` to `2.9.16`
* Updated `org.apache.maven.plugins:maven-failsafe-plugin:3.1.2` to `3.2.2`
* Updated `org.apache.maven.plugins:maven-javadoc-plugin:3.6.0` to `3.6.2`
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.1.2` to `3.2.2`
17 changes: 11 additions & 6 deletions pk_generated_parent.pom

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

14 changes: 7 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<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>hamcrest-resultset-matcher</artifactId>
<version>1.6.2</version>
<version>1.6.3</version>
<name>Matcher for SQL Result Sets</name>
<description>This project provides hamcrest matcher that compares java.sql.ResultSet objects.</description>
<url>https://github.com/exasol/hamcrest-resultset-matcher/</url>
<properties>
<junit.version>5.10.0</junit.version>
<junit.version>5.10.1</junit.version>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -37,13 +37,13 @@
<dependency>
<groupId>com.exasol</groupId>
<artifactId>exasol-testcontainers</artifactId>
<version>6.6.2</version>
<version>6.6.3</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<version>1.19.1</version>
<version>1.19.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -54,7 +54,7 @@
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>jdbc</artifactId>
<version>1.19.1</version>
<version>1.19.2</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -63,7 +63,7 @@
<plugin>
<groupId>com.exasol</groupId>
<artifactId>project-keeper-maven-plugin</artifactId>
<version>2.9.14</version>
<version>2.9.16</version>
<executions>
<execution>
<goals>
Expand All @@ -77,7 +77,7 @@
<parent>
<artifactId>hamcrest-resultset-matcher-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>1.6.2</version>
<version>1.6.3</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>

0 comments on commit 9ebaedb

Please sign in to comment.