Skip to content

Commit b1e0f83

Browse files
committed
Bump netty-codec-http to version 4.1.129.Final
1 parent ad2773c commit b1e0f83

8 files changed

Lines changed: 47 additions & 2 deletions

File tree

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: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,13 @@
4848
<dependency>
4949
<groupId>com.azure</groupId>
5050
<artifactId>azure-messaging-eventgrid</artifactId>
51-
<version>4.22.3</version>
51+
<version>4.31.4</version>
52+
</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>
5258
</dependency>
5359

5460
<dependency>

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>software.amazon.awssdk</groupId>
3541
<artifactId>sts</artifactId>

gxcloudstorage-azureblob-latest/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@
3030
<artifactId>azure-storage-blob</artifactId>
3131
<version>12.32.0</version>
3232
</dependency>
33+
<!-- overwrite from azure-storage-blob 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>com.azure</groupId>
3541
<artifactId>azure-identity</artifactId>

gxcosmosdb/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333
<artifactId>azure-core-http-netty</artifactId>
3434
<version>1.16.2</version>
3535
</dependency>
36+
<!-- overwrite from azure-core-http-netty due to transitive CVEs -->
37+
<dependency>
38+
<groupId>io.netty</groupId>
39+
<artifactId>netty-codec-http</artifactId>
40+
<version>${netty.version}</version>
41+
</dependency>
3642

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

gxdynamodb/pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,15 @@
2828
<dependency>
2929
<groupId>software.amazon.awssdk</groupId>
3030
<artifactId>dynamodb</artifactId>
31+
<version>2.40.8</version>
3132
</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>
38+
</dependency>
39+
3240
<dependency>
3341
<groupId>${project.groupId}</groupId>
3442
<artifactId>gxclassR</artifactId>

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.14.1</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.25.3</log4j.version>
3030
<io.opentelemetry.version>1.56.0</io.opentelemetry.version>
@@ -33,6 +33,7 @@
3333
<commons-codec.version>1.15</commons-codec.version>
3434
<xmlsec.version>3.0.3</xmlsec.version>
3535
<jose.version>10.4</jose.version>
36+
<netty.version>4.1.129.Final</netty.version>
3637

3738
</properties>
3839

0 commit comments

Comments
 (0)