[ANNOUNCE] Apache Camel 3.21.5 (LTS) Released

2024-06-21 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.21.5 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new patch release with 18 improvements and fixes. I

[ANNOUNCE] Apache Camel 4.4.3 (LTS) Released

2024-06-27 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 4.4.3 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release contains 31 new features and improvements. The release is

[ANNOUNCE] Apache Camel 4.7.0 Released

2024-07-13 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 4.7.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release contains 198 new features and improvements. The release is avai

[ANNOUNCE] Apache Camel 4.0.6 (LTS) Release

2024-08-12 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 4.0.6. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This is a patch release with 10 improvements and fixes. For more details ple

[ANNOUNCE] Apache Camel 4.8.0 (LTS) Released

2024-09-15 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 4.8.0 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release contains 185 new features and improvements. The release i

Re: Nagios apache camel component

2014-05-15 Thread Gregor Zurowski
Exequiel, I haven't used the camel-nagios component yet, but there are some short examples in the component documentation at http://camel.apache.org/nagios.html. You can also review the component's test code: https://github.com/apache/camel/tree/master/components/camel-nagios/src/test Gregor O

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Gregor Zurowski
Manjushree: Can you verify that you can access http://127.0.0.1:4502/crx/server by simply opening this location in your browser? You should see the CRX version and a list of available workspaces. Thanks, Gregor On Tue, May 27, 2014 at 2:06 AM, Manjushree wrote: > I'm working on apache camel an

Re: Apache camel and Adobe CQ5

2014-05-27 Thread Gregor Zurowski
After reviewing the stack trace you have posted, it looks as if you want to access the repository via WebDAV, but Jackrabbit is trying to use RMI over HTTP to connect to it. Jackrabbit uses a service provider approach to find an appropriate implementation for the javax.jcr.RepositoryFactory interfa

Re: Camel JCR examples?

2014-05-30 Thread Gregor Zurowski
Hi Vivek: What are you trying to implement with the camel-jcr component? Gregor On Wed, May 28, 2014 at 9:09 PM, vivekrao001 wrote: > Did you get any working example? If so could you please post the solution. > Appreciate you help. > > > > -- > View this message in context: > http://camel.465

Re: Camel JCR examples?

2014-06-02 Thread Gregor Zurowski
Hi Vivek: You can't use the Jackrabbit application URL in the from() DSL method. You must register your repository with the Camel registry (using a registry implementation such as JndiContext or Spring's ApplicationContextRegistry, see http://camel.apache.org/registry.html). I would suggest takin

Re: Camel JCR examples?

2014-06-03 Thread Gregor Zurowski
Hi Vivek: I am not sure what you mean by copying files from the repository to a local file. JCR repositories are structured into nodes and properties. Files can be represented as nodes of type nt:file with a jcr:content child node that holds the contents of the file, if that is what you mean? The

Re: Camel JCR examples?

2014-06-04 Thread Gregor Zurowski
Hi Vivek: > from > ("jcr://admin:admin@repository/default/b").setHeader(JcrConstants.JCR_OPERATION, > constant(JcrConstants.JCR_GET_BY_ID)) > .setBody(constant("modeshape_logo.jpg")).to("stream:out"); As described in my previous post, the current camel-jcr consumer implements an e

Re: camel elasticsearch component

2015-03-20 Thread Gregor Zurowski
Hi Akram, The search operation has been just added to the Elasticsearch component with CAMEL-8506 (https://issues.apache.org/jira/browse/CAMEL-8506). Take a look at the corresponding unit test (testSearch) to see how to use it: https://github.com/apache/camel/blob/master/components/camel-elastic

[ANNOUNCEMENT] Apache Camel 2.19.2 Released

2017-07-31 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2192-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.19.3 Released

2017-09-14 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2193-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.18.5 Released

2017-09-25 Thread Gregor Zurowski
from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel

[ANNOUNCEMENT] Apache Camel 2.20.0 Released

2017-10-11 Thread Gregor Zurowski
details please take a look at the release notes [1, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/camel-2200-release.html [2] http://camel.apache.org/download.html [3] https://issues.apache.org/jira/secure

[ANNOUNCEMENT] Apache Camel 2.19.4 Released

2017-11-05 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2194-release.html [3] https

Re: Setting multiple expectations when streamCaching is on

2017-11-11 Thread Gregor Zurowski
Hi, I just ran your code with Camel 2.20.0 and it works without issues, but I can reproduce the problem with earlier releases such as 2.19.x and 2.18.x. Were there any particular changes in Camel 2.20.0 that would make Minhtri's code work? Please note that the test code works in all versions of C

[ANNOUNCEMENT] Apache Camel 2.20.1 Released

2017-11-14 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2201-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.20.2 Released

2018-01-26 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2202-release.html [3] https

Re: Camel 2.21.0

2018-02-05 Thread Gregor Zurowski
Hi Riaan, We are planning to release Camel 2.21.0 by the end of February. Thanks, Gregor On Feb 6, 2018 8:34 AM, "Riaan Annandale" wrote: Hi guys Do we have any sort of clarity around timelines for 2.21.0? I’m waiting on a bug fix which is in that release (https://issues.apache.org/jira/bro

[ANNOUNCEMENT] Apache Camel 2.21.0 Released

2018-03-15 Thread Gregor Zurowski
repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2210-release.html [3] https://issues.apache.org/jira

[ANNOUNCEMENT] Apache Camel 2.19.5 Released

2018-03-29 Thread Gregor Zurowski
and ready for you to download [1] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org

[ANNOUNCEMENT] Apache Camel 2.20.3 Released

2018-03-30 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2203-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.21.1 Released

2018-05-04 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2211-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.22.0 Released

2018-07-03 Thread Gregor Zurowski
mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2220-release.html

[ANNOUNCEMENT] Apache Camel 2.21.2 Released

2018-07-20 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2212-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.20.4 Released

2018-07-27 Thread Gregor Zurowski
or from the Central Maven repository. For more details please take a look at the release notes [2]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/camel-2204-release.html [2] https://issues.apache.org/jira/secure

[ANNOUNCEMENT] Apache Camel 2.22.1

2018-09-06 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2221-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.21.3 Released

2018-10-28 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2213-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.22.2 Released

2018-11-10 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel--release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.23.0 Released

2018-11-29 Thread Gregor Zurowski
mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2230-release.html [3

[ANNOUNCEMENT] Apache Camel 2.21.4 Released

2019-01-10 Thread Gregor Zurowski
or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2214-release.html [3

[ANNOUNCEMENT] Apache Camel 2.23.1 Released

2019-01-17 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2231-release.html [3] https

Re: [ANNOUNCEMENT] Apache Camel 2.23.1 Released

2019-01-18 Thread Gregor Zurowski
//camel.apache.org/camel-2231-release.html > > Den fre. 18. jan. 2019 kl. 08:55 skrev Gregor Zurowski < > gre...@list.zurowski.org>: > > > The Camel community announces the immediate availability of the Camel > > 2.23.1 patch release. This release contains 33 fixes and impr

[ANNOUNCEMENT] Apache Camel 2.22.3 Released

2019-01-25 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2223-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.21.5 Released

2019-02-09 Thread Gregor Zurowski
mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2215

[ANNOUNCEMENT] Apache Camel 3.0.0-M1 (Milestone 1) Released

2019-02-23 Thread Gregor Zurowski
]. The artifacts are published and ready for you to download [2] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [3, 4]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1

[ANNOUNCEMENT] Apache Camel 3.0.0-M2 (Milestone 2) Released

2019-03-31 Thread Gregor Zurowski
]. The artifacts are published and ready for you to download [2] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [3, 4]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1

[ANNOUNCEMENT] Apache Camel 2.23.2 Released

2019-04-13 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2232-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.22.4 Released

2019-04-13 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2224-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.24.0 Released

2019-05-12 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2240-release.html [3] https

[ANNOUNCEMENT] Apache Camel 3.0.0-M3 (Milestone 3) Released

2019-06-07 Thread Gregor Zurowski
]. The artifacts are published and ready for you to download [2] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [3, 4]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1

[ANNOUNCEMENT] Apache Camel 2.22.5 Released

2019-06-12 Thread Gregor Zurowski
you to download [1] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2

[ANNOUNCEMENT] Apache Camel 2.23.3 Released

2019-06-16 Thread Gregor Zurowski
Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-2233-release.html [3] https

[ANNOUNCEMENT] Apache Camel 2.24.1 Released

2019-06-23 Thread Gregor Zurowski
] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http

[ANNOUNCEMENT] Apache Camel 3.0.0-M4 (Milestone 4) Released

2019-07-11 Thread Gregor Zurowski
made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] http://camel.apache.org/camel-300-m4-milestone-4-release.html [3] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345567&projectId=12311211 [4] ht

[ANNOUNCEMENT] Apache Camel 3.0.0-RC1 (Release Candidate 1) Released

2019-09-02 Thread Gregor Zurowski
look at the release notes [1]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345723&projectId=12311211

[ANNOUNCEMENT] Apache Camel 2.24.2 Released

2019-09-13 Thread Gregor Zurowski
] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://camel.apache.org/download/ [2] https://issues.apache.org/jira

[ANNOUNCEMENT] Apache Camel 2.23.4 Released

2019-09-22 Thread Gregor Zurowski
download [1] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download/ [2] https

[ANNOUNCEMENT] Apache Camel 3.0.0-RC2 (Release Candidate 2) Released

2019-10-06 Thread Gregor Zurowski
look at the release notes [1]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345998&projectId=12311211

[ANNOUNCEMENT] Apache Camel 3.0.0-RC3 (Release Candidate 3) Released

2019-10-25 Thread Gregor Zurowski
look at the release notes [1]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12346354&projectId=12311211

[ANNOUNCEMENT] Apache Camel 3.0.0 Released

2019-11-28 Thread Gregor Zurowski
f the Camel PMC, Gregor Zurowski [1] https://camel.apache.org/manual/latest/camel-3-migration-guide.html [1] http://camel.apache.org/download.html [2] https://camel.apache.org/blog/release-3-0-0.html [3] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12315691&projectId=12311211

[ANNOUNCEMENT] Apache Camel 2.24.3 Released

2019-12-26 Thread Gregor Zurowski
download [1] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://camel.apache.org/download/ [2] https

[ANNOUNCEMENT] Apache Camel 3.0.1 Released

2020-01-16 Thread Gregor Zurowski
] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https://camel.apache.org

[ANNOUNCEMENT] Apache Camel 2.25.0 Released

2020-01-23 Thread Gregor Zurowski
release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://camel.apache.org/download/ [2] https://camel.apache.org/blog/release-2-25-0.html [3] https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12345517&projectId=12311211

[ANNOUNCEMENT] Apache Camel and Apache Camel Spring Boot 3.1.0 Released

2020-02-27 Thread Gregor Zurowski
repository. For more details please take a look at the release notes [3, 4]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https://camel.apache.org/manual/latest/camel-3x-upgrade-guide.html [1] http://camel.apache.org/download.html [2] https

[ANNOUNCEMENT] Apache Camel 3.2.0 with Spring Boot and Karaf Sub-Projects Released

2020-04-06 Thread Gregor Zurowski
artifacts are published and ready for you to download [2] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [3, 4]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https

[ANNOUNCEMENT] Apache Camel 2.25.1 Released

2020-04-16 Thread Gregor Zurowski
] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https

[ANNOUNCEMENT] Apache Camel 3.3.0 with Spring Boot and Karaf Sub-Projects Released

2020-05-14 Thread Gregor Zurowski
artifacts are published and ready for you to download [2] either from the Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [3, 4]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] https

[ANNOUNCEMENT] Apache Camel 3.4.0 (LTS) with Spring Boot and Karaf Sub-Projects Released

2020-06-18 Thread Gregor Zurowski
repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https://camel.apache.org/blog/release-3-4-0.html [3] https://issues.apache.org/jira

[ANNOUNCEMENT] Apache Camel 3.4.1 (LTS) with Spring Boot and Karaf Sub-Projects Released

2020-07-16 Thread Gregor Zurowski
from the Maven Central repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https://camel.apache.org/blog/release-3-4-1.html [3

[ANNOUNCEMENT] Apache Camel 2.25.2 Released

2020-07-21 Thread Gregor Zurowski
Apache mirrors or from the Central Maven repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https://camel.apache.org/releases

[ANNOUNCEMENT] Apache Camel 3.4.2 (LTS) with Spring Boot and Karaf Sub-Projects Released

2020-07-22 Thread Gregor Zurowski
Camel PMC, Gregor Zurowski [1] https://github.com/eclipse/jetty.project/issues/3244 [2] https://issues.apache.org/jira/browse/CAMEL-15309 [3] http://camel.apache.org/download.html [4] https://camel.apache.org/blog/release-3-4-2.html [5] https://issues.apache.org/jira/secure/ReleaseNote.jspa

[ANNOUNCEMENT] Apache Camel 3.4.3 (LTS) with Spring Boot and Karaf Sub-Projects Released

2020-08-15 Thread Gregor Zurowski
from the Maven Central repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https://camel.apache.org/blog/release-3-4-3.html [3] https

[ANNOUNCEMENT] Apache Camel 3.5.0 (LTS) with Spring Boot and Karaf Sub-Projects Released

2020-09-05 Thread Gregor Zurowski
repository. For more details please take a look at the release notes [2, 3]. Many thanks to all who made this release possible. On behalf of the Camel PMC, Gregor Zurowski [1] http://camel.apache.org/download.html [2] https://camel.apache.org/blog/release-3-5-0.html [3] https://camel.apache.org

[ANNOUNCEMENT] Apache Camel 3.5.0 with Spring Boot and Karaf Sub-Projects Released

2020-09-05 Thread Gregor Zurowski
Correction of the previous announcement email: Please note that the 3.5.0 release is NOT an LTS release. On Sat, Sep 5, 2020 at 10:32 AM Gregor Zurowski wrote: > > The Camel community announces the immediate availability of Camel, > Camel Spring Boot and Camel Karaf 3.5.0, a new mino

[ANNOUNCE] Apache Camel 3.4.4 Released

2020-09-28 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.4.4 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 31 bug fixes and improvements. The release

[ANNOUNCE] Apache Camel 3.6.0 Released

2020-10-20 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.6.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 151 bug fixes and improvements. The release is av

[ANNOUNCE] Apache Camel 3.7.0 Released

2020-12-16 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is an LTS release and contains 185 bug fixes and improvements. T

[ANNOUNCE] Apache Camel 3.4.5 Released

2020-12-23 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.4.5 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 25 bug fixes and improvements. The release

[ANNOUNCE] Apache Camel 2.25.3

2020-12-24 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 2.25.3. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 11 bug fixes and improvements. It is available f

[ANNOUNCE] Apache Camel 3.7.1 Released

2021-01-21 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.1. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 29 bug

[ANNOUNCE] Apache Camel 3.7.2 Released

2021-02-08 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.2. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 18 bug

[ANNOUNCE] Apache Camel 3.8.0 Released

2021-02-13 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.8.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new minor release and contains 160 bug fixes and improvemen

[ANNOUNCE] Apache Camel 3.7.3 Released

2021-03-10 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.3. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 36 bug

[ANNOUNCE] Apache Camel 3.9.0 Released

2021-03-29 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.9.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new minor release and contains 159 bug fixes and improvemen

[ANNOUNCE] Apache Camel 3.7.4 Released

2021-05-03 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.4. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 19 bug

[ANNOUNCE] Apache Camel 3.10.0 Released

2021-05-20 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.10.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new minor release and contains 208 bug fixes and improveme

[ANNOUNCEMENT] Apache Camel 2.25.4 Released

2021-05-28 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 2.25.4. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 10 bug fixes and improvements. It is available f

[ANNOUNCE] Apache Camel 3.4.6 Released

2021-06-21 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.4.6 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 8 bug fixes and improvements. This is the l

[ANNOUNCE] Apache Camel 3.11.0 Released

2021-06-28 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.0 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a LTS release and contains 101 bug fixes and improveme

[ANNOUNCE] Apache Camel 3.7.5 (LTS) Released

2021-07-12 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.5. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 17 bug

[ANNOUNCE] Apache Camel 3.11.1 (LTS) Released

2021-08-05 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.1 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 33 bug fixes and improvements. The releas

[ANNOUNCE] Apache Camel 3.11.2 (LTS) Released

2021-09-13 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.2 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 28 bug fixes and improvements. The releas

[ANNOUNCE] Apache Camel 3.12.0 Released

2021-10-04 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.12.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This new minor release contains 206 new features, improvements and bug fixes

[ANNOUNCE] Apache Camel 3.7.6 (LTS) Released

2021-10-05 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.6. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 15 bug

[ANNOUNCE] Apache Camel 3.11.3 (LTS) Released

2021-10-12 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.3 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 26 bug fixes and improvements. The releas

[ANNOUNCE] Apache Camel 3.13.0 Released

2021-11-12 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.13.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This new minor release contains 119 new features, improvements and bug fixes

[ANNOUNCE] Apache Camel 3.11.4 (LTS) Released

2021-11-24 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.4 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 21 bug fixes and improvements. The releas

[ANNOUNCE] Apache Camel 3.14.0 Released

2021-12-16 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.14.0 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new LTS release and contains 111 bug fixes and impro

[ANNOUNCE] Apache Camel 3.7.7 (LTS) Released

2021-12-23 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.7.7. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a patch release for the LTS 3.7.x branch that contains 7 bug

[ANNOUNCE] Apache Camel 3.11.5 (LTS) Released

2021-12-31 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.5 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 6 bug fixes and improvements. The release

[ANNOUNCE] Apache Camel 3.14.1 (LTS) Released

2022-01-27 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.14.1 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new LTS release and contains 111 bug fixes and impro

[ANNOUNCE] Apache Camel 3.15.0 Released

2022-02-04 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.15.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new minor release and contains 217 bug fixes and improveme

[ANNOUNCE] Apache Camel 3.11.6 (LTS) Released

2022-03-13 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.11.6 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 23 bug fixes and improvements. The releas

[ANNOUNCE] Apache Camel 3.16.0 Released

2022-03-28 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.16.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new minor release and contains 206 bug fixes and improveme

[ANNOUNCE] Apache Camel 3.14.3 (LTS) Released

2022-05-06 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.14.3 (LTS). Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This patch release contains 28 bug fixes and improvements. The releas

[ANNOUNCE] Apache Camel 3.17.0 Released

2022-05-19 Thread Gregor Zurowski
The Camel PMC is pleased to announce the release of Apache Camel 3.17.0. Apache Camel is an open source integration framework that empowers you to quickly and easily integrate various systems consuming or producing data. This release is a new minor release and contains 220 new features, improveme

  1   2   3   >