Skip to content

Commit 2db8e07

Browse files
authored
Update netty-codec-smtp to 4.1.128.Final (#646)
Signed-off-by: Chris Bono <[email protected]>
1 parent 5b72667 commit 2db8e07

File tree

1 file changed

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

1 file changed

+27
-0
lines changed

applications/sink/websocket-sink/pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
<relativePath>../../stream-applications-core/pom.xml</relativePath>
1515
</parent>
1616

17+
<properties>
18+
<netty-all.version>4.1.127.Final</netty-all.version>
19+
<netty-codec-smtp.version>4.1.128.Final</netty-codec-smtp.version>
20+
</properties>
1721
<dependencies>
1822
<dependency>
1923
<groupId>org.springframework.cloud.fn</groupId>
@@ -57,9 +61,32 @@
5761
<functionDefinition>websocketConsumer</functionDefinition>
5862
<maven>
5963
<dependencies>
64+
<!-- Due to CVE-2025-59419 we need a netty-all w/ an updated netty-code-smtp -->
6065
<dependency>
6166
<groupId>org.springframework.cloud.fn</groupId>
6267
<artifactId>spring-websocket-consumer</artifactId>
68+
<exclusions>
69+
<exclusion>
70+
<groupId>io.netty</groupId>
71+
<artifactId>netty-all</artifactId>
72+
</exclusion>
73+
</exclusions>
74+
</dependency>
75+
<dependency>
76+
<groupId>io.netty</groupId>
77+
<artifactId>netty-all</artifactId>
78+
<version>${netty-all.version}</version>
79+
<exclusions>
80+
<exclusion>
81+
<groupId>io.netty</groupId>
82+
<artifactId>netty-codec-smtp</artifactId>
83+
</exclusion>
84+
</exclusions>
85+
</dependency>
86+
<dependency>
87+
<groupId>io.netty</groupId>
88+
<artifactId>netty-codec-smtp</artifactId>
89+
<version>${netty-codec-smtp.version}</version>
6390
</dependency>
6491
</dependencies>
6592
</maven>

0 commit comments

Comments
 (0)