Apache Camel 2.25.2 Release
New and Noteworthy
This release is the new Camel 2.25.2 patch release.
Getting the Binaries
Getting the Binaries using Maven
To use this release in your Apache Maven pom.xml
, import the Camel Bill of Materials (BOM) and then include the camel-core
and any other components needed without specifying the version.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-bom</artifactId>
<version>2.25.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-COMPONENT</artifactId>
</dependency>
</dependencies>
To use this release in a Spring Boot application, use the camel-spring-boot-dependencies
Bill of Materials (BOM):
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-spring-boot-dependencies</artifactId>
<version>2.25.2</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.camel.springboot</groupId>
<artifactId>camel-COMPONENT-starter</artifactId>
</dependency>
</dependencies>
Binary Distributions
Binary distribution contains all the artifacts Apache Camel project distributes in binary form
Description | Download Link | PGP Signature file of download |
Windows Distribution | apache-camel-2.25.2.zip | apache-camel-2.25.2.zip.asc |
Unix/Linux/Cygwin Distribution | apache-camel-2.25.2.tar.gz | apache-camel-2.25.2.tar.gz.asc |
Sources
Source distribution
Source distribution contains all the artifacts Apache Camel project distributes in source form
Description | Download Link | PGP Signature file of download |
Source (zip) | apache-camel-2.25.2-src.zip | apache-camel-2.25.2-src.zip.asc |
Git tag checkout
Release is tagged with camel-2.25.2
in the Git, to fetch it use:
git clone https://git-wip-us.apache.org/repos/asf/camel.git cd camel git checkout camel-2.25.2
Resolved issues
Here is a list of all the issues that have been resolved for this release
Bug (5)
- CAMEL-15233
- camel-salesforce - CometDReplayExtension does not keep replayId for each message/channel
- CAMEL-15174
- need to set SpringBus to CxfRsSpringEndpoint
- CAMEL-15022
- Opentracing doesn't work with Kafka Component
- CAMEL-14935
- KafkaConsumer commits old offset values in a failure scenario causing message replays and offset reset error
- CAMEL-14533
- camel-ftp: fileExist=Append and tempPrefix options do not work together
Improvement (8)
- CAMEL-15377
- camel-jms - Add back transactedInOut option
- CAMEL-15188
- camel-telegram - Add SOCKS proxy support to telegram component
- CAMEL-15061
- Performance issues with classMap.computeIfAbsent() in DefaultFactoryFinder
- CAMEL-15050
- Templating components - Variable map to be limited to body/headers
- CAMEL-15013
- Template components - Add option to turn on|off allow using header with override template
- CAMEL-14951
- WireTap - If thread pool reject task then Camel error handler should be able to react
- CAMEL-14893
- camel-grpc - Should handle if exchange failed as onError
- CAMEL-7810
- Dropped exchanges when aggregating with JdbcAggregationRepository