Skip to content

Commit c4e96b2

Browse files
committed
(cherry picked from commit e6589b3)
1 parent 58a59f2 commit c4e96b2

File tree

8 files changed

+43
-1
lines changed

8 files changed

+43
-1
lines changed

gxawsserverless/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@
6060
<artifactId>netty-codec-http</artifactId>
6161
<version>${netty.version}</version>
6262
</dependency>
63+
<!-- overwrite from lambda due to transitive CVEs -->
64+
<dependency>
65+
<groupId>io.netty</groupId>
66+
<artifactId>netty-codec-http2</artifactId>
67+
<version>${netty.version}</version>
68+
</dependency>
6369

6470
<dependency>
6571
<groupId>com.amazonaws</groupId>

gxazureserverless/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@
6262
<artifactId>netty-codec-http</artifactId>
6363
<version>${netty.version}</version>
6464
</dependency>
65+
<!-- overwrite from azure-messaging-eventgrid due to transitive CVEs -->
66+
<dependency>
67+
<groupId>io.netty</groupId>
68+
<artifactId>netty-codec-http2</artifactId>
69+
<version>${netty.version}</version>
70+
</dependency>
6571

6672
<dependency>
6773
<groupId>org.mockito</groupId>

gxcloudstorage-awss3-v2/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636
<artifactId>netty-codec-http</artifactId>
3737
<version>${netty.version}</version>
3838
</dependency>
39+
<!-- overwrite from s3 due to transitive CVEs -->
40+
<dependency>
41+
<groupId>io.netty</groupId>
42+
<artifactId>netty-codec-http2</artifactId>
43+
<version>${netty.version}</version>
44+
</dependency>
3945
<dependency>
4046
<groupId>org.apache.logging.log4j</groupId>
4147
<artifactId>log4j-1.2-api</artifactId>

gxcloudstorage-azureblob-latest/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@
3535
<groupId>io.netty</groupId>
3636
<artifactId>netty-codec-http</artifactId>
3737
<version>${netty.version}</version>
38+
</dependency>
39+
<!-- overwrite from sqs due to transitive CVEs -->
40+
<dependency>
41+
<groupId>io.netty</groupId>
42+
<artifactId>netty-codec-http2</artifactId>
43+
<version>${netty.version}</version>
3844
</dependency>
3945
<dependency>
4046
<groupId>com.azure</groupId>

gxcosmosdb/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@
4646
<artifactId>netty-codec-http</artifactId>
4747
<version>${netty.version}</version>
4848
</dependency>
49+
<!-- overwrite from azure-core-http-netty due to transitive CVEs -->
50+
<dependency>
51+
<groupId>io.netty</groupId>
52+
<artifactId>netty-codec-http2</artifactId>
53+
<version>${netty.version}</version>
54+
</dependency>
4955

5056
<dependency>
5157
<groupId>${project.groupId}</groupId>

gxdynamodb/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636
<artifactId>netty-codec-http</artifactId>
3737
<version>${netty.version}</version>
3838
</dependency>
39+
<!-- overwrite from dynamodb due to transitive CVEs -->
40+
<dependency>
41+
<groupId>io.netty</groupId>
42+
<artifactId>netty-codec-http2</artifactId>
43+
<version>${netty.version}</version>
44+
</dependency>
3945
<dependency>
4046
<groupId>${project.groupId}</groupId>
4147
<artifactId>gxclassR</artifactId>

gxqueue-awssqs/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@
3434
<artifactId>netty-codec-http</artifactId>
3535
<version>${netty.version}</version>
3636
</dependency>
37+
<!-- overwrite from sqs due to transitive CVEs -->
38+
<dependency>
39+
<groupId>io.netty</groupId>
40+
<artifactId>netty-codec-http2</artifactId>
41+
<version>${netty.version}</version>
42+
</dependency>
3743
<dependency>
3844
<groupId>software.amazon.awssdk</groupId>
3945
<artifactId>apache-client</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<xmlsec.version>3.0.3</xmlsec.version>
4040
<jose.version>10.4</jose.version>
4141
<commons.lang3.version>3.18.0</commons.lang3.version>
42-
<netty.version>4.1.129.Final</netty.version>
42+
<netty.version>4.1.132.Final</netty.version>
4343
</properties>
4444

4545
<organization>

0 commit comments

Comments
 (0)