Skip to content

Commit 92e5efb

Browse files
authored
In all modules... Update netty-codec-smtp to 4.1.128.Final (#647)
Signed-off-by: Chris Bono <[email protected]>
1 parent 2db8e07 commit 92e5efb

File tree

1 file changed

+23
-0
lines changed
  • applications/sink/websocket-sink

1 file changed

+23
-0
lines changed

applications/sink/websocket-sink/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,32 @@
1919
<netty-codec-smtp.version>4.1.128.Final</netty-codec-smtp.version>
2020
</properties>
2121
<dependencies>
22+
<!-- Due to CVE-2025-59419 we need a netty-all w/ an updated netty-code-smtp -->
2223
<dependency>
2324
<groupId>org.springframework.cloud.fn</groupId>
2425
<artifactId>spring-websocket-consumer</artifactId>
26+
<exclusions>
27+
<exclusion>
28+
<groupId>io.netty</groupId>
29+
<artifactId>netty-all</artifactId>
30+
</exclusion>
31+
</exclusions>
32+
</dependency>
33+
<dependency>
34+
<groupId>io.netty</groupId>
35+
<artifactId>netty-all</artifactId>
36+
<version>${netty-all.version}</version>
37+
<exclusions>
38+
<exclusion>
39+
<groupId>io.netty</groupId>
40+
<artifactId>netty-codec-smtp</artifactId>
41+
</exclusion>
42+
</exclusions>
43+
</dependency>
44+
<dependency>
45+
<groupId>io.netty</groupId>
46+
<artifactId>netty-codec-smtp</artifactId>
47+
<version>${netty-codec-smtp.version}</version>
2548
</dependency>
2649
<dependency>
2750
<groupId>org.springframework.boot</groupId>

0 commit comments

Comments
 (0)