This is an automated email from the ASF dual-hosted git repository. tcunning pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit dc4429d8e21a6d9b76bc6e6c25df6d6c2b4f59fd Author: Tom Cunningham <[email protected]> AuthorDate: Thu Nov 27 15:27:11 2025 -0500 Upgrade netty to 4.2.7.Final --- dsl/camel-componentdsl/pom.xml | 6 +++++- dsl/camel-endpointdsl/pom.xml | 5 +++++ parent/pom.xml | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/dsl/camel-componentdsl/pom.xml b/dsl/camel-componentdsl/pom.xml index c98a6a0cd3f9..afb0030e08b4 100644 --- a/dsl/camel-componentdsl/pom.xml +++ b/dsl/camel-componentdsl/pom.xml @@ -114,7 +114,11 @@ <artifactId>camel-catalog</artifactId> <scope>provided</scope> </dependency> - + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport</artifactId> + <version>${netty-version}</version> + </dependency> <!-- testing --> <dependency> <groupId>org.junit.jupiter</groupId> diff --git a/dsl/camel-endpointdsl/pom.xml b/dsl/camel-endpointdsl/pom.xml index 835f86be28b7..107e2db0d633 100644 --- a/dsl/camel-endpointdsl/pom.xml +++ b/dsl/camel-endpointdsl/pom.xml @@ -64,6 +64,11 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> + <dependency> + <groupId>io.netty</groupId> + <artifactId>netty-transport</artifactId> + <version>${netty-version}</version> + </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-allcomponents</artifactId> diff --git a/parent/pom.xml b/parent/pom.xml index 4ae45c262923..b4a8b4f8d022 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -421,7 +421,7 @@ <narayana-version>5.13.1.Final</narayana-version> <neoscada-version>0.4.0</neoscada-version> <neo4j-version>6.0.2</neo4j-version> - <netty-version>4.1.130.Final</netty-version> + <netty-version>4.2.7.Final</netty-version> <netty-reactive-streams-version>2.0.5</netty-reactive-streams-version> <networknt-json-schema-validator-version>1.5.9</networknt-json-schema-validator-version> <nimbus-jose-jwt>10.7</nimbus-jose-jwt>
