Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #354 from cmgrote/release-3.8
Browse files Browse the repository at this point in the history
Bumps to release version
  • Loading branch information
cmgrote authored Apr 30, 2022
2 parents ccdfe21 + 91c6fe7 commit 3c116f4
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 6 deletions.
4 changes: 2 additions & 2 deletions connector/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<parent>
<artifactId>egeria-connector-xtdb-module</artifactId>
<groupId>org.odpi.egeria</groupId>
<version>3.8-SNAPSHOT</version>
<version>3.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>egeria-connector-xtdb</artifactId>
<version>3.8-SNAPSHOT</version>
<version>3.8</version>

<name>Egeria Connector for XTDB</name>
<description>
Expand Down
6 changes: 3 additions & 3 deletions migrator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<parent>
<artifactId>egeria-connector-xtdb-module</artifactId>
<groupId>org.odpi.egeria</groupId>
<version>3.8-SNAPSHOT</version>
<version>3.8</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>egeria-connector-xtdb-migrator</artifactId>
<version>3.8-SNAPSHOT</version>
<version>3.8</version>

<name>Migration utilities for XTDB Connector</name>
<description>
Expand All @@ -25,7 +25,7 @@
<dependency>
<groupId>org.odpi.egeria</groupId>
<artifactId>egeria-connector-xtdb</artifactId>
<version>3.8-SNAPSHOT</version>
<version>3.8</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down
56 changes: 55 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<groupId>org.odpi.egeria</groupId>
<artifactId>egeria-connector-xtdb-module</artifactId>
<packaging>pom</packaging>
<version>3.8-SNAPSHOT</version>
<version>3.8</version>
<modules>
<module>connector</module>
<module>migrator</module>
Expand Down Expand Up @@ -76,7 +76,12 @@
<slf4j.version>1.7.36</slf4j.version>
<logback.version>1.2.11</logback.version>
<testng.version>7.5</testng.version>
<!-- Dependent libraries -->
<httpclient.version>4.5.13</httpclient.version>
<netty.version>4.1.76.Final</netty.version>
<kafka.version>2.6.3</kafka.version>
<jacksondataformat.version>2.11.4</jacksondataformat.version>
<commonscodec.version>1.15</commonscodec.version>
<!-- Platform encoding -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Expand Down Expand Up @@ -159,6 +164,20 @@
<version>${xtdb.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid CVE-2021-38153 -->
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
<version>${kafka.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid CVE-2020-28491 -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>${jacksondataformat.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.xtdb</groupId>
<artifactId>xtdb-jdbc</artifactId>
Expand All @@ -178,6 +197,41 @@
<version>${httpclient.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid CVE-2021-21295 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid CVE-2021-43797 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid CVE-2021-37136, CVE-2021-37137 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
<version>${netty.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid CVE-2020-0026 -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>${netty.version}</version>
<scope>runtime</scope>
</dependency>
<!-- Following dependency is to ensure we use updated version of dependent library to avoid sonatype-2012-0050 -->
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>${commonscodec.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.xtdb</groupId>
<artifactId>xtdb-metrics</artifactId>
Expand Down

0 comments on commit 3c116f4

Please sign in to comment.