Skip to content

Commit

Permalink
release/3.0.0 (#20)
Browse files Browse the repository at this point in the history
* release/3.0.0
  • Loading branch information
jakobbraun authored Jun 27, 2022
1 parent f163233 commit ede3fc4
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 67 deletions.
1 change: 0 additions & 1 deletion doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Changes

* [3.0.1](changes_3.0.1.md)
* [3.0.0](changes_3.0.0.md)
* [2.0.1](changes_2.0.1.md)
* [2.0.0](changes_2.0.0.md)
Expand Down
47 changes: 33 additions & 14 deletions doc/changes/changes_3.0.0.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Virtual Schema for MySQL 3.0.0, released 2021-??-??
# Virtual Schema for MySQL 3.0.0, released 2022-06-27

Code name:
Code name: Dependency Updates

## Summary

In this release we updated dependencies and by that fixed the following security vulnerabilities: `CVE-2022-24823`, `CVE-2016-5003`, `CVE-2016-5002`, `CVE-2021-22569`, `CVE-2021-43797`, `CVE-2022-21363`, `sonatype-2012-0050`, `CVE-2016-5004`, `CVE-2021-37136`, `CVE-2021-37137`, `sonatype-2021-0789`.

## Refactoring

Expand All @@ -11,23 +15,38 @@ Code name:

### Compile Dependency Updates

* Updated `com.exasol:error-reporting-java:0.4.0` to `0.4.1`
* Updated `com.exasol:virtual-schema-common-jdbc:9.0.3` to `9.0.4`
* Removed `com.exasol:error-reporting-java:0.4.0`
* Updated `com.exasol:virtual-schema-common-jdbc:9.0.3` to `9.0.5`

### Test Dependency Updates

* Updated `com.exasol:exasol-testcontainers:4.0.0` to `5.1.1`
* Updated `com.exasol:exasol-testcontainers:4.0.0` to `6.1.1`
* Updated `com.exasol:hamcrest-resultset-matcher:1.4.1` to `1.5.1`
* Added `com.exasol:udf-debugging-java:0.4.1`
* Updated `com.exasol:virtual-schema-common-jdbc:9.0.3` to `9.0.4`
* Added `com.exasol:virtual-schema-shared-integration-tests:2.1.0`
* Updated `mysql:mysql-connector-java:8.0.26` to `8.0.27`
* Updated `com.exasol:test-db-builder-java:3.2.1` to `3.3.2`
* Added `com.exasol:udf-debugging-java:0.6.2`
* Updated `com.exasol:virtual-schema-common-jdbc:9.0.3` to `9.0.5`
* Added `com.exasol:virtual-schema-shared-integration-tests:2.2.0`
* Updated `mysql:mysql-connector-java:8.0.26` to `8.0.29`
* Added `org.jacoco:org.jacoco.agent:0.8.8`
* Updated `org.junit.jupiter:junit-jupiter:5.7.2` to `5.8.2`
* Updated `org.mockito:mockito-junit-jupiter:3.11.2` to `4.1.0`
* Updated `org.testcontainers:junit-jupiter:1.16.0` to `1.16.2`
* Updated `org.testcontainers:mysql:1.16.0` to `1.16.2`
* Updated `org.mockito:mockito-junit-jupiter:3.11.2` to `4.6.1`
* Updated `org.testcontainers:junit-jupiter:1.16.0` to `1.17.2`
* Updated `org.testcontainers:mysql:1.16.0` to `1.17.2`

### Plugin Dependency Updates

* Updated `com.exasol:error-code-crawler-maven-plugin:0.5.1` to `0.7.1`
* Updated `com.exasol:project-keeper-maven-plugin:0.10.0` to `1.3.4`
* Updated `com.exasol:artifact-reference-checker-maven-plugin:0.3.1` to `0.4.0`
* Updated `com.exasol:error-code-crawler-maven-plugin:0.5.1` to `1.1.1`
* Updated `com.exasol:project-keeper-maven-plugin:0.10.0` to `2.4.6`
* Updated `io.github.zlika:reproducible-build-maven-plugin:0.13` to `0.15`
* Updated `org.apache.maven.plugins:maven-compiler-plugin:3.8.1` to `3.10.1`
* Updated `org.apache.maven.plugins:maven-dependency-plugin:2.8` to `3.3.0`
* Updated `org.apache.maven.plugins:maven-enforcer-plugin:3.0.0-M3` to `3.0.0`
* Updated `org.apache.maven.plugins:maven-failsafe-plugin:3.0.0-M3` to `3.0.0-M5`
* Updated `org.apache.maven.plugins:maven-jar-plugin:3.2.0` to `3.2.2`
* Updated `org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M3` to `3.0.0-M5`
* Added `org.codehaus.mojo:flatten-maven-plugin:1.2.7`
* Updated `org.codehaus.mojo:versions-maven-plugin:2.8.1` to `2.11.0`
* Updated `org.jacoco:jacoco-maven-plugin:0.8.6` to `0.8.8`
* Added `org.sonarsource.scanner.maven:sonar-maven-plugin:3.9.1.2184`
* Updated `org.sonatype.ossindex.maven:ossindex-maven-plugin:3.1.0` to `3.2.0`
47 changes: 0 additions & 47 deletions doc/changes/changes_3.0.1.md

This file was deleted.

2 changes: 1 addition & 1 deletion doc/user_guide/mysql_user_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The SQL statement below creates the adapter script, defines the Java class that
```sql
CREATE OR REPLACE JAVA ADAPTER SCRIPT SCHEMA_FOR_VS_SCRIPT.ADAPTER_SCRIPT_MYSQL AS
%scriptclass com.exasol.adapter.RequestDispatcher;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-9.0.5-mysql-3.0.1.jar;
%jar /buckets/<BFS service>/<bucket>/virtual-schema-dist-9.0.5-mysql-3.0.0.jar;
%jar /buckets/<BFS service>/<bucket>/mysql-connector-java-<version>.jar;
/
;
Expand Down
2 changes: 1 addition & 1 deletion pk_generated_parent.pom
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>mysql-virtual-schema-generated-parent</artifactId>
<version>3.0.1</version>
<version>3.0.0</version>
<packaging>pom</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.exasol</groupId>
<artifactId>mysql-virtual-schema</artifactId>
<version>3.0.1</version>
<version>3.0.0</version>
<name>Virtual Schema for MySQL</name>
<description>Virtual Schema for MySQL</description>
<distributionManagement>
Expand Down Expand Up @@ -198,7 +198,7 @@
<parent>
<artifactId>mysql-virtual-schema-generated-parent</artifactId>
<groupId>com.exasol</groupId>
<version>3.0.1</version>
<version>3.0.0</version>
<relativePath>pk_generated_parent.pom</relativePath>
</parent>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.nio.file.Path;

public final class IntegrationTestConstants {
public static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-9.0.5-mysql-3.0.1.jar";
public static final String VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION = "virtual-schema-dist-9.0.5-mysql-3.0.0.jar";
public static final String EXASOL_DOCKER_IMAGE_REFERENCE = "7.0.7";
public static final String MYSQL_DOCKER_IMAGE_REFERENCE = "mysql:8.0.23";
public static final Path PATH_TO_VIRTUAL_SCHEMAS_JAR = Path.of("target", VIRTUAL_SCHEMAS_JAR_NAME_AND_VERSION);
Expand Down

0 comments on commit ede3fc4

Please sign in to comment.