(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 86ac3ac2 Move schema to correct folder 86ac3ac2 is described below commit 86ac3ac2133ef18c1ea96b4a3a9da7da7639fe04 Author: Claus Ibsen AuthorDate: Thu May 15 09:49:14 2025 +0200 Move schema to correct folder --- static/schema/{spring-xml => spring}/camel-spring-4.10.2.xsd | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-4.10.2.xsd b/static/schema/spring/camel-spring-4.10.2.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-4.10.2.xsd rename to static/schema/spring/camel-spring-4.10.2.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 337a1489 Move schema to correct folder 337a1489 is described below commit 337a1489a019069f09b0c465690eee5a36bbed08 Author: Claus Ibsen AuthorDate: Wed Apr 30 16:43:39 2025 +0200 Move schema to correct folder --- content/releases/release-4.10.4.md | 2 +- .../camel-spring-xml-4.10.4.xsd => spring/camel-spring-4.10.4.xsd} | 0 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/content/releases/release-4.10.4.md b/content/releases/release-4.10.4.md index d1e4716b..90e7e899 100644 --- a/content/releases/release-4.10.4.md +++ b/content/releases/release-4.10.4.md @@ -11,7 +11,7 @@ knownIssues: "" jiraVersionId: 12355817 category: camel kind: lts -jdk: [17, 21] +jdk: [17,21] --- This release is the new Camel 4.10.4 release. diff --git a/static/schema/spring-xml/camel-spring-xml-4.10.4.xsd b/static/schema/spring/camel-spring-4.10.4.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.10.4.xsd rename to static/schema/spring/camel-spring-4.10.4.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new a44c9f73 Move schema to correct folder a44c9f73 is described below commit a44c9f73059c7d2eb344293f1801b8dc8db12b6f Author: Claus Ibsen AuthorDate: Sun Mar 9 13:46:21 2025 +0100 Move schema to correct folder --- ...el-spring-xml-4.10.2.xsd => camel-spring-4.10.2.xsd} | 0 .../camel-spring-3.22.4.xsd}| 0 static/schema/spring/camel-spring.xsd | 17 ++--- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.10.2.xsd b/static/schema/spring-xml/camel-spring-4.10.2.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.10.2.xsd rename to static/schema/spring-xml/camel-spring-4.10.2.xsd diff --git a/static/schema/spring-xml/camel-spring-xml-3.22.4.xsd b/static/schema/spring/camel-spring-3.22.4.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-3.22.4.xsd rename to static/schema/spring/camel-spring-3.22.4.xsd diff --git a/static/schema/spring/camel-spring.xsd b/static/schema/spring/camel-spring.xsd index 06008c19..438dd6ef 100644 --- a/static/schema/spring/camel-spring.xsd +++ b/static/schema/spring/camel-spring.xsd @@ -10952,7 +10952,11 @@ If enabled then sending messages to the multicasts occurs concurrently. Note the messages has been fully processed, before it continues. Its only the sending and processing the replies from the multicasts which happens concurrently. When parallel processing is enabled, then the Camel routing engin will continue processing using last used thread from the parallel thread pool. However, if you want to use the original thread that -called the multicast, then make sure to enable the synchronous option as well. Default value: false +called the multicast, then make sure to enable the synchronous option as well. In parallel processing mode, you may want +to also synchronous = true to force this EIP to process the sub-tasks using the upper bounds of the thread-pool. If +using synchronous = false then Camel will allow its reactive routing engine to use as many threads as possible, which +may be available due to sub-tasks using other thread-pools such as CompletableFuture.runAsync or others. Default value: +false ]]> @@ -11992,7 +11996,11 @@ If enabled then sending messages to the recipients occurs concurrently. Note the messages has been fully processed, before it continues. Its only the sending and processing the replies from the recipients which happens concurrently. When parallel processing is enabled, then the Camel routing engin will continue processing using last used thread from the parallel thread pool. However, if you want to use the original thread that -called the recipient list, then make sure to enable the synchronous option as well. Default value: false +called the recipient list, then make sure to enable the synchronous option as well. In parallel processing mode, you may +want to also synchronous = true to force this EIP to process the sub-tasks using the upper bounds of the thread-pool. If +using synchronous = false then Camel will allow its reactive routing engine to use as many threads as possible, which +may be available due to sub-tasks using other thread-pools such as CompletableFuture.runAsync or others. Default value: +false ]]> @@ -13619,7 +13627,10 @@ If enabled then processing each split messages occurs concurrently. Note the cal messages has been fully processed, before it continues. It's only processing the sub messages from the splitter which happens concurrently. When parallel processing is enabled, then the Camel routing engin will continue processing using last used thread from the parallel thread pool. However, if you want to use the original thread that called the -splitter, then make sure to enable the synchronous option as well. Default value: false +splitter, then make sure to enable the synchronous option as well. In parallel processing mode, you may want to also +synchronous = true to force this EIP to process the sub-tasks using the upper bounds of the thread-pool. If using +synchronous = false then Camel will allow its reactive routing engine to use as many threads as possible, which may be +available due to sub-tasks using other thread-pools such as CompletableFuture.runAsync or others. Default value: false ]]>
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new b3e9ad80 Move schema to correct folder b3e9ad80 is described below commit b3e9ad80a9ce7e07074baa06f2708dd425847379 Author: Claus Ibsen AuthorDate: Sat Mar 8 18:59:41 2025 +0100 Move schema to correct folder --- .../camel-spring-xml-4.8.5.xsd => spring/camel-spring-4.8.5.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.8.5.xsd b/static/schema/spring/camel-spring-4.8.5.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.8.5.xsd rename to static/schema/spring/camel-spring-4.8.5.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 3d82717d Move schema to correct folder 3d82717d is described below commit 3d82717d68121dfd5d67adb11945769c1b4358d7 Author: Claus Ibsen AuthorDate: Wed Mar 5 07:06:42 2025 +0100 Move schema to correct folder --- .../camel-spring-xml-4.10.1.xsd => spring/camel-spring-4.10.1.xsd}| 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.10.1.xsd b/static/schema/spring/camel-spring-4.10.1.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.10.1.xsd rename to static/schema/spring/camel-spring-4.10.1.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 2bc3fd0f Move schema to correct folder 2bc3fd0f is described below commit 2bc3fd0f163d19ae4121ff312342115c00887b57 Author: Claus Ibsen AuthorDate: Tue Mar 4 14:43:21 2025 +0100 Move schema to correct folder --- .../camel-spring-xml-4.8.4.xsd => spring/camel-spring-4.8.4.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.8.4.xsd b/static/schema/spring/camel-spring-4.8.4.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.8.4.xsd rename to static/schema/spring/camel-spring-4.8.4.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 72a8bc97 Move schema to correct folder 72a8bc97 is described below commit 72a8bc9774c20db4528c8faede9355f14b9cf6bd Author: Claus Ibsen AuthorDate: Wed Jan 22 20:18:03 2025 +0100 Move schema to correct folder --- .../camel-spring-xml-4.4.5.xsd => spring/camel-spring-4.4.5.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.4.5.xsd b/static/schema/spring/camel-spring-4.4.5.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.4.5.xsd rename to static/schema/spring/camel-spring-4.4.5.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 714ad88e Move schema to correct folder 714ad88e is described below commit 714ad88ef2d4fa98c290145db027967d1a1f2a72 Author: Claus Ibsen AuthorDate: Mon Jan 13 07:34:41 2025 +0100 Move schema to correct folder --- .../camel-spring-xml-4.8.3.xsd => spring/camel-spring-4.8.3.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.8.3.xsd b/static/schema/spring/camel-spring-4.8.3.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.8.3.xsd rename to static/schema/spring/camel-spring-4.8.3.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 872eb514 Move schema to correct folder 872eb514 is described below commit 872eb514aeb642f40279c3e7e40c7987c864dbb6 Author: Claus Ibsen AuthorDate: Fri Dec 20 17:13:45 2024 +0100 Move schema to correct folder --- .../camel-spring-xml-3.22.3.xsd => spring/camel-spring-3.22.3.xsd}| 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-3.22.3.xsd b/static/schema/spring/camel-spring-3.22.3.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-3.22.3.xsd rename to static/schema/spring/camel-spring-3.22.3.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 7378e3f1 Move schema to correct folder 7378e3f1 is described below commit 7378e3f199fbb4cbb00a8d901a0b71d713f81867 Author: Claus Ibsen AuthorDate: Thu Dec 5 16:22:09 2024 +0100 Move schema to correct folder --- .../camel-spring-xml-4.8.2.xsd => spring/camel-spring-4.8.2.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.8.2.xsd b/static/schema/spring/camel-spring-4.8.2.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.8.2.xsd rename to static/schema/spring/camel-spring-4.8.2.xsd
(camel-website) branch main updated: Move schema to correct folder. And update camel-spring.xsd to latest 4.9.0 release
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new bcfac217 Move schema to correct folder. And update camel-spring.xsd to latest 4.9.0 release bcfac217 is described below commit bcfac217dc675f2c83a3e9cce24c63fda0993eb9 Author: Claus Ibsen AuthorDate: Wed Dec 4 14:09:33 2024 +0100 Move schema to correct folder. And update camel-spring.xsd to latest 4.9.0 release --- .../camel-spring-4.9.0.xsd}| 0 static/schema/spring/camel-spring.xsd | 188 + 2 files changed, 151 insertions(+), 37 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.9.0.xsd b/static/schema/spring/camel-spring-4.9.0.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.9.0.xsd rename to static/schema/spring/camel-spring-4.9.0.xsd diff --git a/static/schema/spring/camel-spring.xsd b/static/schema/spring/camel-spring.xsd index 16367a95..893dde75 100644 --- a/static/schema/spring/camel-spring.xsd +++ b/static/schema/spring/camel-spring.xsd @@ -568,6 +568,15 @@ Configures a org.apache.camel.FluentProducerTemplate + + + + + + + @@ -1849,6 +1858,15 @@ Allows setting multiple variables at the same time. + + + + + + + @@ -5561,9 +5579,9 @@ reduce memory usage to avoid storing too many non frequent used producers. @@ -5572,9 +5590,10 @@ this variable and not on the current org.apache.camel.Message . @@ -7396,6 +7415,7 @@ down. Default value: false + @@ -7409,6 +7429,7 @@ down. Default value: false + @@ -7430,9 +7451,10 @@ down. Default value: false @@ -7441,9 +7463,9 @@ this variable and not on the current org.apache.camel.Message . @@ -8672,6 +8694,49 @@ If the text is qualified with a character. Uses quote character by default. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8978,7 +9043,7 @@ value: 0 @@ -8988,7 +9053,7 @@ To enable pretty printing output nicely formatted. Is by default false. Default @@ -8997,7 +9062,7 @@ classes that has not been annotated with JAXB and providing jaxb.index descripto @@ -9178,6 +9243,16 @@ To enable pretty printing output nicely formatted. Is by default false. Default + + + + + + + @@ -9705,6 +9780,22 @@ value: true + + + + + + + + + + + + + + @@ -11546,9 +11637,9 @@ Sets a reference to use for lookup the policy in the registry. @@ -11615,9 +11706,9 @@ Returns null if timed out The default value is 2 (20 seconds). Default value @@ -14103,7 +14194,7 @@ Reference to the exception instance to lookup from the registry to throw. @@ -14113,9 +14204,9 @@ well. In other words, the variable is used instead of the message body, but ever @@ -14150,9 +14241,10 @@ org.apache.camel.language.simple.SimpleLanguage expression. @@ -14555,6 +14647,7 @@ To type used as a target data type in the transformation. + @@ -14568,6 +14661,7 @@ To type used as a target data type in the transformation. + @@ -14589,9 +14683,10 @@ To type used as a target data type in the transformation. @@ -14600,9 +14695,9 @@ this variable and not on the current org.apache.camel.Message . @@ -14743,6
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new d22eb8c7 Move schema to correct folder d22eb8c7 is described below commit d22eb8c7553cfacf270cfc4d052fe4a77e4fbf65 Author: Claus Ibsen AuthorDate: Mon Oct 21 19:39:12 2024 +0200 Move schema to correct folder --- .../camel-spring-xml-4.4.4.xsd => spring/camel-spring-4.4.4.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.4.4.xsd b/static/schema/spring/camel-spring-4.4.4.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.4.4.xsd rename to static/schema/spring/camel-spring-4.4.4.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new 5be36496 Move schema to correct folder 5be36496 is described below commit 5be364967b95fd7518f70d96bc4e0f6ec41df2d0 Author: Claus Ibsen AuthorDate: Mon Aug 12 14:52:41 2024 +0200 Move schema to correct folder --- static/schema/{spring-xml => spring}/camel-spring-xml-4.0.5.xsd | 0 static/schema/{spring-xml => spring}/camel-spring-xml-4.0.6.xsd | 0 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.0.5.xsd b/static/schema/spring/camel-spring-xml-4.0.5.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.0.5.xsd rename to static/schema/spring/camel-spring-xml-4.0.5.xsd diff --git a/static/schema/spring-xml/camel-spring-xml-4.0.6.xsd b/static/schema/spring/camel-spring-xml-4.0.6.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.0.6.xsd rename to static/schema/spring/camel-spring-xml-4.0.6.xsd
(camel-website) branch main updated: Move schema to correct folder
This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-website.git The following commit(s) were added to refs/heads/main by this push: new c37c2d6a Move schema to correct folder c37c2d6a is described below commit c37c2d6a824f5435b2dfbc55885c7f348ac5ab5f Author: Andrea Cosentino AuthorDate: Thu Jul 18 09:56:12 2024 +0200 Move schema to correct folder Signed-off-by: Andrea Cosentino --- .../camel-spring-xml-4.7.0.xsd => spring/camel-spring-4.7.0.xsd} | 0 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/static/schema/spring-xml/camel-spring-xml-4.7.0.xsd b/static/schema/spring/camel-spring-4.7.0.xsd similarity index 100% rename from static/schema/spring-xml/camel-spring-xml-4.7.0.xsd rename to static/schema/spring/camel-spring-4.7.0.xsd