Skip to content

Commit db0a213

Browse files
authored
Bump netty-codec-http to version 4.1.129.Final (#1071)
* Update direct dependncies and overwrite nett-codec-http to version 4.1.129.Final * Add netty.version variable to pom parent
1 parent 72f2a13 commit db0a213

File tree

7 files changed

+40
-2
lines changed

7 files changed

+40
-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>${netty.version}</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>${netty.version}</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>${netty.version}</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>${netty.version}</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>${netty.version}</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>${netty.version}</version>
36+
</dependency>
3137
<dependency>
3238
<groupId>software.amazon.awssdk</groupId>
3339
<artifactId>apache-client</artifactId>

pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<poi.version>5.4.1</poi.version>
2525
<jackson.version>2.16.2</jackson.version>
2626
<junit.version>4.13.2</junit.version>
27-
<software.awssdk.version>2.35.6</software.awssdk.version>
27+
<software.awssdk.version>2.40.8</software.awssdk.version>
2828
<software.azure.cosmos.version>4.74.0</software.azure.cosmos.version>
2929
<log4j.version>2.21.1</log4j.version>
3030
<io.opentelemetry.version>1.56.0</io.opentelemetry.version>
@@ -34,6 +34,7 @@
3434
<xmlsec.version>3.0.3</xmlsec.version>
3535
<jose.version>10.4</jose.version>
3636
<commons.lang3.version>3.18.0</commons.lang3.version>
37+
<netty.version>4.1.129.Final</netty.version>
3738

3839
</properties>
3940

0 commit comments

Comments
 (0)