Skip to content
Open
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
6 changes: 6 additions & 0 deletions gxawsserverless/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,12 @@
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from lambda due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>com.amazonaws</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxazureserverless/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from azure-messaging-eventgrid due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxcloudstorage-awss3-v2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from s3 due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions gxcloudstorage-azureblob-latest/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
<groupId>io.netty</groupId>
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from sqs due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>com.azure</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxcosmosdb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,12 @@
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from azure-core-http-netty due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
6 changes: 6 additions & 0 deletions gxdynamodb/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from dynamodb due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>gxclassR</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions gxqueue-awssqs/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,12 @@
<artifactId>netty-codec-http</artifactId>
<version>${netty.version}</version>
</dependency>
<!-- overwrite from sqs due to transitive CVEs -->
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-codec-http2</artifactId>
<version>${netty.version}</version>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>apache-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<xmlsec.version>3.0.3</xmlsec.version>
<jose.version>10.4</jose.version>
<commons.lang3.version>3.18.0</commons.lang3.version>
<netty.version>4.1.129.Final</netty.version>
<netty.version>4.1.132.Final</netty.version>

</properties>

Expand Down
Loading