Apache Camel 4.10 What's New

, by , , ,

Apache Camel 4.10 LTS has just been released. This release introduces a set of new features and noticeable improvements that we will cover in this blog post. Camel Core Added customize to RouteBuilder to make it easier to configure a specific Camel component / dataformat, service in a Java lambda style, such as follows: @Override public void configure() throws Exception { customize(KServeComponent.class, k -> { k.getConfiguration().setTarget("localhost:8888"); }); from("timer:kserve?repeatCount=1") .to("kserve:model/metadata?modelName=myModel") .log("${body}"); } This makes it possible for low-code users that want to have a single Java file with the Camel route and all the Java based configuration done entirely from the same configure method.

Continue reading ❯

RELEASES

RELEASE 4.10.0

, by

The Camel community announces the immediate availability of the Camel 4.10.0 LTS release with 214 new features and improvements. The artifacts are published and ready for you to download from the Central Maven repository. For more details please take a look at the release notes. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski

Continue reading ❯

RELEASES