[camel-spring-boot] branch main updated: Regen

2023-04-19 Thread davsclaus
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-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
 new 9297ee26a5b Regen
9297ee26a5b is described below

commit 9297ee26a5be05d03a559de1c3139866bf1fd51e
Author: Claus Ibsen 
AuthorDate: Thu Apr 20 07:05:43 2023 +0200

Regen
---
 .../apache/camel/springboot/catalog/components/dhis2.json| 12 
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dhis2.json
 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dhis2.json
index 87cb8c2b2be..e3a2ec17bfe 100644
--- 
a/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dhis2.json
+++ 
b/catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/components/dhis2.json
@@ -33,7 +33,7 @@
 "username": { "kind": "property", "displayName": "Username", "group": 
"security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.dhis2.Dhis2Configuration", "configurationField": 
"configuration", "description": "DHIS2 account username for accessing the DHIS2 
API" }
   },
   "properties": {
-"apiName": { "kind": "path", "displayName": "Api Name", "group": "common", 
"label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.dhis2.internal.Dhis2ApiName", "enum": [ "POST", 
"RESOURCE_TABLES", "GET" ], "deprecated": false, "deprecationNote": "", 
"autowired": false, "secret": false, "configurationClass": 
"org.apache.camel.component.dhis2.Dhis2Configuration", "configurationField": 
"configuration", "description": "API operation (e.g., get)" },
+"apiName": { "kind": "path", "displayName": "Api Name", "group": "common", 
"label": "", "required": true, "type": "object", "javaType": 
"org.apache.camel.component.dhis2.internal.Dhis2ApiName", "enum": [ "POST", 
"RESOURCE_TABLES", "GET", "DELETE", "PUT" ], "deprecated": false, 
"deprecationNote": "", "autowired": false, "secret": false, 
"configurationClass": "org.apache.camel.component.dhis2.Dhis2Configuration", 
"configurationField": "configuration", "description": "API operation (e.g [...]
 "methodName": { "kind": "path", "displayName": "Method Name", "group": 
"common", "label": "", "required": true, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "deprecationNote": "", "autowired": 
false, "secret": false, "configurationClass": 
"org.apache.camel.component.dhis2.Dhis2Configuration", "configurationField": 
"configuration", "description": "Subject of the API operation (e.g., resource)" 
},
 "baseApiUrl": { "kind": "parameter", "displayName": "Base Api Url", 
"group": "common", "label": "", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": false, "configurationClass": 
"org.apache.camel.component.dhis2.Dhis2Configuration", "configurationField": 
"configuration", "description": "DHIS2 server base API URL (e.g., 
https:\/\/play.dhis2.org\/2.39.1.1\/api)" },
 "inBody": { "kind": "parameter", "displayName": "In Body", "group": 
"common", "label": "", "required": false, "type": "string", "javaType": 
"java.lang.String", "deprecated": false, "autowired": false, "secret": false, 
"description": "Sets the name of a parameter to be passed in the exchange In 
Body" },
@@ -62,13 +62,17 @@
 "username": { "kind": "parameter", "displayName": "Username", "group": 
"security", "label": "security", "required": false, "type": "string", 
"javaType": "java.lang.String", "deprecated": false, "autowired": false, 
"secret": true, "configurationClass": 
"org.apache.camel.component.dhis2.Dhis2Configuration", "configurationField": 
"configuration", "description": "DHIS2 account username for accessing the DHIS2 
API" }
   },
   "apis": {
-"get": { "consumerOnly": false, "producerOnly": false, "description": 
"Sample API used by Dhis2 Component whose method signatures are read from Java 
source", "methods": { "collection": { "description": "", "signatures": [ 
"java.util.Iterator collection(String path, String itemType, Boolean paging, 
String fields, String filter, java.util.Map queryParams)" ] }, 
"resource": { "description": "", "signatures": [ "java.io.InputStream 
resource(String path, String fields, Str [...]
-"post": { "consumerOnly": false, "producerOnly": false, "description": 
"Sample API used by Dhis2 Component whose method signatures are read from Java 
source", "methods": { "resource": { "description": "", "signatures": [ 
"java.io.InputStream 

[camel] branch regen_bot updated (6f7cfb9e9fc -> 8196feecec0)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from 6f7cfb9e9fc CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)
 add 8196feecec0 Add API methods for deleting and updating resources & some 
other minor changes (#9900)

No new revisions were added by this update.

Summary of changes:
 .../dhis2/api/{Dhis2Post.java => Dhis2Delete.java} |  19 ++-
 .../apache/camel/component/dhis2/api/Dhis2Get.java |  25 ++--
 .../camel/component/dhis2/api/Dhis2Post.java   |   3 -
 .../dhis2/api/{Dhis2Post.java => Dhis2Put.java}|  20 ++--
 .../component/dhis2/api/RootJunctionEnum.java} |  14 +--
 ...2PostTestCase.java => Dhis2DeleteTestCase.java} |  24 ++--
 .../component/dhis2/api/Dhis2GetTestCase.java  | 122 ++-
 .../component/dhis2/api/Dhis2PostTestCase.java |   4 +-
 ...his2PostTestCase.java => Dhis2PutTestCase.java} |  24 ++--
 .../camel-dhis2/camel-dhis2-component/pom.xml  |  19 +++
 .../signatures/file-sig-api.txt|   4 +-
 java => Dhis2DeleteEndpointConfiguration.java} |   8 +-
 ...his2DeleteEndpointConfigurationConfigurer.java} |  43 ++-
 .../component/dhis2/Dhis2EndpointUriFactory.java   |   3 +-
 .../dhis2/Dhis2GetEndpointConfiguration.java   |  15 ++-
 .../Dhis2GetEndpointConfigurationConfigurer.java   |   7 ++
 .../dhis2/Dhis2PostEndpointConfiguration.java  |   2 +-
 ...ion.java => Dhis2PutEndpointConfiguration.java} |   8 +-
 ...> Dhis2PutEndpointConfigurationConfigurer.java} |  43 ++-
 .../dhis2/internal/Dhis2ApiCollection.java |  20 +++-
 .../component/dhis2/internal/Dhis2ApiName.java |   6 +-
 ...GetApiMethod.java => Dhis2DeleteApiMethod.java} |  23 +---
 .../dhis2/internal/Dhis2GetApiMethod.java  |   2 +
 ...is2GetApiMethod.java => Dhis2PutApiMethod.java} |  23 +---
 ...omponent.dhis2.Dhis2DeleteEndpointConfiguration |   2 +
 ...l.component.dhis2.Dhis2PutEndpointConfiguration |   2 +
 .../org/apache/camel/component/dhis2/dhis2.json|  12 +-
 .../src/main/docs/dhis2-component.adoc | 130 +
 .../camel/component/dhis2/Dhis2Endpoint.java   |  17 ++-
 .../camel/component/dhis2/Dhis2Producer.java   |  14 +++
 .../dhis2/{Dhis2PostIT.java => Dhis2DeleteIT.java} |  40 ---
 .../apache/camel/component/dhis2/Dhis2GetIT.java   |   2 +-
 .../apache/camel/component/dhis2/Dhis2PostIT.java  |  23 +++-
 .../dhis2/{Dhis2PostIT.java => Dhis2PutIT.java}|  43 ---
 .../component/dhis2/Dhis2ResourceTablesIT.java |   1 -
 .../apache/camel/component/dhis2/Environment.java  |  10 +-
 components/camel-dhis2/pom.xml |  22 +++-
 37 files changed, 553 insertions(+), 246 deletions(-)
 copy 
components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/{Dhis2Post.java
 => Dhis2Delete.java} (72%)
 copy 
components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/{Dhis2Post.java
 => Dhis2Put.java} (72%)
 copy 
components/camel-dhis2/{camel-dhis2-component/src/main/java/org/apache/camel/component/dhis2/Dhis2Producer.java
 => 
camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/RootJunctionEnum.java}
 (62%)
 copy 
components/camel-dhis2/camel-dhis2-api/src/test/java/org/apache/camel/component/dhis2/api/{Dhis2PostTestCase.java
 => Dhis2DeleteTestCase.java} (73%)
 copy 
components/camel-dhis2/camel-dhis2-api/src/test/java/org/apache/camel/component/dhis2/api/{Dhis2PostTestCase.java
 => Dhis2PutTestCase.java} (73%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2PostEndpointConfiguration.java
 => Dhis2DeleteEndpointConfiguration.java} (86%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2GetEndpointConfigurationConfigurer.java
 => Dhis2DeleteEndpointConfigurationConfigurer.java} (71%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2PostEndpointConfiguration.java
 => Dhis2PutEndpointConfiguration.java} (86%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2GetEndpointConfigurationConfigurer.java
 => Dhis2PutEndpointConfigurationConfigurer.java} (73%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/internal/{Dhis2GetApiMethod.java
 => Dhis2DeleteApiMethod.java} (62%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/internal/{Dhis2GetApiMethod.java
 => Dhis2PutApiMethod.java} (64%)
 create mode 100644 
components/camel-dhis2/camel-dhis2-component/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.component.dhis2.Dhis2DeleteEndpointConfiguration
 create mode 100644 

[camel] branch main updated (6f7cfb9e9fc -> 8196feecec0)

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


from 6f7cfb9e9fc CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)
 add 8196feecec0 Add API methods for deleting and updating resources & some 
other minor changes (#9900)

No new revisions were added by this update.

Summary of changes:
 .../dhis2/api/{Dhis2Post.java => Dhis2Delete.java} |  19 ++-
 .../apache/camel/component/dhis2/api/Dhis2Get.java |  25 ++--
 .../camel/component/dhis2/api/Dhis2Post.java   |   3 -
 .../dhis2/api/{Dhis2Post.java => Dhis2Put.java}|  20 ++--
 .../component/dhis2/api/RootJunctionEnum.java} |  14 +--
 ...2PostTestCase.java => Dhis2DeleteTestCase.java} |  24 ++--
 .../component/dhis2/api/Dhis2GetTestCase.java  | 122 ++-
 .../component/dhis2/api/Dhis2PostTestCase.java |   4 +-
 ...his2PostTestCase.java => Dhis2PutTestCase.java} |  24 ++--
 .../camel-dhis2/camel-dhis2-component/pom.xml  |  19 +++
 .../signatures/file-sig-api.txt|   4 +-
 java => Dhis2DeleteEndpointConfiguration.java} |   8 +-
 ...his2DeleteEndpointConfigurationConfigurer.java} |  43 ++-
 .../component/dhis2/Dhis2EndpointUriFactory.java   |   3 +-
 .../dhis2/Dhis2GetEndpointConfiguration.java   |  15 ++-
 .../Dhis2GetEndpointConfigurationConfigurer.java   |   7 ++
 .../dhis2/Dhis2PostEndpointConfiguration.java  |   2 +-
 ...ion.java => Dhis2PutEndpointConfiguration.java} |   8 +-
 ...> Dhis2PutEndpointConfigurationConfigurer.java} |  43 ++-
 .../dhis2/internal/Dhis2ApiCollection.java |  20 +++-
 .../component/dhis2/internal/Dhis2ApiName.java |   6 +-
 ...GetApiMethod.java => Dhis2DeleteApiMethod.java} |  23 +---
 .../dhis2/internal/Dhis2GetApiMethod.java  |   2 +
 ...is2GetApiMethod.java => Dhis2PutApiMethod.java} |  23 +---
 ...omponent.dhis2.Dhis2DeleteEndpointConfiguration |   2 +
 ...l.component.dhis2.Dhis2PutEndpointConfiguration |   2 +
 .../org/apache/camel/component/dhis2/dhis2.json|  12 +-
 .../src/main/docs/dhis2-component.adoc | 130 +
 .../camel/component/dhis2/Dhis2Endpoint.java   |  17 ++-
 .../camel/component/dhis2/Dhis2Producer.java   |  14 +++
 .../dhis2/{Dhis2PostIT.java => Dhis2DeleteIT.java} |  40 ---
 .../apache/camel/component/dhis2/Dhis2GetIT.java   |   2 +-
 .../apache/camel/component/dhis2/Dhis2PostIT.java  |  23 +++-
 .../dhis2/{Dhis2PostIT.java => Dhis2PutIT.java}|  43 ---
 .../component/dhis2/Dhis2ResourceTablesIT.java |   1 -
 .../apache/camel/component/dhis2/Environment.java  |  10 +-
 components/camel-dhis2/pom.xml |  22 +++-
 37 files changed, 553 insertions(+), 246 deletions(-)
 copy 
components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/{Dhis2Post.java
 => Dhis2Delete.java} (72%)
 copy 
components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/{Dhis2Post.java
 => Dhis2Put.java} (72%)
 copy 
components/camel-dhis2/{camel-dhis2-component/src/main/java/org/apache/camel/component/dhis2/Dhis2Producer.java
 => 
camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/RootJunctionEnum.java}
 (62%)
 copy 
components/camel-dhis2/camel-dhis2-api/src/test/java/org/apache/camel/component/dhis2/api/{Dhis2PostTestCase.java
 => Dhis2DeleteTestCase.java} (73%)
 copy 
components/camel-dhis2/camel-dhis2-api/src/test/java/org/apache/camel/component/dhis2/api/{Dhis2PostTestCase.java
 => Dhis2PutTestCase.java} (73%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2PostEndpointConfiguration.java
 => Dhis2DeleteEndpointConfiguration.java} (86%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2GetEndpointConfigurationConfigurer.java
 => Dhis2DeleteEndpointConfigurationConfigurer.java} (71%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2PostEndpointConfiguration.java
 => Dhis2PutEndpointConfiguration.java} (86%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/{Dhis2GetEndpointConfigurationConfigurer.java
 => Dhis2PutEndpointConfigurationConfigurer.java} (73%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/internal/{Dhis2GetApiMethod.java
 => Dhis2DeleteApiMethod.java} (62%)
 copy 
components/camel-dhis2/camel-dhis2-component/src/generated/java/org/apache/camel/component/dhis2/internal/{Dhis2GetApiMethod.java
 => Dhis2PutApiMethod.java} (64%)
 create mode 100644 
components/camel-dhis2/camel-dhis2-component/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.component.dhis2.Dhis2DeleteEndpointConfiguration
 create mode 100644 

[camel] branch camel-3.x updated: Add API methods for deleting and updating resources & some other minor changes (#9899)

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
 new 7750409ccce Add API methods for deleting and updating resources & some 
other minor changes (#9899)
7750409ccce is described below

commit 7750409cccedd471c0a25b19d59e217800d0a686
Author: Claude Mamo <823038+claudem...@users.noreply.github.com>
AuthorDate: Thu Apr 20 06:07:05 2023 +0200

Add API methods for deleting and updating resources & some other minor 
changes (#9899)

* Add API methods for deleting and updating resources

Point resource param to inBody by default

Add support for rootJunction param for GET method

Update to latest dhis2-java-sdk

* Add missing generated files
---
 .../dhis2/api/{Dhis2Post.java => Dhis2Delete.java} |  19 ++-
 .../apache/camel/component/dhis2/api/Dhis2Get.java |  25 ++--
 .../camel/component/dhis2/api/Dhis2Post.java   |   3 -
 .../dhis2/api/{Dhis2Post.java => Dhis2Put.java}|  20 ++--
 .../component/dhis2/api/RootJunctionEnum.java} |  14 +--
 ...2PostTestCase.java => Dhis2DeleteTestCase.java} |  24 ++--
 .../component/dhis2/api/Dhis2GetTestCase.java  | 122 +++-
 .../component/dhis2/api/Dhis2PostTestCase.java |   4 +-
 ...his2PostTestCase.java => Dhis2PutTestCase.java} |  24 ++--
 .../camel-dhis2/camel-dhis2-component/pom.xml  |  19 +++
 .../signatures/file-sig-api.txt|   4 +-
 java => Dhis2DeleteEndpointConfiguration.java} |   8 +-
 ...his2DeleteEndpointConfigurationConfigurer.java} |  43 ++-
 .../component/dhis2/Dhis2EndpointUriFactory.java   |   3 +-
 .../dhis2/Dhis2GetEndpointConfiguration.java   |  15 ++-
 .../Dhis2GetEndpointConfigurationConfigurer.java   |   7 ++
 .../dhis2/Dhis2PostEndpointConfiguration.java  |   2 +-
 ...ion.java => Dhis2PutEndpointConfiguration.java} |   8 +-
 ...> Dhis2PutEndpointConfigurationConfigurer.java} |  43 ++-
 .../dhis2/internal/Dhis2ApiCollection.java |  20 +++-
 .../component/dhis2/internal/Dhis2ApiName.java |   6 +-
 ...GetApiMethod.java => Dhis2DeleteApiMethod.java} |  23 +---
 .../dhis2/internal/Dhis2GetApiMethod.java  |   2 +
 ...is2GetApiMethod.java => Dhis2PutApiMethod.java} |  23 +---
 ...omponent.dhis2.Dhis2DeleteEndpointConfiguration |   2 +
 ...l.component.dhis2.Dhis2PutEndpointConfiguration |   2 +
 .../org/apache/camel/component/dhis2/dhis2.json|  12 +-
 .../src/main/docs/dhis2-component.adoc | 128 +
 .../camel/component/dhis2/Dhis2Endpoint.java   |  17 ++-
 .../camel/component/dhis2/Dhis2Producer.java   |  14 +++
 .../dhis2/{Dhis2PostIT.java => Dhis2DeleteIT.java} |  40 ---
 .../apache/camel/component/dhis2/Dhis2GetIT.java   |   2 +-
 .../apache/camel/component/dhis2/Dhis2PostIT.java  |  23 +++-
 .../dhis2/{Dhis2PostIT.java => Dhis2PutIT.java}|  43 ---
 .../component/dhis2/Dhis2ResourceTablesIT.java |   1 -
 .../apache/camel/component/dhis2/Environment.java  |  10 +-
 components/camel-dhis2/pom.xml |  22 +++-
 37 files changed, 551 insertions(+), 246 deletions(-)

diff --git 
a/components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/Dhis2Post.java
 
b/components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/Dhis2Delete.java
similarity index 72%
copy from 
components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/Dhis2Post.java
copy to 
components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/Dhis2Delete.java
index 1123acf7e3c..b67a448e51d 100644
--- 
a/components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/Dhis2Post.java
+++ 
b/components/camel-dhis2/camel-dhis2-api/src/main/java/org/apache/camel/component/dhis2/api/Dhis2Delete.java
@@ -21,37 +21,34 @@ import java.util.List;
 import java.util.Map;
 
 import org.hisp.dhis.integration.sdk.api.Dhis2Client;
-import org.hisp.dhis.integration.sdk.api.operation.PostOperation;
+import org.hisp.dhis.integration.sdk.api.operation.DeleteOperation;
 
-/**
- * Sample API used by Dhis2 Component whose method signatures are read from 
Java source.
- */
-public class Dhis2Post {
+public class Dhis2Delete {
 private final Dhis2Client dhis2Client;
 
-public Dhis2Post(Dhis2Client dhis2Client) {
+public Dhis2Delete(Dhis2Client dhis2Client) {
 this.dhis2Client = dhis2Client;
 }
 
 public InputStream resource(String path, Object resource, Map queryParams) {
-PostOperation postOperation = dhis2Client.post(path);
+DeleteOperation deleteOperation = dhis2Client.delete(path);
 if (queryParams != null) {
 for (Map.Entry queryParam : 
queryParams.entrySet()) {
 if 

[GitHub] [camel] davsclaus merged pull request #9900: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


davsclaus merged PR #9900:
URL: https://github.com/apache/camel/pull/9900


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] davsclaus merged pull request #9899: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


davsclaus merged PR #9899:
URL: https://github.com/apache/camel/pull/9899


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-quarkus] branch main updated: Updated CHANGELOG.md

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
 new 85b7870f36 Updated CHANGELOG.md
85b7870f36 is described below

commit 85b7870f363473eaea9e2aef8ba5c935f1f4a140
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Apr 20 03:18:07 2023 +

Updated CHANGELOG.md
---
 CHANGELOG.md | 5 +
 1 file changed, 5 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 53412d47b0..ad60c9b2f4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,13 +6,18 @@
 
 **Closed issues:**
 
+- \[camel-main\] Add `quarkus-jackson-jq-extra` to jq extension runtime module 
dependencies [\#4799](https://github.com/apache/camel-quarkus/issues/4799)
 - Test OpenTelemetry extension integration with `opentelemetry-jdbc` 
[\#4789](https://github.com/apache/camel-quarkus/issues/4789)
+- Add Build-Date in MANIFEST.MF in Camel Quarkus release JARs 
[\#4711](https://github.com/apache/camel-quarkus/issues/4711)
 - Olingo4 olingo4endpointPropertyNames are missing queryParams for read method 
[\#4654](https://github.com/apache/camel-quarkus/issues/4654)
 
 **Merged pull requests:**
 
+- Add OpenTelemetry documentation for CDI bean instrumentation 
[\#4802](https://github.com/apache/camel-quarkus/pull/4802) 
([jamesnetherton](https://github.com/jamesnetherton))
+- release: complete release process to be more explicit 
[\#4800](https://github.com/apache/camel-quarkus/pull/4800) 
([aldettinger](https://github.com/aldettinger))
 - Restore maven.wagon.http.retryHandler.count to CQ\_MAVEN\_ARGS 
[\#4795](https://github.com/apache/camel-quarkus/pull/4795) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Fix OpenTelemetry test assertions argument order 
[\#4792](https://github.com/apache/camel-quarkus/pull/4792) 
([jamesnetherton](https://github.com/jamesnetherton))
+- Enabling Google BigQuery, Google PubSub, Zendesk  and Stax integration tests 
[\#4791](https://github.com/apache/camel-quarkus/pull/4791) 
([zbendhiba](https://github.com/zbendhiba))
 - Test OpenTelemetry extension integration with opentelemetry-jdbc 
[\#4790](https://github.com/apache/camel-quarkus/pull/4790) 
([jamesnetherton](https://github.com/jamesnetherton))
 - Fix Spring integration test 
[\#4788](https://github.com/apache/camel-quarkus/pull/4788) 
([jbonofre](https://github.com/jbonofre))
 - Bump quarkiverse-mybatis.version from 2.0.0.CR2 to 2.0.0 
[\#4787](https://github.com/apache/camel-quarkus/pull/4787) 
([dependabot[bot]](https://github.com/apps/dependabot))



[GitHub] [camel-quarkus] zhfeng commented on pull request #4805: Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1

2023-04-19 Thread via GitHub


zhfeng commented on PR #4805:
URL: https://github.com/apache/camel-quarkus/pull/4805#issuecomment-1515635140

   It shoulde be suppressed by
   - #4803 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] dependabot[bot] commented on pull request #4805: Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1

2023-04-19 Thread via GitHub


dependabot[bot] commented on PR #4805:
URL: https://github.com/apache/camel-quarkus/pull/4805#issuecomment-1515635178

   OK, I won't notify you again about this release, but will get in touch when 
a new version is available. You can also ignore all major, minor, or patch 
releases for a dependency by adding an [`ignore` 
condition](https://docs.github.com/en/code-security/supply-chain-security/configuration-options-for-dependency-updates#ignore)
 with the desired `update_types` to your config file.
   
   If you change your mind, just re-open this PR and I'll resolve any conflicts 
on it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] zhfeng closed pull request #4805: Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1

2023-04-19 Thread via GitHub


zhfeng closed pull request #4805: Bump quarkiverse-cxf.version from 2.0.0.CR1 
to 2.0.1
URL: https://github.com/apache/camel-quarkus/pull/4805


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] github-actions[bot] commented on pull request #4805: Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #4805:
URL: https://github.com/apache/camel-quarkus/pull/4805#issuecomment-1515463415

   Branch auto synchronized due to changes in generated files. New workflow run 
triggered:
   
   https://github.com/apache/camel-quarkus/actions/runs/4748424645


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-quarkus] branch dependabot/maven/quarkiverse-cxf.version-2.0.1 updated (9d68a1a336 -> c049ddbdaf)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/quarkiverse-cxf.version-2.0.1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


from 9d68a1a336 Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1
 add c049ddbdaf Auto generated changes for dependabot commit 
9d68a1a33646ea6260ea453c92b68785dbd5b685

No new revisions were added by this update.

Summary of changes:
 poms/bom/src/main/generated/flattened-full-pom.xml | 449 +++--
 .../src/main/generated/flattened-reduced-pom.xml   |  61 +--
 .../generated/flattened-reduced-verbose-pom.xml| 449 +++--
 3 files changed, 502 insertions(+), 457 deletions(-)



[GitHub] [camel-quarkus] github-actions[bot] commented on pull request #4804: Bump quarkiverse-freemarker.version from 1.0.0.Alpha2 to 1.0.0

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #4804:
URL: https://github.com/apache/camel-quarkus/pull/4804#issuecomment-1515460015

   Branch auto synchronized due to changes in generated files. New workflow run 
triggered:
   
   https://github.com/apache/camel-quarkus/actions/runs/4748398451


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-quarkus] branch dependabot/maven/quarkiverse-freemarker.version-1.0.0 updated (9ef8063833 -> 65d028e6f5)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/quarkiverse-freemarker.version-1.0.0
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


from 9ef8063833 Bump quarkiverse-freemarker.version from 1.0.0.Alpha2 to 
1.0.0
 add 65d028e6f5 Auto generated changes for dependabot commit 
9ef8063833c6ca09a0354be0349cd8bb9f7ebe6c

No new revisions were added by this update.

Summary of changes:
 poms/bom/src/main/generated/flattened-full-pom.xml| 4 ++--
 poms/bom/src/main/generated/flattened-reduced-pom.xml | 4 ++--
 poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)



[camel-quarkus] branch dependabot/maven/quarkiverse-cxf.version-2.0.1 created (now 9d68a1a336)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/quarkiverse-cxf.version-2.0.1
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


  at 9d68a1a336 Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1

No new revisions were added by this update.



[GitHub] [camel-quarkus] dependabot[bot] opened a new pull request, #4805: Bump quarkiverse-cxf.version from 2.0.0.CR1 to 2.0.1

2023-04-19 Thread via GitHub


dependabot[bot] opened a new pull request, #4805:
URL: https://github.com/apache/camel-quarkus/pull/4805

   Bumps `quarkiverse-cxf.version` from 2.0.0.CR1 to 2.0.1.
   Updates `quarkus-cxf-bom` from 2.0.0.CR1 to 2.0.1
   
   Release notes
   Sourced from https://github.com/quarkiverse/quarkiverse-cxf/releases;>quarkus-cxf-bom's
 releases.
   
   0.14.0: Quarkus 2.8, CXF 3.5.1, WS-Security, JAX-WS Handlers, JAX-WS 
Providers
   What's Changed
   
   Bump quarkus.version from 2.7.0.Final to 2.7.1.Final by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/355;>quarkiverse/quarkus-cxf#355
   Update documentation for client with WS-Security https://redirect.github.com/quarkiverse/quarkiverse-cxf/issues/356;>#356
 by https://github.com/corrantho;>@​corrantho in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/357;>quarkiverse/quarkus-cxf#357
   Fix README.md by https://github.com/gastaldi;>@​gastaldi in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/358;>quarkiverse/quarkus-cxf#358
   Bump maven-compiler-plugin from 3.9.0 to 3.10.0 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/359;>quarkiverse/quarkus-cxf#359
   ArC based fix for issue https://redirect.github.com/quarkiverse/quarkiverse-cxf/issues/346;>#346
 by https://github.com/shumonsharif;>@​shumonsharif 
in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/360;>quarkiverse/quarkus-cxf#360
   Bug fix and log cleanup by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/363;>quarkiverse/quarkus-cxf#363
   Bump quarkus.version from 2.7.1.Final to 2.7.2.Final by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/367;>quarkiverse/quarkus-cxf#367
   Bump cxf.version from 3.5.0 to 3.5.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/368;>quarkiverse/quarkus-cxf#368
   Bump quarkus.version from 2.7.2.Final to 2.7.3.Final by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/369;>quarkiverse/quarkus-cxf#369
   Bump quarkus.version from 2.7.3.Final to 2.7.4.Final by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/372;>quarkiverse/quarkus-cxf#372
   WS-Security native mode support by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/364;>quarkiverse/quarkus-cxf#364
   Bump maven-compiler-plugin from 3.10.0 to 3.10.1 by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/374;>quarkiverse/quarkus-cxf#374
   Modularization, JAX-WS Handlers integration and Documentation updates by 
https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/379;>quarkiverse/quarkus-cxf#379
   Bump quarkus.version from 2.7.4.Final to 2.7.5.Final by https://github.com/dependabot;>@​dependabot in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/378;>quarkiverse/quarkus-cxf#378
   Documentation updates by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/381;>quarkiverse/quarkus-cxf#381
   Documentation updates by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/382;>quarkiverse/quarkus-cxf#382
   JAX-WS Handlers tests by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/383;>quarkiverse/quarkus-cxf#383
   Doc updates by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/384;>quarkiverse/quarkus-cxf#384
   Configure LGTM settings by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/391;>quarkiverse/quarkus-cxf#391
   Address LGTM alerts by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/392;>quarkiverse/quarkus-cxf#392
   LGTM config update by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/393;>quarkiverse/quarkus-cxf#393
   LGTM config update by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/394;>quarkiverse/quarkus-cxf#394
   Address LGTM finding by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/395;>quarkiverse/quarkus-cxf#395
   Doc fix properties for SOAP bindings by https://github.com/shumonsharif;>@​shumonsharif in https://redirect.github.com/quarkiverse/quarkus-cxf/pull/396;>quarkiverse/quarkus-cxf#396
   Add support for JAX-WS Providers by 

[camel-quarkus] branch dependabot/maven/quarkiverse-freemarker.version-1.0.0 created (now 9ef8063833)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/maven/quarkiverse-freemarker.version-1.0.0
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


  at 9ef8063833 Bump quarkiverse-freemarker.version from 1.0.0.Alpha2 to 
1.0.0

No new revisions were added by this update.



[GitHub] [camel-quarkus] dependabot[bot] opened a new pull request, #4804: Bump quarkiverse-freemarker.version from 1.0.0.Alpha2 to 1.0.0

2023-04-19 Thread via GitHub


dependabot[bot] opened a new pull request, #4804:
URL: https://github.com/apache/camel-quarkus/pull/4804

   Bumps `quarkiverse-freemarker.version` from 1.0.0.Alpha2 to 1.0.0.
   Updates `quarkus-freemarker` from 1.0.0.Alpha2 to 1.0.0
   
   Updates `quarkus-freemarker-deployment` from 1.0.0.Alpha2 to 1.0.0
   
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] ffang commented on pull request #9850: [CAMEL-19129] Improve CXF SOAP documentation

2023-04-19 Thread via GitHub


ffang commented on PR #9850:
URL: https://github.com/apache/camel/pull/9850#issuecomment-1515426995

   Thanks @llowinge !


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-karavan] mgubaidullin opened a new issue, #734: User should be able to use 'to' DSL

2023-04-19 Thread via GitHub


mgubaidullin opened a new issue, #734:
URL: https://github.com/apache/camel-karavan/issues/734

   ex. with placeholder


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot_3x updated (fe236c9318d -> e39b1a32e90)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_3x
in repository https://gitbox.apache.org/repos/asf/camel.git


from fe236c9318d CAMEL-19278: Update saxon to 11.5
 add e39b1a32e90 CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)

No new revisions were added by this update.

Summary of changes:
 .../cloudtrail/CloudtrailConsumerHealthCheck.java  |  3 +-
 .../SecretsManagerClientHealthCheck.java   |  4 +--
 .../aws2/athena/Athena2ClientHealthCheck.java  |  3 +-
 .../component/aws2/cw/Cw2ClientHealthCheck.java|  4 +--
 .../component/aws2/ddb/Ddb2ClientHealthCheck.java  |  4 +--
 .../component/aws2/ec2/AWS2EC2HealthCheck.java |  4 +--
 .../component/aws2/ecs/ECS2ClientHealthCheck.java  |  3 +-
 .../component/aws2/eks/EKS2ClientHealthCheck.java  |  4 +--
 .../eventbridge/EventbridgeClientHealthCheck.java  |  4 +--
 .../camel/component/aws2/iam/IAM2HealthCheck.java  |  4 +--
 .../aws2/kinesis/Kinesis2ConsumerHealthCheck.java  | 33 +-
 .../aws2/lambda/Lambda2ClientHealthCheck.java  |  4 +--
 .../component/aws2/mq/MQ2ClientHealthCheck.java|  4 +--
 .../camel/component/aws2/msk/MSK2HealthCheck.java  |  5 +---
 .../aws2/s3/AWS2S3ConsumerHealthCheck.java |  3 +-
 .../camel/component/aws2/ses/Ses2HealthCheck.java  |  4 +--
 .../camel/component/aws2/sns/Sns2HealthCheck.java  |  5 +---
 .../aws2/sqs/Sqs2ConsumerHealthCheck.java  |  4 +--
 .../translate/Translate2ClientHealthCheck.java |  4 +--
 19 files changed, 37 insertions(+), 66 deletions(-)



[GitHub] [camel] github-actions[bot] commented on pull request #9900: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9900:
URL: https://github.com/apache/camel/pull/9900#issuecomment-1515337404

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 0 | 1 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] rhuan080 closed pull request #9902: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


rhuan080 closed pull request #9902: CAMEL-19281 - Fixing the connection memory 
leak issue
URL: https://github.com/apache/camel/pull/9902


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9899: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9899:
URL: https://github.com/apache/camel/pull/9899#issuecomment-1515329605

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 2 | 2 | 0 | 2 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot updated (6626c18ae51 -> 6f7cfb9e9fc)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from 6626c18ae51 CAMEL-19278: Update saxon to 11.5
 add 6f7cfb9e9fc CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)

No new revisions were added by this update.

Summary of changes:
 .../cloudtrail/CloudtrailConsumerHealthCheck.java  |  3 +-
 .../SecretsManagerClientHealthCheck.java   |  4 +--
 .../aws2/athena/Athena2ClientHealthCheck.java  |  3 +-
 .../component/aws2/cw/Cw2ClientHealthCheck.java|  4 +--
 .../component/aws2/ddb/Ddb2ClientHealthCheck.java  |  4 +--
 .../component/aws2/ec2/AWS2EC2HealthCheck.java |  4 +--
 .../component/aws2/ecs/ECS2ClientHealthCheck.java  |  3 +-
 .../component/aws2/eks/EKS2ClientHealthCheck.java  |  4 +--
 .../eventbridge/EventbridgeClientHealthCheck.java  |  4 +--
 .../camel/component/aws2/iam/IAM2HealthCheck.java  |  4 +--
 .../aws2/kinesis/Kinesis2ConsumerHealthCheck.java  | 33 +-
 .../aws2/lambda/Lambda2ClientHealthCheck.java  |  4 +--
 .../component/aws2/mq/MQ2ClientHealthCheck.java|  4 +--
 .../camel/component/aws2/msk/MSK2HealthCheck.java  |  5 +---
 .../aws2/s3/AWS2S3ConsumerHealthCheck.java |  3 +-
 .../camel/component/aws2/ses/Ses2HealthCheck.java  |  4 +--
 .../camel/component/aws2/sns/Sns2HealthCheck.java  |  5 +---
 .../aws2/sqs/Sqs2ConsumerHealthCheck.java  |  4 +--
 .../translate/Translate2ClientHealthCheck.java |  4 +--
 19 files changed, 37 insertions(+), 66 deletions(-)



[GitHub] [camel] github-actions[bot] commented on pull request #9898: [Camel-19280] camel coap observe

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9898:
URL: https://github.com/apache/camel/pull/9898#issuecomment-1515284098

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 1 | 0 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9902: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9902:
URL: https://github.com/apache/camel/pull/9902#issuecomment-1515266725

   :warning: This PR changes Camel components and will be tested automatically.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] rhuan080 opened a new pull request, #9902: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


rhuan080 opened a new pull request, #9902:
URL: https://github.com/apache/camel/pull/9902

   # Description
   
   
   
   # Target
   
   - [ ] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [ ] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [ ] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [ ] I formatted the code using `mvn -Pformat,fastinstall install && mvn 
-Psourcecheck`
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch camel-3.20.x updated: CAMEL-19281 - Fixing the connection memory leak issue (#9901)

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
 new 25cb36f1f66 CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)
25cb36f1f66 is described below

commit 25cb36f1f66e644e3a0c81da2c35b8bcad6dc627
Author: Rhuan Rocha 
AuthorDate: Wed Apr 19 16:25:09 2023 -0300

CAMEL-19281 - Fixing the connection memory leak issue (#9901)

Signed-off-by: Rhuan Rocha 
---
 .../cloudtrail/CloudtrailConsumerHealthCheck.java  |  3 +-
 .../SecretsManagerClientHealthCheck.java   |  4 +--
 .../aws2/athena/Athena2ClientHealthCheck.java  |  3 +-
 .../component/aws2/cw/Cw2ClientHealthCheck.java|  4 +--
 .../component/aws2/ddb/Ddb2ClientHealthCheck.java  |  4 +--
 .../component/aws2/ec2/AWS2EC2HealthCheck.java |  4 +--
 .../component/aws2/eks/EKS2ClientHealthCheck.java  |  4 +--
 .../eventbridge/EventbridgeClientHealthCheck.java  |  4 +--
 .../camel/component/aws2/iam/IAM2HealthCheck.java  |  4 +--
 .../aws2/kinesis/Kinesis2ConsumerHealthCheck.java  | 33 +-
 .../aws2/lambda/Lambda2ClientHealthCheck.java  |  4 +--
 .../component/aws2/mq/MQ2ClientHealthCheck.java|  4 +--
 .../aws2/s3/AWS2S3ConsumerHealthCheck.java |  3 +-
 .../camel/component/aws2/sns/Sns2HealthCheck.java  |  5 +---
 .../aws2/sqs/Sqs2ConsumerHealthCheck.java  |  4 +--
 .../translate/Translate2ClientHealthCheck.java |  4 +--
 16 files changed, 34 insertions(+), 57 deletions(-)

diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
index aea24fe3f00..82b1f3e7704 100644
--- 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
@@ -44,7 +44,7 @@ public class CloudtrailConsumerHealthCheck extends 
AbstractHealthCheck {
 @Override
 protected void doCall(HealthCheckResultBuilder builder, Map options) {
 
-try {
+try (CloudTrailClient client = 
cloudtrailConsumer.getEndpoint().getClient()) {
 CloudtrailConfiguration configuration = 
cloudtrailConsumer.getEndpoint().getConfiguration();
 if (ObjectHelper.isNotEmpty(configuration.getRegion())) {
 if 
(!CloudTrailClient.serviceMetadata().regions().contains(Region.of(configuration.getRegion(
 {
@@ -53,7 +53,6 @@ public class CloudtrailConsumerHealthCheck extends 
AbstractHealthCheck {
 return;
 }
 }
-CloudTrailClient client = 
cloudtrailConsumer.getEndpoint().getClient();
 
 
client.listChannels(ListChannelsRequest.builder().maxResults(1).build());
 } catch (AwsServiceException e) {
diff --git 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
index 0a29270ba74..9a65e367386 100644
--- 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
+++ 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
@@ -52,9 +52,7 @@ public class SecretsManagerClientHealthCheck extends 
AbstractHealthCheck {
 return;
 }
 }
-try {
-SecretsManagerClient secretsManagerClient = 
secretsManagerEndpoint.getSecretsManagerClient();
-
+try (SecretsManagerClient secretsManagerClient = 
secretsManagerEndpoint.getSecretsManagerClient()) {
 
secretsManagerClient.listSecrets(ListSecretsRequest.builder().maxResults(1).build());
 } catch (AwsServiceException e) {
 builder.message(e.getMessage());
diff --git 
a/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
 
b/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
index e79506f4d32..481c7902c6c 100644
--- 
a/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
+++ 
b/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
@@ -47,7 +47,7 @@ 

[camel] branch camel-3.x updated: CAMEL-19281 - Fixing the connection memory leak issue (#9901)

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
 new e39b1a32e90 CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)
e39b1a32e90 is described below

commit e39b1a32e90d592a9c3b5a70ed3b37b12f338a0a
Author: Rhuan Rocha 
AuthorDate: Wed Apr 19 16:25:09 2023 -0300

CAMEL-19281 - Fixing the connection memory leak issue (#9901)

Signed-off-by: Rhuan Rocha 
---
 .../cloudtrail/CloudtrailConsumerHealthCheck.java  |  3 +-
 .../SecretsManagerClientHealthCheck.java   |  4 +--
 .../aws2/athena/Athena2ClientHealthCheck.java  |  3 +-
 .../component/aws2/cw/Cw2ClientHealthCheck.java|  4 +--
 .../component/aws2/ddb/Ddb2ClientHealthCheck.java  |  4 +--
 .../component/aws2/ec2/AWS2EC2HealthCheck.java |  4 +--
 .../component/aws2/ecs/ECS2ClientHealthCheck.java  |  3 +-
 .../component/aws2/eks/EKS2ClientHealthCheck.java  |  4 +--
 .../eventbridge/EventbridgeClientHealthCheck.java  |  4 +--
 .../camel/component/aws2/iam/IAM2HealthCheck.java  |  4 +--
 .../aws2/kinesis/Kinesis2ConsumerHealthCheck.java  | 33 +-
 .../aws2/lambda/Lambda2ClientHealthCheck.java  |  4 +--
 .../component/aws2/mq/MQ2ClientHealthCheck.java|  4 +--
 .../camel/component/aws2/msk/MSK2HealthCheck.java  |  5 +---
 .../aws2/s3/AWS2S3ConsumerHealthCheck.java |  3 +-
 .../camel/component/aws2/ses/Ses2HealthCheck.java  |  4 +--
 .../camel/component/aws2/sns/Sns2HealthCheck.java  |  5 +---
 .../aws2/sqs/Sqs2ConsumerHealthCheck.java  |  4 +--
 .../translate/Translate2ClientHealthCheck.java |  4 +--
 19 files changed, 37 insertions(+), 66 deletions(-)

diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
index bf24bdc11b1..fd4a7ecf781 100644
--- 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
@@ -38,7 +38,7 @@ public class CloudtrailConsumerHealthCheck extends 
AbstractHealthCheck {
 @Override
 protected void doCall(HealthCheckResultBuilder builder, Map options) {
 
-try {
+try (CloudTrailClient client = 
cloudtrailConsumer.getEndpoint().getClient()) {
 CloudtrailConfiguration configuration = 
cloudtrailConsumer.getEndpoint().getConfiguration();
 if (ObjectHelper.isNotEmpty(configuration.getRegion())) {
 if 
(!CloudTrailClient.serviceMetadata().regions().contains(Region.of(configuration.getRegion(
 {
@@ -47,7 +47,6 @@ public class CloudtrailConsumerHealthCheck extends 
AbstractHealthCheck {
 return;
 }
 }
-CloudTrailClient client = 
cloudtrailConsumer.getEndpoint().getClient();
 
 
client.listChannels(ListChannelsRequest.builder().maxResults(1).build());
 } catch (AwsServiceException e) {
diff --git 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
index d7197d1f46a..9048a2ea051 100644
--- 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
+++ 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
@@ -46,9 +46,7 @@ public class SecretsManagerClientHealthCheck extends 
AbstractHealthCheck {
 return;
 }
 }
-try {
-SecretsManagerClient secretsManagerClient = 
secretsManagerEndpoint.getSecretsManagerClient();
-
+try (SecretsManagerClient secretsManagerClient = 
secretsManagerEndpoint.getSecretsManagerClient()) {
 
secretsManagerClient.listSecrets(ListSecretsRequest.builder().maxResults(1).build());
 } catch (AwsServiceException e) {
 builder.message(e.getMessage());
diff --git 
a/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
 
b/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
index b4a489e5c0f..64f33e3345e 100644
--- 

[camel] branch main updated: CAMEL-19281 - Fixing the connection memory leak issue (#9901)

2023-04-19 Thread davsclaus
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.git


The following commit(s) were added to refs/heads/main by this push:
 new 6f7cfb9e9fc CAMEL-19281 - Fixing the connection memory leak issue 
(#9901)
6f7cfb9e9fc is described below

commit 6f7cfb9e9fcb7dfbaf640fd8aae6644977b78ece
Author: Rhuan Rocha 
AuthorDate: Wed Apr 19 16:25:09 2023 -0300

CAMEL-19281 - Fixing the connection memory leak issue (#9901)

Signed-off-by: Rhuan Rocha 
---
 .../cloudtrail/CloudtrailConsumerHealthCheck.java  |  3 +-
 .../SecretsManagerClientHealthCheck.java   |  4 +--
 .../aws2/athena/Athena2ClientHealthCheck.java  |  3 +-
 .../component/aws2/cw/Cw2ClientHealthCheck.java|  4 +--
 .../component/aws2/ddb/Ddb2ClientHealthCheck.java  |  4 +--
 .../component/aws2/ec2/AWS2EC2HealthCheck.java |  4 +--
 .../component/aws2/ecs/ECS2ClientHealthCheck.java  |  3 +-
 .../component/aws2/eks/EKS2ClientHealthCheck.java  |  4 +--
 .../eventbridge/EventbridgeClientHealthCheck.java  |  4 +--
 .../camel/component/aws2/iam/IAM2HealthCheck.java  |  4 +--
 .../aws2/kinesis/Kinesis2ConsumerHealthCheck.java  | 33 +-
 .../aws2/lambda/Lambda2ClientHealthCheck.java  |  4 +--
 .../component/aws2/mq/MQ2ClientHealthCheck.java|  4 +--
 .../camel/component/aws2/msk/MSK2HealthCheck.java  |  5 +---
 .../aws2/s3/AWS2S3ConsumerHealthCheck.java |  3 +-
 .../camel/component/aws2/ses/Ses2HealthCheck.java  |  4 +--
 .../camel/component/aws2/sns/Sns2HealthCheck.java  |  5 +---
 .../aws2/sqs/Sqs2ConsumerHealthCheck.java  |  4 +--
 .../translate/Translate2ClientHealthCheck.java |  4 +--
 19 files changed, 37 insertions(+), 66 deletions(-)

diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
index bf24bdc11b1..fd4a7ecf781 100644
--- 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/CloudtrailConsumerHealthCheck.java
@@ -38,7 +38,7 @@ public class CloudtrailConsumerHealthCheck extends 
AbstractHealthCheck {
 @Override
 protected void doCall(HealthCheckResultBuilder builder, Map options) {
 
-try {
+try (CloudTrailClient client = 
cloudtrailConsumer.getEndpoint().getClient()) {
 CloudtrailConfiguration configuration = 
cloudtrailConsumer.getEndpoint().getConfiguration();
 if (ObjectHelper.isNotEmpty(configuration.getRegion())) {
 if 
(!CloudTrailClient.serviceMetadata().regions().contains(Region.of(configuration.getRegion(
 {
@@ -47,7 +47,6 @@ public class CloudtrailConsumerHealthCheck extends 
AbstractHealthCheck {
 return;
 }
 }
-CloudTrailClient client = 
cloudtrailConsumer.getEndpoint().getClient();
 
 
client.listChannels(ListChannelsRequest.builder().maxResults(1).build());
 } catch (AwsServiceException e) {
diff --git 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
index d7197d1f46a..9048a2ea051 100644
--- 
a/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
+++ 
b/components/camel-aws/camel-aws-secrets-manager/src/main/java/org/apache/camel/component/aws/secretsmanager/SecretsManagerClientHealthCheck.java
@@ -46,9 +46,7 @@ public class SecretsManagerClientHealthCheck extends 
AbstractHealthCheck {
 return;
 }
 }
-try {
-SecretsManagerClient secretsManagerClient = 
secretsManagerEndpoint.getSecretsManagerClient();
-
+try (SecretsManagerClient secretsManagerClient = 
secretsManagerEndpoint.getSecretsManagerClient()) {
 
secretsManagerClient.listSecrets(ListSecretsRequest.builder().maxResults(1).build());
 } catch (AwsServiceException e) {
 builder.message(e.getMessage());
diff --git 
a/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
 
b/components/camel-aws/camel-aws2-athena/src/main/java/org/apache/camel/component/aws2/athena/Athena2ClientHealthCheck.java
index b4a489e5c0f..64f33e3345e 100644
--- 

[GitHub] [camel] davsclaus merged pull request #9901: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


davsclaus merged PR #9901:
URL: https://github.com/apache/camel/pull/9901


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot_3x updated (3a3f37f9d28 -> fe236c9318d)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot_3x
in repository https://gitbox.apache.org/repos/asf/camel.git


from 3a3f37f9d28 CAMEL-19276 - camel-jq: Include jackson-jq extras module
 add fe236c9318d CAMEL-19278: Update saxon to 11.5

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[GitHub] [camel-quarkus] ppalaga opened a new pull request, #4803: Upgrade to quarkus-cxf 2.0.1, test for #4746

2023-04-19 Thread via GitHub


ppalaga opened a new pull request, #4803:
URL: https://github.com/apache/camel-quarkus/pull/4803

   Fix #4746


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot updated (c745ba0b709 -> 6626c18ae51)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from c745ba0b709 CAMEL-19139: Disable Build-Date in MANIFEST.MF as its not 
needed anymore.
 add 6626c18ae51 CAMEL-19278: Update saxon to 11.5

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[GitHub] [camel] github-actions[bot] commented on pull request #9901: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9901:
URL: https://github.com/apache/camel/pull/9901#issuecomment-1515164506

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 19 | 19 | 0 | 19 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch main updated: CAMEL-19278: Update saxon to 11.5

2023-04-19 Thread davsclaus
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.git


The following commit(s) were added to refs/heads/main by this push:
 new 6626c18ae51 CAMEL-19278: Update saxon to 11.5
6626c18ae51 is described below

commit 6626c18ae511cd551acdbc0ea0ed00ef0f406848
Author: Claus Ibsen 
AuthorDate: Wed Apr 19 19:32:53 2023 +0200

CAMEL-19278: Update saxon to 11.5
---
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 24799b7a57b..4a17fd2ebd1 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -438,7 +438,7 @@
 4.9.4
 1.18.0
 2.2.21
-11.4
+11.5
 2.11.12
 2.13.10
 2.9.0
diff --git a/parent/pom.xml b/parent/pom.xml
index a5270eaeb57..cc71d515516 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -433,7 +433,7 @@
 4.9.4
 1.18.0
 2.2.21
-11.4
+11.5
 2.11.12
 2.13.10
 2.9.0



[camel] branch camel-3.x updated: CAMEL-19278: Update saxon to 11.5

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
 new fe236c9318d CAMEL-19278: Update saxon to 11.5
fe236c9318d is described below

commit fe236c9318d7301d41e7665c969612429673e566
Author: Claus Ibsen 
AuthorDate: Wed Apr 19 19:32:24 2023 +0200

CAMEL-19278: Update saxon to 11.5
---
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index be67d7a68b4..099e00dac89 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -478,7 +478,7 @@
 4.9.4
 1.18.0
 2.2.21
-11.4
+11.5
 2.11.12
 2.13.9
 2.9.0
diff --git a/parent/pom.xml b/parent/pom.xml
index 2819086a53e..dce60d36489 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -473,7 +473,7 @@
 4.9.4
 1.18.0
 2.2.21
-11.4
+11.5
 2.11.12
 2.13.9
 2.9.0



[GitHub] [camel] davsclaus merged pull request #9897: CAMEL-19278: Update saxon to 11.5

2023-04-19 Thread via GitHub


davsclaus merged PR #9897:
URL: https://github.com/apache/camel/pull/9897


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch camel-3.20.x updated: CAMEL-19278: Update saxon to 11.5 (#9897)

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.20.x by this push:
 new d7ded2ce4d1 CAMEL-19278: Update saxon to 11.5 (#9897)
d7ded2ce4d1 is described below

commit d7ded2ce4d17d9264e00c996aba4119eab315194
Author: Alex <12470950+alex...@users.noreply.github.com>
AuthorDate: Wed Apr 19 20:31:22 2023 +0300

CAMEL-19278: Update saxon to 11.5 (#9897)

* CAMEL-19278: Update saxon to 11.5

* CAMEL-19278: Update parent pom with saxon 11.5
---
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index c663ee5df7b..af8d8f7e5f0 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -486,7 +486,7 @@
 4.9.4
 1.18.0
 2.2.21
-11.4
+11.5
 2.13.9
 2.11.12
 2.9.0
diff --git a/parent/pom.xml b/parent/pom.xml
index ee49b14a5f5..83dadf46922 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -472,7 +472,7 @@
 4.9.4
 1.18.0
 2.2.21
-11.4
+11.5
 2.11.12
 2.13.9
 2.9.0



[GitHub] [camel] llowinge commented on pull request #9850: [CAMEL-19129] Improve CXF SOAP documentation

2023-04-19 Thread via GitHub


llowinge commented on PR #9850:
URL: https://github.com/apache/camel/pull/9850#issuecomment-1515090571

   @ffang I think it is OK now. WDYT ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] rhuan080 commented on pull request #9901: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


rhuan080 commented on PR #9901:
URL: https://github.com/apache/camel/pull/9901#issuecomment-1515069266

   Hi, let me know the branches that I need to propagate this fixing.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] rhuan080 opened a new pull request, #9901: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


rhuan080 opened a new pull request, #9901:
URL: https://github.com/apache/camel/pull/9901

   # Description
   
   
   
   # Target
   
   - [ ] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [ ] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [ ] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [ ] I formatted the code using `mvn -Pformat,fastinstall install && mvn 
-Psourcecheck`
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9901: CAMEL-19281 - Fixing the connection memory leak issue

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9901:
URL: https://github.com/apache/camel/pull/9901#issuecomment-1515067554

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :warning: Please note that the changes on this PR may be **tested 
automatically**. 
   
   If necessary Apache Camel Committers may access logs and test results in the 
job summaries!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-kafka-connector] branch camel-kafka-connector-3.20.x updated (0c266c66a -> be1bc4a71)

2023-04-19 Thread valdar
This is an automated email from the ASF dual-hosted git repository.

valdar pushed a change to branch camel-kafka-connector-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git


from 0c266c66a [maven-release-plugin] prepare for next development iteration
 new 9e0cf301e chore: fixed formatting.
 new be1bc4a71 Updated to camel 3.20.3 and regen

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../camel-aws-cloudtrail-source-source.json|  2 +-
 .../connectors/camel-aws-cloudwatch-sink-sink.json |  2 +-
 .../camel-aws-ddb-experimental-sink-sink.json  |  4 ++--
 .../connectors/camel-aws-ddb-sink-sink.json| 13 +++-
 .../camel-aws-ddb-streams-source-source.json   |  2 +-
 .../connectors/camel-aws-ec2-sink-sink.json|  2 +-
 .../camel-aws-eventbridge-sink-sink.json   |  2 +-
 .../camel-aws-kinesis-firehose-sink-sink.json  |  2 +-
 .../connectors/camel-aws-kinesis-sink-sink.json|  2 +-
 .../camel-aws-kinesis-source-source.json   |  2 +-
 .../connectors/camel-aws-lambda-sink-sink.json |  2 +-
 .../connectors/camel-aws-redshift-sink-sink.json   |  2 +-
 .../camel-aws-redshift-source-source.json  |  2 +-
 .../connectors/camel-aws-s3-cdc-source-source.json |  2 +-
 .../camel-aws-s3-experimental-source-source.json   |  2 +-
 .../connectors/camel-aws-s3-sink-sink.json |  2 +-
 .../connectors/camel-aws-s3-source-source.json |  9 +---
 .../camel-aws-s3-streaming-upload-sink-sink.json   |  2 +-
 .../camel-aws-secrets-manager-sink-sink.json   |  2 +-
 .../connectors/camel-aws-ses-sink-sink.json|  2 +-
 .../connectors/camel-aws-sns-fifo-sink-sink.json   |  2 +-
 .../connectors/camel-aws-sns-sink-sink.json|  2 +-
 .../connectors/camel-aws-sqs-batch-sink-sink.json  |  2 +-
 .../connectors/camel-aws-sqs-fifo-sink-sink.json   |  2 +-
 .../connectors/camel-aws-sqs-sink-sink.json|  2 +-
 .../connectors/camel-aws-sqs-source-source.json|  2 +-
 .../resources/connectors/camel-aws2-iam-sink.json  |  2 +-
 .../resources/connectors/camel-aws2-kms-sink.json  |  2 +-
 .../camel-azure-cosmosdb-source-source.json|  2 +-
 .../camel-azure-eventhubs-sink-sink.json   |  2 +-
 .../camel-azure-eventhubs-source-source.json   |  2 +-
 .../camel-azure-functions-sink-sink.json   |  2 +-
 .../camel-azure-servicebus-sink-sink.json  |  2 +-
 .../camel-azure-servicebus-source-source.json  |  4 ++--
 ...camel-azure-storage-blob-cdc-source-source.json |  6 +++---
 ...zure-storage-blob-changefeed-source-source.json |  9 +---
 .../camel-azure-storage-blob-sink-sink.json| 16 +--
 .../camel-azure-storage-blob-source-source.json|  9 +---
 .../camel-azure-storage-queue-sink-sink.json   |  2 +-
 .../camel-azure-storage-queue-source-source.json   |  2 +-
 .../connectors/camel-beer-source-source.json   |  2 +-
 .../connectors/camel-bitcoin-source-source.json|  2 +-
 .../connectors/camel-cassandra-sink-sink.json  | 10 +++--
 .../connectors/camel-cassandra-source-source.json  | 12 ---
 .../resources/connectors/camel-ceph-sink-sink.json |  2 +-
 .../connectors/camel-ceph-source-source.json   |  2 +-
 .../camel-chuck-norris-source-source.json  |  2 +-
 .../connectors/camel-couchbase-sink-sink.json  |  2 +-
 .../connectors/camel-cron-source-source.json   |  2 +-
 .../resources/connectors/camel-cxf-sink.json   |  2 +-
 .../resources/connectors/camel-cxf-source.json |  2 +-
 .../resources/connectors/camel-cxfrs-sink.json |  2 +-
 .../resources/connectors/camel-cxfrs-source.json   |  2 +-
 .../connectors/camel-dropbox-sink-sink.json|  2 +-
 .../connectors/camel-dropbox-source-source.json|  2 +-
 .../connectors/camel-earthquake-source-source.json |  2 +-
 .../camel-elasticsearch-index-sink-sink.json   |  2 +-
 .../camel-elasticsearch-search-source-source.json  |  2 +-
 .../resources/connectors/camel-exec-sink-sink.json |  2 +-
 .../resources/connectors/camel-fhir-sink-sink.json |  4 ++--
 .../connectors/camel-fhir-source-source.json   |  6 +++---
 .../resources/connectors/camel-file-sink.json  |  2 +-
 .../resources/connectors/camel-file-source.json|  2 +-
 .../connectors/camel-file-watch-source-source.json |  2 +-
 .../resources/connectors/camel-ftp-sink-sink.json  | 11 --
 .../connectors/camel-ftp-source-source.json|  9 +++-
 .../resources/connectors/camel-ftps-sink-sink.json | 11 --
 .../connectors/camel-ftps-source-source.json   |  9 +++-
 .../camel-github-commit-source-source.json |  2 +-
 .../camel-github-event-source-source.json  |  2 +-
 ...l-github-pullrequest-comment-source-source.json |  2 +-

[GitHub] [camel-kafka-connector] valdar merged pull request #1524: Camel kafka connector 3.20.x

2023-04-19 Thread via GitHub


valdar merged PR #1524:
URL: https://github.com/apache/camel-kafka-connector/pull/1524


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-quarkus] branch main updated: Add OpenTelemetry documentation for CDI bean instrumentation

2023-04-19 Thread zbendhiba
This is an automated email from the ASF dual-hosted git repository.

zbendhiba pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


The following commit(s) were added to refs/heads/main by this push:
 new a837249c0f Add OpenTelemetry documentation for CDI bean instrumentation
a837249c0f is described below

commit a837249c0f5e652e2510ac27028f65ac724d74a0
Author: James Netherton 
AuthorDate: Wed Apr 19 15:34:03 2023 +0100

Add OpenTelemetry documentation for CDI bean instrumentation
---
 .../pages/reference/extensions/opentelemetry.adoc  | 41 --
 .../opentelemetry/runtime/src/main/doc/usage.adoc  | 39 ++--
 2 files changed, 76 insertions(+), 4 deletions(-)

diff --git a/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc 
b/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc
index c90d1e762c..1b72c913de 100644
--- a/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc
+++ b/docs/modules/ROOT/pages/reference/extensions/opentelemetry.adoc
@@ -59,7 +59,7 @@ quarkus.application.name=my-camel-application
 quarkus.opentelemetry.tracer.exporter.otlp.endpoint=http://localhost:4317
 
 
-Refer to the 
https://github.com/quarkusio/quarkus/blob/{quarkus-version}/docs/src/main/asciidoc/opentelemetry.adoc[Quarkus
 OpenTelemetry guide] for a full list of configuration options.
+Refer to the https://quarkus.io/guides/opentelemetry[Quarkus OpenTelemetry 
guide] for a full list of configuration options.
 
 Route endpoints can be excluded from tracing by configuring a property named 
`quarkus.camel.opentelemetry.exclude-patterns` in `application.properties`. For 
example:
 
@@ -69,11 +69,48 @@ Route endpoints can be excluded from tracing by configuring 
a property named `qu
 quarkus.camel.opentelemetry.exclude-patterns=direct:*,netty-http:*
 
 
-### Exporters
+[id="extensions-opentelemetry-usage-exporters"]
+=== Exporters
 
 Quarkus OpenTelemetry defaults to the standard OTLP exporter defined in 
OpenTelemetry.
 Additional exporters will be available in the Quarkiverse 
https://github.com/quarkiverse/quarkus-opentelemetry-exporter/blob/main/README.md[quarkus-opentelemetry-exporter]
 project.
 
+[id="extensions-opentelemetry-usage-tracing-cdi-bean-method-execution"]
+=== Tracing CDI bean method execution
+
+When instrumenting the execution of CDI bean methods from Camel routes, you 
should annotate such methods with 
`io.opentelemetry.extension.annotations.WithSpan`. Methods annotated with 
`@WithSpan` will create a new Span and establish any required relationships 
with the current Trace context.
+
+For example, to instrument a CDI bean from a Camel route, first ensure the 
appropriate methods are annotated with `@WithTrace`.
+
+[source,java]
+
+@ApplicationScoped
+@Named("myBean")
+public class MyBean {
+@WithSpan
+public String greet() {
+return "Hello World!";
+}
+}
+
+
+Next, use the bean in your Camel route.
+
+IMPORTANT: To ensure that the sequence of recorded spans is correct, you must 
use the full `to("bean:")` endpoint URI and not the shortened `.bean()` EIP DSL 
method.
+
+[source,java]
+
+public class MyRoutes extends RouteBuilder {
+@Override
+public void configure() throws Exception {
+from("direct:executeBean")
+.to("bean:myBean?method=greet");
+}
+}
+
+
+There is more information about CDI instrumentation in the 
https://quarkus.io/guides/opentelemetry#cdi[Quarkus OpenTelemetry guide].
+
 
 [id="extensions-opentelemetry-additional-camel-quarkus-configuration"]
 == Additional Camel Quarkus configuration
diff --git a/extensions/opentelemetry/runtime/src/main/doc/usage.adoc 
b/extensions/opentelemetry/runtime/src/main/doc/usage.adoc
index 12e02426ee..80d03b2ce0 100644
--- a/extensions/opentelemetry/runtime/src/main/doc/usage.adoc
+++ b/extensions/opentelemetry/runtime/src/main/doc/usage.adoc
@@ -11,7 +11,7 @@ quarkus.application.name=my-camel-application
 quarkus.opentelemetry.tracer.exporter.otlp.endpoint=http://localhost:4317
 
 
-Refer to the 
https://github.com/quarkusio/quarkus/blob/{quarkus-version}/docs/src/main/asciidoc/opentelemetry.adoc[Quarkus
 OpenTelemetry guide] for a full list of configuration options.
+Refer to the https://quarkus.io/guides/opentelemetry[Quarkus OpenTelemetry 
guide] for a full list of configuration options.
 
 Route endpoints can be excluded from tracing by configuring a property named 
`quarkus.camel.opentelemetry.exclude-patterns` in `application.properties`. For 
example:
 
@@ -21,7 +21,42 @@ Route endpoints can be excluded from tracing by configuring 
a property named `qu
 quarkus.camel.opentelemetry.exclude-patterns=direct:*,netty-http:*
 
 
-### Exporters
+=== Exporters
 
 Quarkus OpenTelemetry defaults to the standard OTLP exporter defined in 
OpenTelemetry.
 Additional exporters will be available in the Quarkiverse 

[GitHub] [camel-quarkus] zbendhiba merged pull request #4802: Add OpenTelemetry documentation for CDI bean instrumentation

2023-04-19 Thread via GitHub


zbendhiba merged PR #4802:
URL: https://github.com/apache/camel-quarkus/pull/4802


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] zbendhiba commented on pull request #4791: Enabling Google BigQuery, Google PubSub, Zendesk and Stax integration tests

2023-04-19 Thread via GitHub


zbendhiba commented on PR #4791:
URL: https://github.com/apache/camel-quarkus/pull/4791#issuecomment-1514949145

   CI is finally all green! 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] zbendhiba merged pull request #4791: Enabling Google BigQuery, Google PubSub, Zendesk and Stax integration tests

2023-04-19 Thread via GitHub


zbendhiba merged PR #4791:
URL: https://github.com/apache/camel-quarkus/pull/4791


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-quarkus] branch main updated (47796118a5 -> 4b0634a902)

2023-04-19 Thread zbendhiba
This is an automated email from the ASF dual-hosted git repository.

zbendhiba pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git


from 47796118a5 release: complete release process to be more explicit
 add ceb5b9d81e Enabling Google BigQuery and Google PubSub integration 
tests Fixes #4502
 add 4fd90bf238 Enabling back Zendesk integration tests Fixes #4514
 add 4b0634a902 Enabling Stax Integration tests

No new revisions were added by this update.

Summary of changes:
 integration-tests/pom.xml | 8 
 .../org/apache/camel/quarkus/component/stax/it/StaxResource.java  | 1 -
 tooling/scripts/test-categories.yaml  | 4 
 3 files changed, 8 insertions(+), 5 deletions(-)



[GitHub] [camel-quarkus] zbendhiba commented on pull request #4465: #4051 : Add camel-cli-connector extension.

2023-04-19 Thread via GitHub


zbendhiba commented on PR #4465:
URL: https://github.com/apache/camel-quarkus/pull/4465#issuecomment-1514932128

   @svkcemk Excuse me again, may I ask you to rebase again? Let's make these 
tests pass, so that we can merge it tomorrow.
   @ppalaga FYI, we want this PR to be merged before releasing 3.0.0-M2


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] zbendhiba commented on pull request #4802: Add OpenTelemetry documentation for CDI bean instrumentation

2023-04-19 Thread via GitHub


zbendhiba commented on PR #4802:
URL: https://github.com/apache/camel-quarkus/pull/4802#issuecomment-1514929304

   Awesome! thanks


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-k-examples] squakez commented on issue #78: Provide example usage for trait profiles

2023-04-19 Thread via GitHub


squakez commented on issue #78:
URL: 
https://github.com/apache/camel-k-examples/issues/78#issuecomment-1514906034

   Thanks, moving this issue to examples repository.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-k-examples] mertdotcc opened a new issue, #78: Provide example usage for trait profiles

2023-04-19 Thread via GitHub


mertdotcc opened a new issue, #78:
URL: https://github.com/apache/camel-k-examples/issues/78

   We have multiple routes that we are deploying to varying platforms with 
different configuration when it comes to Knative settings, prometheus labels, 
and a bunch of other stuff. I think utilizing trait profiles would help me with 
my use case a lot. However, I couldn't find any examples. Would appreciate if 
someone can provide a short sample or point me in the right direction. Thanks!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9900: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9900:
URL: https://github.com/apache/camel/pull/9900#issuecomment-1514817677

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 1 | 0 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-karavan] mgubaidullin opened a new issue, #731: UI performance degradation on large YAML

2023-04-19 Thread via GitHub


mgubaidullin opened a new issue, #731:
URL: https://github.com/apache/camel-karavan/issues/731

   example: 
https://github.com/samim2000/karavan-notes-app/blob/main/karavan-auth-pioc.yaml


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-k] squakez commented on issue #4262: Mention the published "generated extension" for Java in the docs

2023-04-19 Thread via GitHub


squakez commented on issue #4262:
URL: https://github.com/apache/camel-k/issues/4262#issuecomment-1514809263

   Yeah, we have forgotten to add some note. Feel free to do it, I think it 
would be good under the "API" section.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-k-examples] squakez commented on issue #77: 02-serverless-api example fails

2023-04-19 Thread via GitHub


squakez commented on issue #77:
URL: 
https://github.com/apache/camel-k-examples/issues/77#issuecomment-1514800039

   I think the API.java modeline has some error as well. Likely 
`dependency=camel-quarkus-openapi-java` should be removed.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-k] squakez closed issue #3836: Expose runtime details in `kamel version -a -v`

2023-04-19 Thread via GitHub


squakez closed issue #3836: Expose runtime details in `kamel version -a -v`
URL: https://github.com/apache/camel-k/issues/3836


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9899: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9899:
URL: https://github.com/apache/camel/pull/9899#issuecomment-1514785587

   ### Components tested:
   
   | Total | Tested | Failed :x: | Passed :white_check_mark: | 
   | --- | --- | --- |  --- |
   | 1 | 1 | 0 | 1 |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] claudemamo commented on pull request #9899: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


claudemamo commented on PR #9899:
URL: https://github.com/apache/camel/pull/9899#issuecomment-1514733256

   Yes, I opened a PR here: https://github.com/apache/camel/pull/9900


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9900: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9900:
URL: https://github.com/apache/camel/pull/9900#issuecomment-1514731418

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :warning: Please note that the changes on this PR may be **tested 
automatically**. 
   
   If necessary Apache Camel Committers may access logs and test results in the 
job summaries!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] claudemamo opened a new pull request, #9900: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


claudemamo opened a new pull request, #9900:
URL: https://github.com/apache/camel/pull/9900

   # Description
   
   * Add API methods for deleting and updating resources
   * Point resource param to inBody by default
   * Add support for rootJunction param for GET method
   * Update to latest dhis2-java-sdk
   
   # Target
   
   - [x] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [x] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [x] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [x] I formatted the code using `mvn -Pformat,fastinstall install && mvn 
-Psourcecheck`
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9899: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9899:
URL: https://github.com/apache/camel/pull/9899#issuecomment-1514692634

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :warning: Please note that the changes on this PR may be **tested 
automatically**. 
   
   If necessary Apache Camel Committers may access logs and test results in the 
job summaries!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] claudemamo opened a new pull request, #9899: Add API methods for deleting and updating resources & some other minor changes

2023-04-19 Thread via GitHub


claudemamo opened a new pull request, #9899:
URL: https://github.com/apache/camel/pull/9899

   # Description
   
   * Add API methods for deleting and updating resources
   * Point resource param to inBody by default
   * Add support for rootJunction param for GET method
   * Update to latest dhis2-java-sdk
   
   # Target
   
   - [x] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [x] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [x] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [x] I formatted the code using `mvn -Pformat,fastinstall install && mvn 
-Psourcecheck`
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] github-actions[bot] commented on pull request #9898: [Camel-19280] camel coap observe

2023-04-19 Thread via GitHub


github-actions[bot] commented on PR #9898:
URL: https://github.com/apache/camel/pull/9898#issuecomment-1514596783

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :warning: Please note that the changes on this PR may be **tested 
automatically**. 
   
   If necessary Apache Camel Committers may access logs and test results in the 
job summaries!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] akutri opened a new pull request, #9898: [Camel-19280] camel coap observe

2023-04-19 Thread via GitHub


akutri opened a new pull request, #9898:
URL: https://github.com/apache/camel/pull/9898

   # Description
   
   This pull request provides support for CoAP observe (rfc-7641) in the 
camel-coap component. 
   
   rfc-7641: https://datatracker.ietf.org/doc/rfc7641/
   
   # Target
   
   - [X] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [X] If this is a large change, bug fix, or code improvement, I checked 
there is a [JIRA issue](https://issues.apache.org/jira/browse/CAMEL) filed for 
the change (usually before you start working on it).
   
   
   
   # Apache Camel coding standards and style
   
   - [X] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [X] I formatted the code using `mvn -Pformat,fastinstall install && mvn 
-Psourcecheck`
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] ppalaga commented on issue #4746: CXF generates different WSDL files with JVM/Native modes

2023-04-19 Thread via GitHub


ppalaga commented on issue #4746:
URL: https://github.com/apache/camel-quarkus/issues/4746#issuecomment-1514587236

   I should also add a test ensuring that the WSDLs served by JVM and native 
endpoints are the same.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] ppalaga commented on issue #4746: CXF generates different WSDL files with JVM/Native modes

2023-04-19 Thread via GitHub


ppalaga commented on issue #4746:
URL: https://github.com/apache/camel-quarkus/issues/4746#issuecomment-1514580184

   The main issue in 
https://github.com/llowinge/camel-quarkus-examples/tree/cxf-soap-example/cxf-soap
 was that the Service interface was not annotated with `@WebService`. Without 
that, quarkus-cxf does not generate necessary helper classes. Adding it 
revealed two other small issues in quarkus-cxf:
   
   * https://github.com/quarkiverse/quarkus-cxf/issues/821
   * https://github.com/quarkiverse/quarkus-cxf/issues/819
   
   Both have fixes now. I am keeping this issue open while the releases 2.0.0 
and 1.5.12 of quarkus-cxf reach Camel Quarkus


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-karavan] ddoaj97 commented on issue #730: Editing of components with multiple path properties doesn't work correctly

2023-04-19 Thread via GitHub


ddoaj97 commented on issue #730:
URL: https://github.com/apache/camel-karavan/issues/730#issuecomment-1514575227

   Hi Claus,
   
   Yes, you are correct. I am using Karavan release 3.20.1


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel] alex-nt opened a new pull request, #9897: CAMEL-19278: Update saxon to 11.5

2023-04-19 Thread via GitHub


alex-nt opened a new pull request, #9897:
URL: https://github.com/apache/camel/pull/9897

   # Description
   
   Update saxon to 11.5
   
   # Target
   
   - [ x] I checked that the commit is targeting the correct branch (note that 
Camel 3 uses `camel-3.x`, whereas Camel 4 uses the `main` branch)
   
   # Tracking
   - [CAMEL-19278](https://issues.apache.org/jira/browse/CAMEL-19278)
   
   # Apache Camel coding standards and style
   
   - [x ] I checked that each commit in the pull request has a meaningful 
subject line and body.
   
   
   
   - [ x] I formatted the code using `mvn -Pformat,fastinstall install && mvn 
-Psourcecheck`
   
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] tmdonalds commented on issue #4798: Camel bean not working with 3.0 for external libraries

2023-04-19 Thread via GitHub


tmdonalds commented on issue #4798:
URL: https://github.com/apache/camel-quarkus/issues/4798#issuecomment-1514483131

   I didn't update the versions. I need to do that. I just realized the jandex 
version changed to 3.1.1.
   
   https://quarkus.io/version/main/guides/cdi-reference


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] tmdonalds commented on issue #4798: Camel bean not working with 3.0 for external libraries

2023-04-19 Thread via GitHub


tmdonalds commented on issue #4798:
URL: https://github.com/apache/camel-quarkus/issues/4798#issuecomment-1514472079

   > @tmdonalds, have you migrated from 
`javax.enterprise.context.ApplicationScoped` to 
`jakarta.enterprise.context.ApplicationScoped`? The upgrade from Jakarta 8 to 
9/10 (where many `javax.*` packages were renamed to `jakarta.*`) is the main 
reason for the major bump in Quarkus and Camel Quarkus versions.
   
   Yes. It wouldn't have compiled otherwise. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot updated (db02cb1262a -> c745ba0b709)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from db02cb1262a Sync deps
 add bc21fd6f80c Upgrade Fastjson to version 2.0.28
 add 6f5494dc30f Sync deps
 add c745ba0b709 CAMEL-19139: Disable Build-Date in MANIFEST.MF as its not 
needed anymore.

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)



[GitHub] [camel-quarkus] jamesnetherton commented on pull request #4801: Bump quarkus-qpid-jms-bom from 2.0.0.Alpha3 to 2.0.0

2023-04-19 Thread via GitHub


jamesnetherton commented on PR #4801:
URL: https://github.com/apache/camel-quarkus/pull/4801#issuecomment-1514426310

   Maybe we need to manage the `bcutil-jdk15` dependencies? Or alternatively, 
exclude the `jdk15` bits from pulsar and replace with the `jdk18` variants.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot updated (11dfa96a4a1 -> db02cb1262a)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from 11dfa96a4a1 Use latest container image for NATS 2.9.16
 add 81a8cbc4db3 Upgrade Braintree java to version 3.22.0
 add db02cb1262a Sync deps

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[GitHub] [camel-quarkus] jamesnetherton commented on pull request #4465: #4051 : Add camel-cli-connector extension.

2023-04-19 Thread via GitHub


jamesnetherton commented on PR #4465:
URL: https://github.com/apache/camel-quarkus/pull/4465#issuecomment-1514417695

   > is rebasing againg from main necessary to have those tests pass?
   
   We should try it as I increased the number of retries on artifact download 
failures. So it could help.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-k] mertdotcc opened a new issue, #4263: Provide example usage for trait profiles

2023-04-19 Thread via GitHub


mertdotcc opened a new issue, #4263:
URL: https://github.com/apache/camel-k/issues/4263

   We have multiple routes that we are deploying to varying platforms with 
different configuration when it comes to Knative settings, prometheus labels, 
and a bunch of other stuff. I think utilizing trait profiles would help me with 
my use case a lot. However, I couldn't find any examples. Would appreciate if 
someone can provide a short sample or point me in the right direction. Thanks!


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] zbendhiba commented on pull request #4465: #4051 : Add camel-cli-connector extension.

2023-04-19 Thread via GitHub


zbendhiba commented on PR #4465:
URL: https://github.com/apache/camel-quarkus/pull/4465#issuecomment-1514391167

   @davsclaus Yes it is, we just need to have those maven central 
disconnections fixed.
   @jamesnetherton is rebasing againg from main necessary to have those tests 
pass? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] zhfeng commented on pull request #4801: Bump quarkus-qpid-jms-bom from 2.0.0.Alpha3 to 2.0.0

2023-04-19 Thread via GitHub


zhfeng commented on PR #4801:
URL: https://github.com/apache/camel-quarkus/pull/4801#issuecomment-1514388122

   It is weird and if only build `camel-quarkus-pulsar` by `./mvnw -f 
extensions-jvm/pulsar/pom.xml clean install`, it works. I don't think 
`quarkus-qpid-jms` introduces anything related to 
`org.bouncycastle:bcutil-jdk15on`?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-spring-boot] branch main updated: CAMEL-19139: Disable Build-Date in MANIFEST.MF as its not needed anymore.

2023-04-19 Thread davsclaus
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-spring-boot.git


The following commit(s) were added to refs/heads/main by this push:
 new 2282b1f84bf CAMEL-19139: Disable Build-Date in MANIFEST.MF as its not 
needed anymore.
2282b1f84bf is described below

commit 2282b1f84bf07215d2ecdc5a44c6f3bc554c31d3
Author: Claus Ibsen 
AuthorDate: Wed Apr 19 11:00:54 2023 +0200

CAMEL-19139: Disable Build-Date in MANIFEST.MF as its not needed anymore.
---
 parent/pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/parent/pom.xml b/parent/pom.xml
index 7d881fa289b..bb4b61ddc25 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -79,7 +79,9 @@
 
false
 
 
+
 
 
 



[GitHub] [camel-quarkus] davsclaus closed issue #4711: Add Build-Date in MANIFEST.MF in Camel Quarkus release JARs

2023-04-19 Thread via GitHub


davsclaus closed issue #4711: Add Build-Date in MANIFEST.MF in Camel Quarkus 
release JARs
URL: https://github.com/apache/camel-quarkus/issues/4711


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] davsclaus commented on pull request #4465: #4051 : Add camel-cli-connector extension.

2023-04-19 Thread via GitHub


davsclaus commented on PR #4465:
URL: https://github.com/apache/camel-quarkus/pull/4465#issuecomment-1514384498

   Is all okay for this, as we need this with CEQ v4


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch main updated (6f5494dc30f -> c745ba0b709)

2023-04-19 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


from 6f5494dc30f Sync deps
 add c745ba0b709 CAMEL-19139: Disable Build-Date in MANIFEST.MF as its not 
needed anymore.

No new revisions were added by this update.

Summary of changes:
 parent/pom.xml | 2 ++
 1 file changed, 2 insertions(+)



[GitHub] [camel-quarkus] davsclaus commented on issue #4711: Add Build-Date in MANIFEST.MF in Camel Quarkus release JARs

2023-04-19 Thread via GitHub


davsclaus commented on issue #4711:
URL: https://github.com/apache/camel-quarkus/issues/4711#issuecomment-1514382455

   Okay we found another way


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot updated (660f5f739da -> 11dfa96a4a1)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from 660f5f739da Upgrade spring-ws and spring-security
 add 11dfa96a4a1 Use latest container image for NATS 2.9.16

No new revisions were added by this update.

Summary of changes:
 .../camel/test/infra/nats/services/NatsLocalContainerService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[camel] branch main updated (db02cb1262a -> 6f5494dc30f)

2023-04-19 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


from db02cb1262a Sync deps
 add bc21fd6f80c Upgrade Fastjson to version 2.0.28
 add 6f5494dc30f Sync deps

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[GitHub] [camel-karavan] davsclaus commented on issue #730: Editing of components with multiple path properties doesn't work correctly

2023-04-19 Thread via GitHub


davsclaus commented on issue #730:
URL: https://github.com/apache/camel-karavan/issues/730#issuecomment-1514358156

   Thanks for reporting, and I assume you are using latest 3.20.1 release of 
karavan


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch regen_bot updated (af5e24b656a -> 660f5f739da)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from af5e24b656a Upgrade to jetty 11.0.15
 add 660f5f739da Upgrade spring-ws and spring-security

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 4 ++--
 parent/pom.xml | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)



[camel] branch main updated (11dfa96a4a1 -> db02cb1262a)

2023-04-19 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


from 11dfa96a4a1 Use latest container image for NATS 2.9.16
 add 81a8cbc4db3 Upgrade Braintree java to version 3.22.0
 add db02cb1262a Sync deps

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[camel] branch regen_bot updated (ffcbf6faaf4 -> af5e24b656a)

2023-04-19 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git


from ffcbf6faaf4 Change camel-opentelemtry references to 
camel-opentelemetry (#9895)
 add af5e24b656a Upgrade to jetty 11.0.15

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml | 2 +-
 parent/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)



[GitHub] [camel-karavan] ddoaj97 opened a new issue, #730: Editing of components with multiple path properties doesn't work correctly

2023-04-19 Thread via GitHub


ddoaj97 opened a new issue, #730:
URL: https://github.com/apache/camel-karavan/issues/730

   Many Camel component have more than one path parameter and currently the 
visual Karavan editor doesn't seem to handle these components very well. For 
example the Quartz component URI syntax is defined as  
"quartz:groupName/triggerName" and contains two path parameters: "groupName" 
and "triggerName". Trying to configure these path properties in Karavan 
generates an incorrect URI because Karavan seems to mix up the two path 
properties.
   
   Trying to enter the value "test" in the "Group name" input field of the 
Quartz component causes Karavan to generate the following URI:
   
![karavan_uri_path_bug_quartz](https://user-images.githubusercontent.com/17296796/233015685-4ba062e5-1724-4bfd-8146-1de839d141b4.PNG)
   
   It seems like the first character of the "Group name" gets parsed into the 
"Trigger name" field and only the remaining characters end up in the "Group 
name" field. The problem disappears once both input fields have value, but as 
soon as you clear the group name and enter a new value, then the same issue 
occurs again.
   
   **I've tried other components that have multiple path properties (activemq, 
jms, rest, ftp, imap, ...) and they all have the same problem.**
   
   Components with more than 2 path properties seem to be even more buggy. For 
example the "springws" component has 4 path properties and is completely 
unuseable. Trying to enter the value "expression" into the "Expression" input 
field seems to duplicate this value multiple times into the "Web Service 
Endpoint Uri" input field:
   
![karavan_uri_path_bug_springws](https://user-images.githubusercontent.com/17296796/233016014-fad0f3ce-0df2-4247-8156-70e2f8443824.PNG)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel] branch main updated: Use latest container image for NATS 2.9.16

2023-04-19 Thread acosentino
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.git


The following commit(s) were added to refs/heads/main by this push:
 new 11dfa96a4a1 Use latest container image for NATS 2.9.16
11dfa96a4a1 is described below

commit 11dfa96a4a14666d1c7e64b790baf8c4745f654c
Author: Andrea Cosentino 
AuthorDate: Wed Apr 19 10:00:56 2023 +0200

Use latest container image for NATS 2.9.16

Signed-off-by: Andrea Cosentino 
---
 .../camel/test/infra/nats/services/NatsLocalContainerService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
 
b/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
index b430bb2c992..e32056d100e 100644
--- 
a/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
+++ 
b/test-infra/camel-test-infra-nats/src/test/java/org/apache/camel/test/infra/nats/services/NatsLocalContainerService.java
@@ -24,7 +24,7 @@ import org.testcontainers.containers.GenericContainer;
 import org.testcontainers.containers.wait.strategy.Wait;
 
 public class NatsLocalContainerService implements NatsService, 
ContainerService {
-public static final String CONTAINER_IMAGE = "nats:2.9.15";
+public static final String CONTAINER_IMAGE = "nats:2.9.16";
 public static final String CONTAINER_NAME = "nats";
 private static final int PORT = 4222;
 



[GitHub] [camel-quarkus] JiriOndrusek closed issue #4799: [camel-main] Add `quarkus-jackson-jq-extra` to jq extension runtime module dependencies

2023-04-19 Thread via GitHub


JiriOndrusek closed issue #4799: [camel-main] Add `quarkus-jackson-jq-extra` to 
jq extension runtime module dependencies
URL: https://github.com/apache/camel-quarkus/issues/4799


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [camel-quarkus] JiriOndrusek commented on issue #4799: [camel-main] Add `quarkus-jackson-jq-extra` to jq extension runtime module dependencies

2023-04-19 Thread via GitHub


JiriOndrusek commented on issue #4799:
URL: https://github.com/apache/camel-quarkus/issues/4799#issuecomment-1514304076

   Thanks @jamesnetherton ! Fixed in 
https://github.com/apache/camel-quarkus/commit/9ea406887180965bd3246dfc0dc8e5d70b5f1ff7


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@camel.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[camel-quarkus] 13/30: Fixed getter/setter on ExtendedCamelContext - CAMEL-15105

2023-04-19 Thread jiriondrusek
This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit af533a28d9b725d3376a70a66c81a27d99cdf4e8
Author: JiriOndrusek 
AuthorDate: Thu Mar 30 10:09:33 2023 +0200

Fixed  getter/setter on ExtendedCamelContext - CAMEL-15105
---
 .../java/org/apache/camel/quarkus/core/CamelContextRecorder.java | 3 ++-
 .../src/main/java/org/apache/camel/quarkus/core/ConsumeRecorder.java | 3 ++-
 .../org/apache/camel/quarkus/component/kamelet/KameletRecorder.java  | 2 +-
 .../microprofile/health/runtime/CamelMicroProfileHealthRecorder.java | 2 +-
 .../src/main/java/org/apache/camel/quarkus/core/CoreResource.java| 3 ++-
 .../org/apache/camel/quarkus/component/direct/it/DirectResource.java | 3 ++-
 .../apache/camel/quarkus/component/kamelet/it/KameletResource.java   | 2 +-
 .../component/microprofile/it/health/MicroProfileHealthResource.java | 2 +-
 .../camel/quarkus/test/junit5/RouteFilterPatternExcludeTest.java | 5 +++--
 .../quarkus/test/junit5/RouteFilterPatternIncludeExcludeTest.java| 5 +++--
 .../camel/quarkus/test/junit5/RouteFilterPatternIncludeTest.java | 5 +++--
 .../quarkus/test/junit5/patterns/SimpleWeaveAddMockLastTest.java | 3 ++-
 12 files changed, 23 insertions(+), 15 deletions(-)

diff --git 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
index fe77110ee1..ebcaa4428e 100644
--- 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
+++ 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
@@ -64,7 +64,8 @@ public class CamelContextRecorder {
 // Set ClassLoader first as some actions depend on it being available
 ExtendedCamelContext extendedCamelContext = 
context.getCamelContextExtension();
 context.setApplicationContextClassLoader(tccl);
-context.setDefaultExtension(RuntimeCamelCatalog.class, () -> new 
CamelRuntimeCatalog(config.runtimeCatalog));
+
context.getCamelContextExtension().addContextPlugin(RuntimeCamelCatalog.class,
+new CamelRuntimeCatalog(config.runtimeCatalog));
 extendedCamelContext.setRegistry(registry.getValue());
 context.setTypeConverterRegistry(typeConverterRegistry.getValue());
 context.setLoadTypeConverters(false);
diff --git 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/ConsumeRecorder.java
 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/ConsumeRecorder.java
index 359dcce066..36c21585d9 100644
--- 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/ConsumeRecorder.java
+++ 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/ConsumeRecorder.java
@@ -72,7 +72,8 @@ public class ConsumeRecorder {
 try {
 final RoutesDefinition routes = routesDefinition.getValue();
 routes.setCamelContext(camelContext.getValue());
-
camelContext.getValue().getExtension(Model.class).addRouteDefinitions(routes.getRoutes());
+
camelContext.getValue().getCamelContextExtension().getContextPlugin(Model.class)
+.addRouteDefinitions(routes.getRoutes());
 } catch (Exception e) {
 throw new RuntimeException("Could not add routes to context", e);
 }
diff --git 
a/extensions/kamelet/runtime/src/main/java/org/apache/camel/quarkus/component/kamelet/KameletRecorder.java
 
b/extensions/kamelet/runtime/src/main/java/org/apache/camel/quarkus/component/kamelet/KameletRecorder.java
index 1f59eadb94..eddc8a87a5 100644
--- 
a/extensions/kamelet/runtime/src/main/java/org/apache/camel/quarkus/component/kamelet/KameletRecorder.java
+++ 
b/extensions/kamelet/runtime/src/main/java/org/apache/camel/quarkus/component/kamelet/KameletRecorder.java
@@ -35,7 +35,7 @@ public class KameletRecorder {
 @Override
 public void configure(CamelContext context) {
 try {
-
context.getExtension(Model.class).addRouteTemplateDefinitions(definitions);
+
context.getCamelContextExtension().getContextPlugin(Model.class).addRouteTemplateDefinitions(definitions);
 } catch (Exception e) {
 throw new RuntimeException(e);
 }
diff --git 
a/extensions/microprofile-health/runtime/src/main/java/org/apache/camel/quarkus/component/microprofile/health/runtime/CamelMicroProfileHealthRecorder.java
 
b/extensions/microprofile-health/runtime/src/main/java/org/apache/camel/quarkus/component/microprofile/health/runtime/CamelMicroProfileHealthRecorder.java
index e33777b17b..4a951db780 100644
--- 

[camel-quarkus] 14/30: Fixed compilation failures because of CAMEL-15105

2023-04-19 Thread jiriondrusek
This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit a55c8b0414262e8aa345118942cc8f540f3599b1
Author: JiriOndrusek 
AuthorDate: Mon Apr 3 09:51:26 2023 +0200

Fixed compilation failures because of CAMEL-15105
---
 .../quarkus/core/deployment/CamelPackageScanClassResolverTest.java | 6 +++---
 .../java/org/apache/camel/quarkus/core/CamelContextRecorder.java   | 6 +++---
 .../src/main/java/org/apache/camel/quarkus/core/CamelRecorder.java | 3 ++-
 .../main/java/org/apache/camel/quarkus/core/FastCamelContext.java  | 2 +-
 .../src/main/java/org/apache/camel/quarkus/main/CamelMain.java | 1 +
 .../camel/quarkus/support/language/deployment/dm/DryModeMain.java  | 4 ++--
 .../java/org/apache/camel/quarkus/component/jaxb/JaxbRecorder.java | 3 ++-
 .../quarkus/component/kamelet/deployment/KameletProcessor.java | 5 +++--
 .../component/name/resolver/ComponentNameResolverResource.java | 5 +++--
 .../quarkus/component/dsl/modeline/it/DslModelineResource.java | 3 ++-
 .../java/org/apache/camel/quarkus/main/CoreMainXmlIoResource.java  | 5 +++--
 .../org/apache/camel/quarkus/main/CoreMainXmlJaxbResource.java | 3 ++-
 .../main/java/org/apache/camel/quarkus/main/CoreMainResource.java  | 7 ---
 .../messaging/it/util/scheme/MessagingComponentSchemeProducer.java | 3 ++-
 14 files changed, 33 insertions(+), 23 deletions(-)

diff --git 
a/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelPackageScanClassResolverTest.java
 
b/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelPackageScanClassResolverTest.java
index 2366898802..312f33277b 100644
--- 
a/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelPackageScanClassResolverTest.java
+++ 
b/extensions-core/core/deployment/src/test/java/org/apache/camel/quarkus/core/deployment/CamelPackageScanClassResolverTest.java
@@ -65,7 +65,7 @@ public class CamelPackageScanClassResolverTest {
 @Test
 public void findImplementations() {
 ExtendedCamelContext ecc = context.getCamelContextExtension();
-PackageScanClassResolver resolver = ecc.getPackageScanClassResolver();
+PackageScanClassResolver resolver = 
ecc.getContextPlugin(PackageScanClassResolver.class);
 Set> classes = resolver.findImplementations(Animal.class, 
Animal.class.getPackageName());
 assertNotNull(classes);
 assertEquals(2, classes.size());
@@ -76,7 +76,7 @@ public class CamelPackageScanClassResolverTest {
 @Test
 public void findByFilter() {
 ExtendedCamelContext ecc = context.getCamelContextExtension();
-PackageScanClassResolver resolver = ecc.getPackageScanClassResolver();
+PackageScanClassResolver resolver = 
ecc.getContextPlugin(PackageScanClassResolver.class);
 Set> classes = 
resolver.findByFilter(Fungi.class::isAssignableFrom, 
Fungi.class.getPackageName());
 assertNotNull(classes);
 assertEquals(1, classes.size());
@@ -86,7 +86,7 @@ public class CamelPackageScanClassResolverTest {
 @Test
 public void findAnnotated() {
 ExtendedCamelContext ecc = context.getCamelContextExtension();
-PackageScanClassResolver resolver = ecc.getPackageScanClassResolver();
+PackageScanClassResolver resolver = 
ecc.getContextPlugin(PackageScanClassResolver.class);
 Set> classes = resolver.findAnnotated(Singleton.class, 
Animal.class.getPackageName());
 assertNotNull(classes);
 assertEquals(1, classes.size());
diff --git 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
index ebcaa4428e..a024637fc3 100644
--- 
a/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
+++ 
b/extensions-core/core/runtime/src/main/java/org/apache/camel/quarkus/core/CamelContextRecorder.java
@@ -69,10 +69,10 @@ public class CamelContextRecorder {
 extendedCamelContext.setRegistry(registry.getValue());
 context.setTypeConverterRegistry(typeConverterRegistry.getValue());
 context.setLoadTypeConverters(false);
-
extendedCamelContext.setModelJAXBContextFactory(contextFactory.getValue());
-
extendedCamelContext.setPackageScanClassResolver(packageScanClassResolver.getValue());
+extendedCamelContext.addContextPlugin(ModelJAXBContextFactory.class, 
contextFactory.getValue());
+extendedCamelContext.addContextPlugin(PackageScanClassResolver.class, 
packageScanClassResolver.getValue());
 context.build();
-
extendedCamelContext.setComponentNameResolver(componentNameResolver.getValue());
+

[camel-quarkus] 27/30: Regen poms

2023-04-19 Thread jiriondrusek
This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit d008c67cf2e406487245d00122a21a57170e374c
Author: JiriOndrusek 
AuthorDate: Mon Apr 17 09:27:32 2023 +0200

Regen poms
---
 poms/bom/src/main/generated/flattened-full-pom.xml   | 16 
 poms/bom/src/main/generated/flattened-reduced-pom.xml| 16 
 .../src/main/generated/flattened-reduced-verbose-pom.xml | 16 
 3 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index e2c2448e30..9b294635b2 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6081,7 +6081,7 @@
   
 io.projectreactor.netty
 reactor-netty
-1.1.3
+1.1.6
   
   
 io.quarkiverse.freemarker
@@ -6454,7 +6454,7 @@
   
 org.springframework
 spring-aop
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6469,7 +6469,7 @@
   
 org.springframework
 spring-expression
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6480,7 +6480,7 @@
   
 org.springframework
 spring-jdbc
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6495,7 +6495,7 @@
   
 org.springframework
 spring-jms
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6510,7 +6510,7 @@
   
 org.springframework
 spring-messaging
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6525,7 +6525,7 @@
   
 org.springframework
 spring-orm
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6540,7 +6540,7 @@
   
 org.springframework
 spring-tx
-6.0.6
+6.0.8
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index 8c2bef0c55..c40be9d943 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6081,7 +6081,7 @@
   
 io.projectreactor.netty
 reactor-netty
-1.1.3
+1.1.6
   
   
 io.quarkiverse.freemarker
@@ -6409,7 +6409,7 @@
   
 org.springframework
 spring-aop
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6424,7 +6424,7 @@
   
 org.springframework
 spring-expression
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6435,7 +6435,7 @@
   
 org.springframework
 spring-jdbc
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6450,7 +6450,7 @@
   
 org.springframework
 spring-jms
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6465,7 +6465,7 @@
   
 org.springframework
 spring-messaging
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6480,7 +6480,7 @@
   
 org.springframework
 spring-orm
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6495,7 +6495,7 @@
   
 org.springframework
 spring-tx
-6.0.6
+6.0.8
 
   
 org.springframework
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index 5317476182..15107cd165 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6081,7 +6081,7 @@
   
 io.projectreactor.netty
 reactor-netty
-1.1.3
+1.1.6
   
   
 io.quarkiverse.freemarker
@@ -6409,7 +6409,7 @@
   
 org.springframework
 spring-aop
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6424,7 +6424,7 @@
   
 org.springframework
 spring-expression
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6435,7 +6435,7 @@
   
 org.springframework
 spring-jdbc
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6450,7 +6450,7 @@
   
 org.springframework
 spring-jms
-6.0.6
+6.0.8
 
   
 org.springframework
@@ -6465,7 +6465,7 @@
   

[camel-quarkus] 29/30: Fixed jackson-jq-extra (CAMEL-19276)

2023-04-19 Thread jiriondrusek
This is an automated email from the ASF dual-hosted git repository.

jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git

commit 9ea406887180965bd3246dfc0dc8e5d70b5f1ff7
Author: JiriOndrusek 
AuthorDate: Wed Apr 19 09:45:21 2023 +0200

Fixed jackson-jq-extra (CAMEL-19276)
---
 extensions/jq/runtime/pom.xml  |  4 
 poms/bom/pom.xml   | 18 +-
 poms/bom/src/main/generated/flattened-full-pom.xml | 16 
 poms/bom/src/main/generated/flattened-reduced-pom.xml  | 16 
 .../main/generated/flattened-reduced-verbose-pom.xml   | 16 
 5 files changed, 69 insertions(+), 1 deletion(-)

diff --git a/extensions/jq/runtime/pom.xml b/extensions/jq/runtime/pom.xml
index 916c2545fa..d3546debab 100644
--- a/extensions/jq/runtime/pom.xml
+++ b/extensions/jq/runtime/pom.xml
@@ -52,6 +52,10 @@
 org.apache.camel
 camel-jq
 
+
+io.quarkiverse.jackson-jq
+quarkus-jackson-jq-extra
+
 
 
 
diff --git a/poms/bom/pom.xml b/poms/bom/pom.xml
index 8db300950a..5f2641419c 100644
--- a/poms/bom/pom.xml
+++ b/poms/bom/pom.xml
@@ -6201,8 +6201,8 @@
 ${quarkiverse-jackson-jq.version}
 
 
-jackson-jq
 net.thisptr
+jackson-jq
 
 
 
@@ -6211,6 +6211,17 @@
 quarkus-jackson-jq-deployment
 ${quarkiverse-jackson-jq.version}
 
+
+io.quarkiverse.jackson-jq
+quarkus-jackson-jq-extra
+${quarkiverse-jackson-jq.version}
+
+
+net.thisptr
+jackson-jq
+
+
+
 
 io.quarkiverse.jgit
 quarkus-jgit
@@ -6293,8 +6304,13 @@
 ${smallrye.reactive.messaging.camel.version}
 -->
 
+net.thisptr
 jackson-jq
+${jackson-jq-version}
+
+
 net.thisptr
+jackson-jq-extra
 ${jackson-jq-version}
 
 
diff --git a/poms/bom/src/main/generated/flattened-full-pom.xml 
b/poms/bom/src/main/generated/flattened-full-pom.xml
index 6eb276586b..c431cc2f51 100644
--- a/poms/bom/src/main/generated/flattened-full-pom.xml
+++ b/poms/bom/src/main/generated/flattened-full-pom.xml
@@ -6109,6 +6109,17 @@
 quarkus-jackson-jq-deployment
 2.0.0.Alpha
   
+  
+io.quarkiverse.jackson-jq
+quarkus-jackson-jq-extra
+2.0.0.Alpha
+
+  
+net.thisptr
+jackson-jq
+  
+
+  
   
 io.quarkiverse.jgit
 quarkus-jgit
@@ -6190,6 +6201,11 @@
 jackson-jq
 1.0.0-preview.20230409
   
+  
+net.thisptr
+jackson-jq-extra
+1.0.0-preview.20230409
+  
   
 jakarta.jms
 jakarta.jms-api
diff --git a/poms/bom/src/main/generated/flattened-reduced-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-pom.xml
index adb06260cc..6fef92b9cc 100644
--- a/poms/bom/src/main/generated/flattened-reduced-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-pom.xml
@@ -6109,6 +6109,17 @@
 quarkus-jackson-jq-deployment
 2.0.0.Alpha
   
+  
+io.quarkiverse.jackson-jq
+quarkus-jackson-jq-extra
+2.0.0.Alpha
+
+  
+net.thisptr
+jackson-jq
+  
+
+  
   
 io.quarkiverse.jgit
 quarkus-jgit
@@ -6190,6 +6201,11 @@
 jackson-jq
 1.0.0-preview.20230409
   
+  
+net.thisptr
+jackson-jq-extra
+1.0.0-preview.20230409
+  
   
 jakarta.jms
 jakarta.jms-api
diff --git a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml 
b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
index 37a46fe203..8ba3be5f28 100644
--- a/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
+++ b/poms/bom/src/main/generated/flattened-reduced-verbose-pom.xml
@@ -6109,6 +6109,17 @@
 quarkus-jackson-jq-deployment
 2.0.0.Alpha
   
+  
+io.quarkiverse.jackson-jq
+quarkus-jackson-jq-extra
+2.0.0.Alpha
+
+  
+net.thisptr
+jackson-jq
+  
+
+  
   
 io.quarkiverse.jgit
 quarkus-jgit
@@ -6190,6 +6201,11 @@
 jackson-jq
 1.0.0-preview.20230409
   
+  
+net.thisptr
+jackson-jq-extra
+

  1   2   >