Skip to content

Commit

Permalink
Bump java driver from 4.14.1 to 4.17.0
Browse files Browse the repository at this point in the history
Netty was stepped as well to make sure we follow the same version as
driver.
  • Loading branch information
masokol committed Jul 27, 2023
1 parent c77f048 commit 9d0a74c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Version 5.0.0

* Bump java driver from 4.14.1 to 4.17.0
* Bump guava from 31.1 to 32.0.1 (CVE-2023-2976)
* Fix shebang in ecctool - Issue #504
* Bump springboot from 2.7.5 to 2.7.12 - Issue #500
Expand Down
5 changes: 5 additions & 0 deletions karaf-feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@
<artifactId>netty-transport</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
Expand Down
1 change: 1 addition & 0 deletions karaf-feature/src/main/feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<bundle>mvn:com.ericsson.bss.cassandra.ecchronos/core.osgi/${project.version}</bundle>
<bundle>mvn:io.netty/netty-common/${io.netty.version}</bundle>
<bundle>mvn:io.netty/netty-transport/${io.netty.version}</bundle>
<bundle>mvn:io.netty/netty-transport-native-unix-common/${io.netty.version}</bundle>
<bundle>mvn:io.netty/netty-buffer/${io.netty.version}</bundle>
<bundle>mvn:io.netty/netty-handler/${io.netty.version}</bundle>
<bundle>mvn:io.netty/netty-codec/${io.netty.version}</bundle>
Expand Down
10 changes: 8 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@
<bundle.namespace>${project.groupId}.${project.artifactId}</bundle.namespace>

<!-- Dependency versions -->
<io.netty.version>4.1.69.Final</io.netty.version>
<io.netty.version>4.1.94.Final</io.netty.version>
<io.micrometer.version>1.9.2</io.micrometer.version>
<io.dropwizard.metrics.version>4.2.10</io.dropwizard.metrics.version>
<cassandra.driver.core.version>4.14.1</cassandra.driver.core.version>
<cassandra.driver.core.version>4.17.0</cassandra.driver.core.version>
<guava.version>32.0.1-jre</guava.version>
<failureaccess.version>1.0.1</failureaccess.version>
<cassandra.driver.protocol.version>1.5.0</cassandra.driver.protocol.version>
Expand Down Expand Up @@ -149,6 +149,12 @@
<version>${io.netty.version}</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
<version>${io.netty.version}</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
Expand Down

0 comments on commit 9d0a74c

Please sign in to comment.