Re: [VOTE] Release Apache Camel 4.8.0 (LTS) - 2nd Attempt

2024-09-10 Thread Zheng Feng
+1 (non-binding) On Wed, Sep 11, 2024 at 3:34 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.8.0, a new release with 185 > new features and improvements. > > This second release candidate includes the following fixes missing in > the initial attempt: > > -

Re: Can camel jbang manage the application which not started by it

2024-09-03 Thread Zheng Feng
gt; > On Fri, Aug 30, 2024 at 12:46 PM Zheng Feng wrote: > > > Thanks Claus - I should have read the doc more carefully! > > > > Hmm, it works perfectly in the camel jbang 4.7.0 but not work for > > 4.8.0-SNAPSHOT, because "camel export --with-runti

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
OK, I open a quick fix on https://github.com/apache/camel/pull/15380 On Fri, Aug 30, 2024 at 8:26 PM Claus Ibsen wrote: > On Fri, Aug 30, 2024 at 2:09 PM Zheng Feng wrote: > > > In this case, should we update the doc to add camel-quarkus-rest in the > > Quarkus section. >

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
with Camel 4.8.0 so something they get out of sync > a bit. > And rest is now only exported if it's really in use. > > On Fri, Aug 30, 2024 at 12:46 PM Zheng Feng wrote: > > > Thanks Claus - I should have read the doc more carefully! > > > > Hmm, it works perf

Re: Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
g/manual/camel-jbang.html#_controlling_spring_boot_and_quarkus_integrations > > On Fri, Aug 30, 2024 at 11:55 AM Zheng Feng wrote: > > > Hi, > > > > When I run a camel application outside of camel jbang and the `camel ps` > > command does not find it. I think it is expected since camel jbang can > only &

Can camel jbang manage the application which not started by it

2024-08-30 Thread Zheng Feng
Hi, When I run a camel application outside of camel jbang and the `camel ps` command does not find it. I think it is expected since camel jbang can only manage the process which is spawned by `camel run` command? is it right? I tried to run a camel quarkus app in a native mode by itself because `

Re: camel jbang is not working in dev mode with quarkus or spring-boot runtime

2024-08-28 Thread Zheng Feng
Well, the java files have to be recompiled to trigger the restart in Spring Boot. So it should not be supported by camel jbang. On Wed, Aug 28, 2024 at 10:39 PM Zheng Feng wrote: > Hmm, I get it to work in Quarkus runtime. But for Spring Boot, it does not > work because SB does not s

Re: camel jbang is not working in dev mode with quarkus or spring-boot runtime

2024-08-28 Thread Zheng Feng
there are some codes which need to add in the source java file, see [1] [1] https://github.com/apache/camel/blob/main/dsl/camel-jbang/camel-jbang-core/src/main/java/org/apache/camel/dsl/jbang/core/commands/ExportSpringBoot.java#L363 On Wed, Aug 28, 2024 at 7:50 PM Zheng Feng wrote: > OK, I w

Re: camel jbang is not working in dev mode with quarkus or spring-boot runtime

2024-08-28 Thread Zheng Feng
OK, I will take a look. On Wed, Aug 28, 2024 at 7:38 PM Claus Ibsen wrote: > On Wed, Aug 28, 2024 at 12:46 PM Zheng Feng wrote: > > > Thanks Claus, I get your idea! safe_copy() could do this work. I will > > investigate. > > > > > Here is a JIRA ticket about

Re: camel jbang is not working in dev mode with quarkus or spring-boot runtime

2024-08-28 Thread Zheng Feng
non package java then we may just copy it to root in --dev so its > package less and then reloading should work. > > > > > > > On Wed, Aug 28, 2024 at 11:54 AM Zheng Feng wrote: > > > >> Hi, > >> > >> I just use "camel run foo.java --run

Re: camel jbang is not working in dev mode with quarkus or spring-boot runtime

2024-08-28 Thread Zheng Feng
not working as well anymore. > > See the ExportBaseCommand > > > On Wed, Aug 28, 2024 at 11:54 AM Zheng Feng wrote: > > > Hi, > > > > I just use "camel run foo.java --runtime=quarkus --dev" and modify the > > foo.java, but the app does not rel

camel jbang is not working in dev mode with quarkus or spring-boot runtime

2024-08-28 Thread Zheng Feng
Hi, I just use "camel run foo.java --runtime=quarkus --dev" and modify the foo.java, but the app does not reload the changes. I think it is expected since when running with quarkus or spring-boot, it has to be exported to a hidden directory like .camel-jang-run at first. So even if we add the "--d

Re: How does camel jbang support transacted()?

2024-08-26 Thread Zheng Feng
Now with this fix, you can have "transacted()" to run with quarkus and springboot runtime like camel run foo.java --runtime=quarkus camel run foo.java --runtime=spring-boot --deps=dev.snowdrop:narayana-spring-boot-starter:3.2.0 On Mon, Aug 26, 2024 at 10:38 PM Zheng Feng wrote

Re: How does camel jbang support transacted()?

2024-08-26 Thread Zheng Feng
https://github.com/apache/camel/pull/15318 On Mon, Aug 26, 2024 at 10:31 PM Zheng Feng wrote: > I think runQuarkus and runSpringBoot have to runExport at first to detect > the dependencies. So in runExport which is running in a plain camel, there > is no support for TransactionPolicy o

Re: How does camel jbang support transacted()?

2024-08-26 Thread Zheng Feng
. I will prepare a PR soon. Thanks Claus again for your nice hints. On Mon, Aug 26, 2024 at 3:58 PM Claus Ibsen wrote: > On Mon, Aug 26, 2024 at 9:39 AM Zheng Feng wrote: > > > OK, I will keep investigating. So for CAMEL-21117, I could add a similar > > class like CircuitBrea

Re: How does camel jbang support transacted()?

2024-08-26 Thread Zheng Feng
OK, I will keep investigating. So for CAMEL-21117, I could add a similar class like CircuitBreakerDownloader.java to check TransactionDefinition and add camel-jta in the downloader? On Mon, Aug 26, 2024 at 3:33 PM Claus Ibsen wrote: > On Mon, Aug 26, 2024 at 9:24 AM Zheng Feng wrote: >

Re: How does camel jbang support transacted()?

2024-08-26 Thread Zheng Feng
On Mon, Aug 26, 2024 at 3:09 PM Claus Ibsen wrote: > On Mon, Aug 26, 2024 at 8:56 AM Zheng Feng wrote: > > > Thanks Claus- Hmm, but it should work with quarkus runtime, right? > > > > I just removed "transacted()" in foo.java and export it to a quarkus >

Re: How does camel jbang support transacted()?

2024-08-26 Thread Zheng Feng
The similar with the spring-boot runtime camel export foo.java --runtime=spring-boot --gav=org.acme:example:0.0.1 --deps=camel-jta,dev.snowdrop:narayana-spring-boot-starter:3.2.0 On Mon, Aug 26, 2024 at 2:56 PM Zheng Feng wrote: > Thanks Claus- Hmm, but it should work with quarkus runt

Re: How does camel jbang support transacted()?

2024-08-25 Thread Zheng Feng
A transaction stuff. > jbang is not support doing this out of the box. > > > On Mon, Aug 26, 2024 at 8:01 AM Zheng Feng wrote: > > > Hi, > > > > I add "transacted()" in the foo.java like > > > > public class foo extends RouteBuilder { > >

How does camel jbang support transacted()?

2024-08-25 Thread Zheng Feng
Hi, I add "transacted()" in the foo.java like public class foo extends RouteBuilder { @Override public void configure() throws Exception { from("timer:java?period=1000") .transacted() .setBody() .simple("Hello Camel from ${routeId}")

Re: [VOTE] Release Apache Camel Quarkus 3.14.0

2024-08-21 Thread Zheng Feng
+1 (non-binding) On Thu, Aug 22, 2024 at 2:31 AM Alexandre Gallice wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.14.0. > > Highlights: > > * Camel 4.7.0 > * Quarkus 3.14.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.13.0...3.14.0 > > Staging reposit

Re: [VOTE] Release Apache Camel Quarkus 3.13.0

2024-07-25 Thread Zheng Feng
+1 (non-binding) On Thu, Jul 25, 2024 at 6:06 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.13.0. > > Highlights: > > * Camel 4.7.0 > * Quarkus 3.13.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.12.0...3.13.0 > > Staging repositor

Re: [VOTE] Release Apache Camel Quarkus 3.8.3

2024-07-03 Thread Zheng Feng
+1 (non-binding) On Wed, Jul 3, 2024 at 10:02 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.8.3 LTS. > > Highlights: > > * Camel 4.4.3 > * Quarkus 3.8.5 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.8.2...3.8.3 > > Staging repositor

Re: [VOTE] Release Apache Camel 4.4.3 (LTS)

2024-06-23 Thread Zheng Feng
+1 (non-binding) On Mon, Jun 24, 2024 at 12:21 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.4.3, a new patch release with > 31 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354613&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 3.12.0

2024-06-20 Thread Zheng Feng
+1 (non-binding) On Thu, Jun 20, 2024 at 7:39 PM Alexandre Gallice wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.12.0. > > Highlights: > > * Camel 4.6.0 > * Quarkus 3.12.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.11.0...3.12.0 > > Staging reposit

Re: [VOTE] Release Apache Camel 3.21.5 (LTS)

2024-06-17 Thread Zheng Feng
+1 (non-binding) On Mon, Jun 17, 2024 at 4:57 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.21.5, a new patch release > with 18 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354146&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 3.11.0

2024-05-23 Thread Zheng Feng
+1 (non-binding) On Fri, May 24, 2024 at 1:54 PM Peter Palaga wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.11.0. > > Highlights: > > * Camel 4.6.0 > * Quarkus 3.11.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.10.0...3.11.0 > > Staging repository:

Re: [VOTE] Release Apache Camel 4.6.0

2024-05-09 Thread Zheng Feng
+1 (non-binding) On Mon, May 6, 2024 at 4:23 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.6.0, a new release with 108 > new features and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354410&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 3.8.2

2024-04-30 Thread Zheng Feng
+1 (non-binding) On Tue, Apr 30, 2024 at 7:24 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.8.2 LTS. > > Highlights: > > * Camel 4.4.2 > * Quarkus 3.8.4 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.8.1...3.8.2 > > Staging repositor

Re: [VOTE] Release Apache Camel Quarkus 3.10.0

2024-04-24 Thread Zheng Feng
+1 (non-binding) On Wed, Apr 24, 2024 at 9:34 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.10.0. > > Highlights: > > * Camel 4.5.0 > * Quarkus 3.10.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.9.0...3.10.0 > > Staging repository

Re: [VOTE] Release Apache Camel 4.0.5 (LTS)

2024-04-23 Thread Zheng Feng
+1 (non-binding) On Tue, Apr 23, 2024 at 4:14 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.0.5, a new patch release with > 18 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353858&projectId=12

Re: [VOTE] Release Apache Camel 4.4.2 (LTS)

2024-04-22 Thread Zheng Feng
+1 (non-binding) On Mon, Apr 22, 2024 at 1:58 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.4.2, a new patch release with > 31 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354402&projectId=12

Re: [VOTE] Release Apache Camel 4.5.0

2024-03-25 Thread Zheng Feng
+1 (non-binding) On Sun, Mar 24, 2024 at 6:07 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.5.0, a new LTS release with > 151 new features and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354104&projec

Re: [VOTE] Release Apache Camel Quarkus 3.9.0

2024-03-21 Thread Zheng Feng
+1 (non-binding) On Thu, Mar 21, 2024 at 11:09 PM Alexandre Gallice wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.9.0. > > Highlights: > > * Camel 4.4.1 > * Quarkus 3.9.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.8.0...3.9.0 > > Staging repository

Re: [VOTE] Release Apache Camel Quarkus 3.8.1

2024-03-15 Thread Zheng Feng
+1 (non-binding) On Sat, Mar 16, 2024 at 6:03 AM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.8.1. > > Highlights: > > * Camel 4.4.1 > * Quarkus 3.8.3 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.8.0...3.8.1 > > Staging repository: >

Re: [VOTE] Release Apache Camel 4.4.1 (LTS)

2024-03-11 Thread Zheng Feng
+1 (non-binding) On Mon, Mar 11, 2024 at 2:52 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.4.1, a new patch release with > 32 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354233&projectId=12

Re: [VOTE] Release Apache Camel Quarkus 3.8.0

2024-02-22 Thread Zheng Feng
+1 (non-binding) On Thu, Feb 22, 2024 at 4:33 PM Alexandre Gallice wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.8.0. > > Highlights: > > * Camel 4.4.0 > * Quarkus 3.8.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.7.0...3.8.0 > > Staging repository:

Re: [VOTE] Release Apache Camel 4.0.4

2024-01-28 Thread Zheng Feng
+1 (non-binding) On Mon, Jan 29, 2024 at 3:55 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.0.4, a new patch release with > 23 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353858&projectId=12

Re: [VOTE] Release Apache Camel 3.22.1 (LTS)

2024-01-28 Thread Zheng Feng
+1 (non-binding) On Sat, Jan 27, 2024 at 1:00 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.22.1, a new patch release > with 8 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354118&projectId=12

Re: [VOTE] Release Apache Camel Quarkus 3.7.0

2024-01-25 Thread Zheng Feng
+1 (non-binding) On Fri, Jan 26, 2024 at 12:30 AM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.7.0. > > Highlights: > > * Camel 4.3.0 > * Quarkus 3.7.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.6.0...3.7.0 > > Staging repository:

Re: [VOTE] Release Apache Camel 3.21.4 (LTS)

2024-01-25 Thread Zheng Feng
+1 (non-binding) On Thu, Jan 25, 2024 at 5:29 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.21.4, a new patch release > with 9 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12354021&projectId=12

Re: [VOTE] Release Apache Camel 3.22.0 (LTS)

2023-12-20 Thread Zheng Feng
+1 (non-binding) On Wed, Dec 20, 2023 at 8:42 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.22.0, a new LTS release with > 100 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353350&projectId=12

Re: [VOTE] Release Apache Camel 4.3.0

2023-12-12 Thread Zheng Feng
+1 (non-binding) On Tue, Dec 12, 2023 at 4:32 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.3.0, a new release with 108 > new features and improvements. It is the first Camel release that was > built with Java 21. > > Release notes: > https://issues.apache

Re: [VOTE] Release Apache Camel 3.21.3 (LTS)

2023-12-12 Thread Zheng Feng
+1 (non-binding) On Mon, Dec 11, 2023 at 7:32 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.21.3, a new patch release > with 14 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353747&projectId=1

Re: [VOTE] Release Apache Camel 3.20.9 (LTS)

2023-12-11 Thread Zheng Feng
+1 (non-binding) On Sun, Dec 10, 2023 at 4:22 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.9 (LTS), a final patch > release for the 3.20.x branch with 9 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa

Re: camel-openapi-java supports OpenAPI 3.0 or 3.1?

2023-12-03 Thread Zheng Feng
each version > of the spec. > > > On Sun, Dec 3, 2023 at 12:55 PM Zheng Feng wrote: > > > Hi, > > > > I was working on CAMEL-20156 > > <https://issues.apache.org/jira/browse/CAMEL-20156> and camel-quarkus > > issue > > #5559 <https://git

[RESULT][VOTE] Release Apache Camel Quarkus 3.2.3

2023-12-03 Thread Zheng Feng
Hi everyone, The vote passes with 6 +1 binding votes: * Claus Ibsen * Alexandre Gallice * Andrea Cosentino * Jean-Baptiste Onofré * Zineb Bendhiba * James Netherton And 3 +1 non-binding votes: * Claudio Miranda * Gaëlle Fournier * Zheng Feng I will release the staging repository shortly.

Re: [VOTE] Release Apache Camel Quarkus 3.2.3

2023-12-03 Thread Zheng Feng
Thanks everyone for voting. This is my +1 (non-binding). On Fri, Dec 1, 2023 at 6:36 PM James Netherton wrote: > +1 (binding) > > Thanks! > > > On Wed, 29 Nov 2023 at 07:54, Zheng Feng wrote: > > > Hi, > > > > This is a vote to release Apache

camel-openapi-java supports OpenAPI 3.0 or 3.1?

2023-12-03 Thread Zheng Feng
(openApi3)" , see [1]. But the response of the api endpoint is rendered with 3.1 by using "io.swagger.v3.core.util.Json31.pretty(openApi)", see [2]. Then I'm confused about what version of OpenAPI we support now. Both 3.0 and 3.1? our tests should be updated? Thanks, Zheng Feng

[VOTE] Release Apache Camel Quarkus 3.2.3

2023-11-28 Thread Zheng Feng
Hi, This is a vote to release Apache Camel Quarkus 3.2.3. Highlights: * Camel 4.0.3 * Quarkus 3.2.9.Final All commits: https://github.com/apache/camel-quarkus/compare/3.2.2...3.2.3 Staging repository: https://repository.apache.org/content/repositories/orgapachecamel-1648 Tag: https://githu

Re: [VOTE] Release Apache Camel Quarkus 3.6.0

2023-11-24 Thread Zheng Feng
+1 (non-binding) On Fri, Nov 24, 2023 at 5:13 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.6.0. > > Highlights: > > * Camel 4.2.0 > * Quarkus 3.6.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.5.0...3.6.0 > > Staging repository: >

Re: [VOTE] Release Apache Camel 4.0.3

2023-11-15 Thread Zheng Feng
+1 (non-binding) On Wed, Nov 15, 2023 at 2:50 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.0.3, a new patch release with > 23 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353752&projectId=12

Re: [VOTE] Release Apache Camel 4.2.0

2023-11-11 Thread Zheng Feng
+1 (non-binding) On Sat, Nov 11, 2023 at 9:08 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.2.0, a new release with 115 > fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353662&projectId=1231121

Re: [VOTE] Release Apache Camel 3.14.10 (LTS)

2023-11-05 Thread Zheng Feng
+1 (non-binding) On Mon, Nov 6, 2023 at 2:02 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.14.10, a new patch release > with 12 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353330&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 3.2.2

2023-11-03 Thread Zheng Feng
+1 (non-binding) Thanks James! On Fri, Nov 3, 2023 at 8:38 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.2.2. > > Highlights: > > * Camel 4.0.2 > * Quarkus 3.2.7.Final > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.2.1...3.2.2 > > S

Re: [VOTE] Release Apache Camel 3.20.8 (LTS)

2023-10-30 Thread Zheng Feng
+1 (non-binding) On Mon, Oct 30, 2023 at 8:38 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.8 (LTS), a patch release > with 7 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353671&projectId=

Re: [VOTE] Release Apache Camel 3.21.2 (LTS)

2023-10-24 Thread Zheng Feng
+1 (non-binding) On Tue, Oct 24, 2023 at 6:16 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.21.2, a new patch release > with 11 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353670&projectId=1

Re: [VOTE] Release Apache Camel 4.0.2

2023-10-23 Thread Zheng Feng
+1 (non-binding) On Mon, Oct 23, 2023 at 4:54 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.0.2, a new patch release with > 30 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353661&projectId=12

Re: [VOTE] Release Apache Camel Quarkus 3.5.0

2023-10-20 Thread Zheng Feng
+1 (non-binding) On Fri, Oct 20, 2023 at 3:48 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.5.0. > > Highlights: > > * Camel 4.1.0 > * Quarkus 3.5.0 > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.4.0...3.5.0 > > Staging repository: >

Re: [VOTE] Release Apache Camel 4.1.0

2023-10-08 Thread Zheng Feng
+1 (non-binding) On Sun, Oct 8, 2023 at 12:06 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.1.0, a new minor release with > 175 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353277&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 3.2.1

2023-10-07 Thread Zheng Feng
+1 (non-binding) On Thu, Oct 5, 2023 at 4:22 AM Peter Palaga wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.2.1 > > Highlights: > > * Quarkus 3.2.6.Final > * Camel 4.0.1 > * All commits: >https://github.com/apache/camel-quarkus/compare/3.2.0...3.2.1 > > Staging repository:

Re: [VOTE] Release Apache Camel 3.21.1 (LTS)

2023-09-28 Thread Zheng Feng
+1 (non-binding) On Mon, Sep 25, 2023 at 6:28 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.21.1, a new LTS release with > 63 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353345&projectId=123

Re: [VOTE] Release Apache Camel 3.20.7 (LTS)

2023-09-28 Thread Zheng Feng
+1 (non-binding) On Wed, Sep 27, 2023 at 4:01 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.7 (LTS), a patch release > with 56 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353329&projectId

Re: [VOTE] Release Apache Camel 4.0.1

2023-09-24 Thread Zheng Feng
+1 (non-binding) On Sat, Sep 23, 2023 at 5:57 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.0.1, a new patch release with > 57 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353506&projectId=12

Re: [VOTE] Release Camel Quarkus 3.4.0

2023-09-17 Thread Zheng Feng
+1 (non-binding) On Fri, Sep 15, 2023 at 4:52 PM Zineb Bendhiba wrote: > Hello, > > > > This is a vote to release Apache Camel Quarkus 3.4.0. > > > > Highlights: > > > > * Camel 4.0.0 > > > * Quarkus 3.4.0 > > > > Milestone: > > https://github.com/apache/camel-quarkus/milestone/47?closed=1 > > >

Re: [VOTE] Release Camel Quarkus 3.2.0

2023-08-29 Thread Zheng Feng
+1 (non-binding) On Tue, Aug 29, 2023 at 4:21 AM Zineb Bendhiba wrote: > Hello, > > > This is a vote to release Apache Camel Quarkus 3.2.0. > > > Highlights: > > > * Camel 4.0.0 > > * Quarkus 3.2.5.Final > > > All commits: > > > https://github.com/apache/camel-quarkus/compare/3.0.0-RC2...3.2.0 >

[HEAD UP] The next release version of camel-quarkus will bump to 3.2.0

2023-08-22 Thread Zheng Feng
Hi We are going to release camel-quarkus in coming days and the next version will be 3.2.0 which is better aligned with Quarkus 3.2 LTS. Any feedback is welcome. Regards, Zheng Feng

Re: [VOTE] Release Apache Camel 4.0.0

2023-08-11 Thread Zheng Feng
+1 (non-binding) Thanks Gregor! On Thu, Aug 10, 2023 at 5:46 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 4.0.0, a new major release with > 654 new features and improvements. > > Please note that Apache Camel Karaf is not part of this release cycle. > > Re

Re: [VOTE] Release Camel Quarkus 3.0.0-RC2

2023-07-30 Thread Zheng Feng
+1 (non-binding) On Sun, Jul 30, 2023 at 7:01 PM James Netherton wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.0.0-RC2. > > Highlights: > > * Camel 4.0.0-RC2 > * Quarkus 3.2.2.Final > > All commits: > > https://github.com/apache/camel-quarkus/compare/3.0.0-RC1...3.0.0-RC2 > >

Re: [VOTE] Release Apache Camel 4.0.0-RC2

2023-07-27 Thread Zheng Feng
+1 (non-binding) On Tue, Jul 25, 2023 at 8:27 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release the second release candidate for Apache > Camel 4.0.0 with 65 new features and improvements. > > Please note that Apache Camel Karaf is not part of this release cycle. > > Release

Re: [VOTE] Release Apache Camel Quarkus 3.0.0-RC1

2023-07-04 Thread Zheng Feng
+1 (non-binding) On Tue, Jul 4, 2023 at 4:26 PM Peter Palaga wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.0.0-RC1 > > Highlights: > > * Quarkus 3.2.0.Final > * Camel 4.0.0-RC1 > * Fixed issues: >https://github.com/apache/camel-quarkus/milestone/43?closed=1 > * All commit

Re: [VOTE] Release Apache Camel 4.0.0-RC1

2023-06-30 Thread Zheng Feng
+1 (non-binding) On Thu, Jun 29, 2023 at 7:17 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release the first release candidate for Apache Camel > 4.0.0 with 135 new features and improvements. > > Please note that Apache Camel Karaf is not part of this release cycle. > > Release

Re: [VOTE] Release Apache Camel 3.21.0 (LTS)

2023-06-27 Thread Zheng Feng
+1 (non-binding) On Tue, Jun 27, 2023 at 12:06 AM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.21.0, a new LTS release with > 295 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352568&projectId=1

Re: [VOTE] Release Apache Camel 3.18.8 (LTS)

2023-06-12 Thread Zheng Feng
+1 (non-binding) On Mon, Jun 12, 2023 at 4:28 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.8, a new patch release > with 8 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353276&projectId=12

Re: [VOTE] Release Apache Camel Quarkus 3.0.0-M2

2023-05-25 Thread Zheng Feng
+1 (non-binding) On Fri, May 26, 2023 at 4:47 AM Peter Palaga wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 3.0.0-M2 > > Highlights: > > * Quarkus 3.1.0.Final > * Camel 4.0.0-M3 > * Fixed issues: >https://github.com/apache/camel-quarkus/milestone/40?closed=1 > * All commits

Re: [VOTE] Release Apache Camel 3.14.8 (LTS)

2023-05-24 Thread Zheng Feng
+1 (non-binding) On Wed, May 24, 2023 at 1:57 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.14.8, a new patch release > with 14 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352676&projectId=1

Re: [VOTE] Release Apache Camel 3.20.5 (LTS)

2023-05-23 Thread Zheng Feng
+1 (non-binding) On Tue, May 23, 2023 at 2:31 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.5 (LTS), a patch release > with 28 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353153&projectId

Re: [VOTE] Release Apache Camel 3.18.7 (LTS)

2023-05-22 Thread Zheng Feng
+1 (non-binding) On Mon, May 22, 2023 at 4:02 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.7, a new patch release > with 15 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353100&projectId=1

Re: [VOTE] Release Apache Camel 4.0.0-M3

2023-05-04 Thread Zheng Feng
+1 (non-binding) On Mon, May 1, 2023 at 11:49 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release the second milestone for Apache Camel 4 with > 155 new features and improvements. > > Please note that Apache Camel Karaf is not part of this release cycle. > > Release notes: > h

Re: [VOTE] Release Apache Camel 3.20.4 (LTS)

2023-04-25 Thread Zheng Feng
+1 (non-binding) On Mon, Apr 24, 2023 at 3:46 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.4 (LTS), a patch release > with 29 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12353010&projectId

Re: [VOTE] Release Camel Quarkus 2.13.3

2023-04-14 Thread Zheng Feng
+1 (non-binding), Thanks Alex! On Fri, Apr 14, 2023 at 5:16 PM Alexandre Gallice wrote: > Hello all, > > This is a vote for releasing camel-quarkus 2.13.3. > > It contains some hardening improvement in DSLs like YAML/XML and in > extensions like cxf-soap, jdbc, vertx-http and so on. > > Staging

Re: [VOTE] Release Apache Camel 3.18.6 (LTS)

2023-03-30 Thread Zheng Feng
+1 (non-binding) On Thu, Mar 30, 2023 at 2:06 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.6, a new patch release > with 26 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352849&projectId=1

Re: [VOTE] Release Apache Camel 3.20.3 (LTS)

2023-03-27 Thread Zheng Feng
+1 (non-binding) On Sun, Mar 26, 2023 at 3:55 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.3 (LTS), a patch release > with 44 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352884&projectId

Re: [VOTE] Release Camel Quarkus 3.0.0-M1

2023-03-14 Thread Zheng Feng
+1 (non-binding) On Wed, Mar 15, 2023 at 2:35 AM Zineb Bendhiba wrote: > Hello all, > > This is a vote for releasing camel-quarkus 3.0.0-M1. > > The release is the first supporting both Camel 4.x and Quarkus 3.x > > Highlights: > > * Camel 4.0.0-M2 > * Quarkus 3.0.0.Alpha5 > * Fixed issues: > ht

Re: [VOTE] Release Apache Camel 4.0.0-M2

2023-03-07 Thread Zheng Feng
+1 (non-binding) Thanks Gregor! On Tue, Mar 7, 2023 at 4:45 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release the second milestone for Apache Camel 4 with > 75 new features and improvements. > > Please note that Apache Camel Karaf is not part of this release cycle. > > Rele

Re: [VOTE] Release Apache Camel 3.20.2 (LTS)

2023-02-06 Thread Zheng Feng
+1 (non-binding) Thanks Gregor! On Sat, Feb 4, 2023 at 5:00 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.20.2 (LTS), a patch release > with 31 fixes and improvements. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=123

Re: [VOTE] Release Apache Camel Quarkus 2.16.0

2023-01-19 Thread Zheng Feng
+1 (non-binding) On Fri, Jan 20, 2023 at 12:06 AM Alexandre Gallice wrote: > Hello, > > This is a vote to release Apache Camel Quarkus 2.16.0. > > Highlights: > > * Quarkus 2.16.0.Final > * Camel 3.20.1 > * Fixed issues: >https://github.com/apache/camel-quarkus/milestone/36?closed=1 > * All

Re: [HEADS UP] - Switching main branch to Camel v4 (week 2 in 2023)

2023-01-03 Thread Zheng Feng
+1 On Tue, Jan 3, 2023 at 6:54 PM Claus Ibsen wrote: > Hi > > The work on Camel v4 is starting and we will publish a blog post on the > roadmap and timeline for Camel v4 later this week. > > Some time next week we would like to switch "main" branch to v4, and then > create a new camel-3.x branch

Re: [VOTE] Release Apache Camel Quarkus 2.15.0

2022-12-08 Thread Zheng Feng
Hi Zineb, Thanks for taking care of this release and I wonder if we need to include these two fixes with https://github.com/apache/camel-quarkus/pull/4331 in 2.15.0? On Fri, Dec 9, 2022 at 4:05 AM Claus Ibsen wrote: > +1 (binding) > > On Thu, Dec 8, 2022 at 8:05 PM Zineb Bendhiba > wrote: > >

Re: Using Camel as backend in a new Apache "spinoff" project?

2022-12-07 Thread Zheng Feng
It looks interesting and will it run a camel router with PLC4X component as an agent of IoTDB to collect data and send them directly to a server? On Wed, Dec 7, 2022 at 8:59 PM Christofer Dutz wrote: > Hi, > > we’re currently discussing potentially using Apache Camel for building a > product bas

Re: [VOTE] Release Apache Camel 3.18.4 (LTS)

2022-11-28 Thread Zheng Feng
+1 (non-binding) On Mon, Nov 28, 2022 at 6:20 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.4, a new patch release > with 27 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352409&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 2.13.1

2022-11-04 Thread Zheng Feng
+1 (non-binding) Thanks Peter! On Fri, Nov 4, 2022 at 5:15 PM Peter Palaga wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 2.13.1 > > Highlights: > > * Camel 3.18.3 (LTS) > * Quarkus 2.13.3.Final, we tested also against the upcoming 2.13.4.Final > with GraalVM 22.3 > * All commi

Re: [VOTE] Release Apache Camel Quarkus 2.14.0

2022-11-04 Thread Zheng Feng
+1 (non-binding) Thanks Zineb! On Fri, Nov 4, 2022 at 6:50 PM Zineb Bendhiba wrote: > Hello, > > This is a vote to release Apache Camel Quarkus 2.14.0. > > Highlights: > > * Camel 3.19.0 > * Quarkus 2.14.0.Final > * Fixed issues: >https://github.com/apache/camel-quarkus/milestone/33?closed=

Re: [VOTE] Release Apache Camel 3.18.3 (LTS)

2022-10-27 Thread Zheng Feng
+1 (non-binding) On Thu, Oct 27, 2022 at 8:00 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.3, a new patch release > with 52 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352263&projectId=1

Re: [VOTE] Release Apache Camel Quarkus 2.13.0

2022-09-23 Thread Zheng Feng
+1 (non-binding) Thanks Zineb! On Fri, Sep 23, 2022 at 4:23 PM Zineb Bendhiba wrote: > Hello, > > This is a vote to release Apache Camel Quarkus 2.13.0. > > Highlights: > > * Camel 3.18.2 > * Quarkus 2.13.0.Final > * Fixed issues: >https://github.com/apache/camel-quarkus/milestone/32?close

Re: [VOTE] Release Apache Camel 3.18.2 (LTS)

2022-09-05 Thread Zheng Feng
+1 (non-binding) Thanks Gregor! On Mon, Sep 5, 2022 at 6:48 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.2, a new patch release > with 50 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352

Re: [VOTE] Release Apache Camel Quarkus 2.12.0

2022-08-29 Thread Zheng Feng
+1 (non-binding) Thanks Peter! On Sat, Aug 27, 2022 at 1:15 AM Peter Palaga wrote: > Hi, > > This is a vote to release Apache Camel Quarkus 2.12.0. > > Highlights: > > * Camel 3.18.1 > * Quarkus 2.12.0.Final > * Fixed issues: >https://github.com/apache/camel-quarkus/milestone/31?closed=1 >

Re: [VOTE] Release Apache Camel 3.14.5 LTS

2022-08-17 Thread Zheng Feng
+1 (non-binding) Thanks, Zheng Feng On Wed, Aug 17, 2022 at 2:38 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.14.5, a new patch release > with 15 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/Rel

Re: [VOTE] Release Apache Camel 3.18.1 LTS

2022-08-07 Thread Zheng Feng
+1 (non-binding) On Mon, Aug 8, 2022 at 2:49 PM Gregor Zurowski wrote: > Hi Everyone: > > This is a vote to release Apache Camel 3.18.1, a new patch release > with 41 improvements and fixes. > > Release notes: > https://issues.apache.org/jira/secure/ReleaseNote.jspa?version=12352043&projectId=12

Re: CI jobs for publishing SNAPSHOTs

2022-08-01 Thread Zheng Feng
It looks like camel-3.18.x is working https://ci-builds.apache.org/job/Camel/job/Camel%20Daily%20Snapshot%20Deploy/job/camel-3.18.x/8/ On Mon, Aug 1, 2022 at 1:20 PM Claus Ibsen wrote: > Hi > > Yeah that seems correct. I am trying this now. > > On Mon, Aug 1, 2022 at 4:31 AM Zh

  1   2   >