Skip to content

Commit 5897ddd

Browse files
sgramponeBeta Bot
authored andcommitted
Cherry pick branch 'genexuslabs:fix/bump-netty-codec-http' into beta
1 parent 035cdc2 commit 5897ddd

File tree

7 files changed

+39
-2
lines changed

7 files changed

+39
-2
lines changed

gxawsserverless/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@
5454
<artifactId>lambda</artifactId>
5555
<version>${software.awssdk.version}</version>
5656
</dependency>
57+
<!-- overwrite from lambda due to transitive CVEs -->
58+
<dependency>
59+
<groupId>io.netty</groupId>
60+
<artifactId>netty-codec-http</artifactId>
61+
<version>4.1.129.Final</version>
62+
</dependency>
5763

5864
<dependency>
5965
<groupId>com.amazonaws</groupId>

gxazureserverless/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@
5050
<artifactId>azure-messaging-eventgrid</artifactId>
5151
<version>4.31.4</version>
5252
</dependency>
53+
<!-- overwrite from azure-messaging-eventgrid due to transitive CVEs -->
54+
<dependency>
55+
<groupId>io.netty</groupId>
56+
<artifactId>netty-codec-http</artifactId>
57+
<version>4.1.129.Final</version>
58+
</dependency>
5359

5460
<dependency>
5561
<groupId>org.mockito</groupId>

gxcloudstorage-awss3-v2/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
<artifactId>s3</artifactId>
3131
<version>${software.awssdk.version}</version>
3232
</dependency>
33+
<!-- overwrite from s3 due to transitive CVEs -->
34+
<dependency>
35+
<groupId>io.netty</groupId>
36+
<artifactId>netty-codec-http</artifactId>
37+
<version>4.1.129.Final</version>
38+
</dependency>
3339
<dependency>
3440
<groupId>org.apache.logging.log4j</groupId>
3541
<artifactId>log4j-1.2-api</artifactId>

gxcosmosdb/pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,18 @@
2828
<artifactId>azure-cosmos</artifactId>
2929
</dependency>
3030

31-
<!-- overrite from azure-cosmos due to transitive CVEs -->
31+
<!-- overwrite from azure-cosmos due to transitive CVEs -->
3232
<dependency>
3333
<groupId>com.azure</groupId>
3434
<artifactId>azure-core-http-netty</artifactId>
3535
<version>1.16.2</version>
3636
</dependency>
37+
<!-- overwrite from azure-core-http-netty due to transitive CVEs -->
38+
<dependency>
39+
<groupId>io.netty</groupId>
40+
<artifactId>netty-codec-http</artifactId>
41+
<version>4.1.129.Final</version>
42+
</dependency>
3743

3844
<dependency>
3945
<groupId>${project.groupId}</groupId>

gxdynamodb/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
<dependency>
2929
<groupId>software.amazon.awssdk</groupId>
3030
<artifactId>dynamodb</artifactId>
31+
<version>2.40.8</version>
32+
</dependency>
33+
<!-- overwrite from dynamodb due to transitive CVEs -->
34+
<dependency>
35+
<groupId>io.netty</groupId>
36+
<artifactId>netty-codec-http</artifactId>
37+
<version>4.1.129.Final</version>
3138
</dependency>
3239
<dependency>
3340
<groupId>${project.groupId}</groupId>

gxqueue-awssqs/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@
2828
<artifactId>sqs</artifactId>
2929
<version>${software.awssdk.version}</version>
3030
</dependency>
31+
<!-- overwrite from sqs due to transitive CVEs -->
32+
<dependency>
33+
<groupId>io.netty</groupId>
34+
<artifactId>netty-codec-http</artifactId>
35+
<version>4.1.129.Final</version>
36+
</dependency>
3137
<dependency>
3238
<groupId>software.amazon.awssdk</groupId>
3339
<artifactId>apache-client</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<commons.logging.version>1.2</commons.logging.version>
3030
<jackson.version>2.16.2</jackson.version>
3131
<junit.version>4.13.2</junit.version>
32-
<software.awssdk.version>2.35.6</software.awssdk.version>
32+
<software.awssdk.version>2.40.8</software.awssdk.version>
3333
<software.azure.cosmos.version>4.74.0</software.azure.cosmos.version>
3434
<log4j.version>2.21.1</log4j.version>
3535
<io.opentelemetry.version>1.56.0</io.opentelemetry.version>

0 commit comments

Comments
 (0)