Re: [PR] Bump org.jsoup:jsoup from 1.17.1 to 1.17.2 [camel]

2023-12-28 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
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 dependabot/maven/org.jsoup-jsoup-1.17.2 created (now 74355cd4802)

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

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


  at 74355cd4802 Bump org.jsoup:jsoup from 1.17.1 to 1.17.2

No new revisions were added by this update.



[PR] Bump org.jsoup:jsoup from 1.17.1 to 1.17.2 [camel]

2023-12-28 Thread via GitHub


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

   Bumps [org.jsoup:jsoup](https://github.com/jhy/jsoup) from 1.17.1 to 1.17.2.
   
   Release notes
   Sourced from https://github.com/jhy/jsoup/releases;>org.jsoup:jsoup's 
releases.
   
   jsoup Java HTML Parser release 1.17.2
   Improvements
   
   Attribute object accessors: Added 
Element.attribute(String) and 
Attributes.attribute(String) to more simply
   obtain an Attribute object. https://redirect.github.com/jhy/jsoup/issues/2069;>2069
   Attribute source tracking: If source tracking is on, 
and an Attribute's key is changed (
   via Attribute.setKey(String)), the source range is now still 
tracked
   in Attribute.sourceRange(). https://redirect.github.com/jhy/jsoup/issues/2070;>2070
   Wildcard attribute selector: Added support for the 
[*] element with any attribute selector. And also restored
   support for selecting by an empty attribute name prefix ([^]). 
https://redirect.github.com/jhy/jsoup/issues/2079;>2079
   
   Bug Fixes
   
   Mixed-cased source position: When tracking the source 
position of attributes, if the source attribute name was
   mix-cased but the parser was lower-case normalizing attribute names, the 
source position for that attribute was not
   tracked correctly. https://redirect.github.com/jhy/jsoup/issues/2067;>2067
   Source position NPE: When tracking the source position 
of a body fragment parse, a null pointer
   exception was thrown. https://redirect.github.com/jhy/jsoup/issues/2068;>2068
   Multi-point emoji entity: A multi-point encoded emoji 
entity may be incorrectly decoded to the replacement
   character. https://redirect.github.com/jhy/jsoup/issues/2074;>2074
   Selector sub-expressions: (Regression) in a selector 
like parent [attr=va], other, the , OR was binding
   to [attr=va] instead of parent [attr=va], causing 
incorrect selections. The fix includes a EvaluatorDebug class
   that generates a sexpr to represent the query, allowing simpler and more 
thorough query parse
   tests. https://redirect.github.com/jhy/jsoup/issues/2073;>2073
   XML CData output: When generating XML-syntax output 
from parsed HTML, script nodes containing (pseudo) CData
   sections would have an extraneous CData section added, causing script 
execution errors. Now, the data content is
   emitted in a HTML/XML/XHTML polyglot format, if the data is not already 
within a CData
   section. https://redirect.github.com/jhy/jsoup/issues/2078;>2078
   Thread safety: The :has evaluator held a 
non-thread-safe Iterator, and so if an Evaluator object was
   shared across multiple concurrent threads, a NoSuchElement exception may be 
thrown, and the selected results may be
   incorrect. Now, the iterator object is a thread-local. https://redirect.github.com/jhy/jsoup/issues/2088;>2088
   
   
   
   
   Changelog
   Sourced from https://github.com/jhy/jsoup/blob/master/CHANGES.md;>org.jsoup:jsoup's 
changelog.
   
   1.17.2 (2023-Dec-29)
   Improvements
   
   Attribute object accessors: Added 
Element.attribute(String) and 
Attributes.attribute(String) to more simply
   obtain an Attribute object. https://redirect.github.com/jhy/jsoup/issues/2069;>2069
   Attribute source tracking: If source tracking is on, 
and an Attribute's key is changed (
   via Attribute.setKey(String)), the source range is now still 
tracked
   in Attribute.sourceRange(). https://redirect.github.com/jhy/jsoup/issues/2070;>2070
   Wildcard attribute selector: Added support for the 
[*] element with any attribute selector. And also restored
   support for selecting by an empty attribute name prefix ([^]). 
https://redirect.github.com/jhy/jsoup/issues/2079;>2079
   
   Bug Fixes
   
   Mixed-cased source position: When tracking the source 
position of attributes, if the source attribute name was
   mix-cased but the parser was lower-case normalizing attribute names, the 
source position for that attribute was not
   tracked correctly. https://redirect.github.com/jhy/jsoup/issues/2067;>2067
   Source position NPE: When tracking the source position 
of a body fragment parse, a null pointer
   exception was thrown. https://redirect.github.com/jhy/jsoup/issues/2068;>2068
   Multi-point emoji entity: A multi-point encoded emoji 
entity may be incorrectly decoded to the replacement
   character. https://redirect.github.com/jhy/jsoup/issues/2074;>2074
   Selector sub-expressions: (Regression) in a selector 
like parent [attr=va], other, the , OR was binding
   to [attr=va] instead of parent [attr=va], causing 
incorrect selections. The fix includes a EvaluatorDebug class
   that generates a sexpr to represent the query, allowing simpler and more 
thorough query parse
   tests. https://redirect.github.com/jhy/jsoup/issues/2073;>2073
   XML CData output: When generating XML-syntax output 
from parsed HTML, script nodes containing (pseudo) CData
   sections would have an extraneous CData section added, causing script 

Re: [PR] Bump slf4j-version from 2.0.9 to 2.0.10 [camel]

2023-12-28 Thread via GitHub


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

   :star2: Thank you for your contribution to the Apache Camel project! :star2: 
   
   :robot: CI automation will test this PR automatically.
   
   :camel: Apache Camel Committers, please review the following items:
   
   * First-time contributors **require MANUAL approval** for the GitHub Actions 
to run
   
   * You can use the command `/component-test (camel-)component-name1 
(camel-)component-name2..` to request a test from the test bot.
   
   * You can label PRs using `build-all`, `build-dependents`, `skip-tests` and 
`test-dependents` to fine-tune the checks executed by this PR.
   
   * Build and test logs are available in the Summary page. **Only** [Apache 
Camel committers](https://camel.apache.org/community/team/#committers) have 
access to the summary. 
   
   * :warning: Be careful when sharing logs. Review their contents before 
sharing them publicly.


-- 
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 dependabot/maven/slf4j-version-2.0.10 created (now f94d5ebc686)

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

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


  at f94d5ebc686 Bump slf4j-version from 2.0.9 to 2.0.10

No new revisions were added by this update.



[PR] Bump slf4j-version from 2.0.9 to 2.0.10 [camel]

2023-12-28 Thread via GitHub


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

   Bumps `slf4j-version` from 2.0.9 to 2.0.10.
   Updates `org.slf4j:jcl-over-slf4j` from 2.0.9 to 2.0.10
   
   Updates `org.slf4j:jul-to-slf4j` from 2.0.9 to 2.0.10
   
   
   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 show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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



Re: [I] [CI] - Quarkus Main Branch Build Failure [camel-quarkus]

2023-12-28 Thread via GitHub


github-actions[bot] commented on issue #2926:
URL: https://github.com/apache/camel-quarkus/issues/2926#issuecomment-1871703205

   The 
[quarkus-main](https://github.com/apache/camel-quarkus/tree/quarkus-main) 
branch build has failed:
   
   * Build ID: 7353040981-1345-ee9ced19-c313-4a64-98ae-2c8495364709
   * Camel Quarkus Commit: bd6a4b862e6595b50980fc2991a451b9b22158b6
   
   * Quarkus Main Commit: 71a94baced4e5617ae09f5bc06bccb1c9144fd85
   * Link to build: 
https://github.com/apache/camel-quarkus/actions/runs/7353040981


-- 
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-k) 01/02: chore: changelog automatic update

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

github-bot pushed a commit to branch release-2.2.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 805941cfc18b1c288cf2c55a61fa4e08472c1abd
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 29 01:13:47 2023 +

chore: changelog automatic update
---
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7da62287e..047fb33e9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@
 - Ability to configure pull-secret trait when installing camel-k 
[\#5003](https://github.com/apache/camel-k/issues/5003)
 - Jitpack not working as expected 
[\#4998](https://github.com/apache/camel-k/issues/4998)
 - JDK 17 release error for Camel K CRDS artifact 
[\#4826](https://github.com/apache/camel-k/issues/4826)
+- Pushing integration to EKS 
[\#4725](https://github.com/apache/camel-k/issues/4725)
 - Secure internal registry with private TLS certificate fails while pushing 
and pulling the kit [\#4724](https://github.com/apache/camel-k/issues/4724)
 - Provide more detailed `kamel run` documentation 
[\#4713](https://github.com/apache/camel-k/issues/4713)
 - Error running integration with private registry 
[\#4694](https://github.com/apache/camel-k/issues/4694)



(camel-k) branch release-2.2.x updated (6438373d3 -> c3b2c9076)

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

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


from 6438373d3 chore: nightly SBOM update
 new 805941cfc chore: changelog automatic update
 new c3b2c9076 chore: nightly SBOM update

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:
 CHANGELOG.md   |  1 +
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 2 files changed, 7 insertions(+), 6 deletions(-)



(camel-k) 02/02: chore: nightly SBOM update

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

github-bot pushed a commit to branch release-2.2.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit c3b2c9076b7cb372699c4b7fc1e10f04e481839f
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 29 01:16:14 2023 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index 5b22b0be3..f741cdc58 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json;,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:5d9d8ad4-acdd-4200-9c52-d8ad9a63d0a5",
+  "serialNumber": "urn:uuid:bfb23d30-260f-455f-8854-71eccde7af8e",
   "version": 1,
   "metadata": {
-"timestamp": "2023-12-28T01:08:23Z",
+"timestamp": "2023-12-29T01:16:14Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231228010656-63952f3c45f7?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231229011347-805941cfc18b?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20231228010656-63952f3c45f7",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231228010656-63952f3c45f7?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20231229011347-805941cfc18b",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231229011347-805941cfc18b?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k;,
@@ -3830,7 +3830,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231228010656-63952f3c45f7?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231229011347-805941cfc18b?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.42?type=module",



(camel-k) branch release-2.1.x updated (329d6b753 -> 1b2978e61)

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

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


from 329d6b753 chore: nightly SBOM update
 new b077380d9 chore: changelog automatic update
 new 1b2978e61 chore: nightly SBOM update

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:
 CHANGELOG.md   |  2 ++
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 2 files changed, 8 insertions(+), 6 deletions(-)



(camel-k) 01/02: chore: changelog automatic update

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

github-bot pushed a commit to branch release-2.1.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit b077380d9da2b57ae3d9edc98f270c37d9b20fb0
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 29 00:28:44 2023 +

chore: changelog automatic update
---
 CHANGELOG.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5cc0097e4..047fb33e9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,8 @@
 - Ability to configure pull-secret trait when installing camel-k 
[\#5003](https://github.com/apache/camel-k/issues/5003)
 - Jitpack not working as expected 
[\#4998](https://github.com/apache/camel-k/issues/4998)
 - JDK 17 release error for Camel K CRDS artifact 
[\#4826](https://github.com/apache/camel-k/issues/4826)
+- Pushing integration to EKS 
[\#4725](https://github.com/apache/camel-k/issues/4725)
+- Secure internal registry with private TLS certificate fails while pushing 
and pulling the kit [\#4724](https://github.com/apache/camel-k/issues/4724)
 - Provide more detailed `kamel run` documentation 
[\#4713](https://github.com/apache/camel-k/issues/4713)
 - Error running integration with private registry 
[\#4694](https://github.com/apache/camel-k/issues/4694)
 - Test ARM64 architecture - operator and builder pods  
[\#4519](https://github.com/apache/camel-k/issues/4519)



(camel-k) 02/02: chore: nightly SBOM update

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

github-bot pushed a commit to branch release-2.1.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 1b2978e61fa8cf177e3c8c41d65e7505acc36b47
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Dec 29 00:31:12 2023 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index 295c2f386..c5b606e37 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json;,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:3c047186-570b-4514-8bdd-519b634a6149",
+  "serialNumber": "urn:uuid:fd752acc-ac72-4cb8-a2d1-90bdae49e2ff",
   "version": 1,
   "metadata": {
-"timestamp": "2023-12-28T00:24:00Z",
+"timestamp": "2023-12-29T00:31:12Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231227002716-5c7a41db0cee?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231229002844-b077380d9da2?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20231227002716-5c7a41db0cee",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231227002716-5c7a41db0cee?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20231229002844-b077380d9da2",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231229002844-b077380d9da2?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k;,
@@ -3853,7 +3853,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231227002716-5c7a41db0cee?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231229002844-b077380d9da2?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.38?type=module",



Re: [I] Pushing integration to EKS [camel-k]

2023-12-28 Thread via GitHub


github-actions[bot] closed issue #4725: Pushing integration to EKS
URL: https://github.com/apache/camel-k/issues/4725


-- 
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



Re: [I] Knative installation procedure [camel-k]

2023-12-28 Thread via GitHub


github-actions[bot] commented on issue #4779:
URL: https://github.com/apache/camel-k/issues/4779#issuecomment-1871638800

   This issue has been automatically marked as stale due to 90 days of 
inactivity.
   It will be closed if no further activity occurs within 15 days.
   If you think that’s incorrect or the issue should never stale, please simply 
write any comment.
   Thanks for your contributions!


-- 
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-k) branch main updated (6756c782d -> 4663e420a)

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

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


from 6756c782d chore: nightly SBOM update
 new 93eddde1a chore: changelog automatic update
 new 4663e420a chore: nightly SBOM update

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:
 CHANGELOG.md   |  1 +
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 2 files changed, 7 insertions(+), 6 deletions(-)



(camel-k) 02/02: chore: nightly SBOM update

2023-12-28 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-k.git

commit 4663e420a7c131baea6e9935cf1ccc1ed6930b27
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 28 23:46:26 2023 +

chore: nightly SBOM update
---
 camel-k-sbom/camel-k-sbom.json | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/camel-k-sbom/camel-k-sbom.json b/camel-k-sbom/camel-k-sbom.json
index 47230ff12..8362782f9 100644
--- a/camel-k-sbom/camel-k-sbom.json
+++ b/camel-k-sbom/camel-k-sbom.json
@@ -2,10 +2,10 @@
   "$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json;,
   "bomFormat": "CycloneDX",
   "specVersion": "1.4",
-  "serialNumber": "urn:uuid:9c5c7ae2-7ce9-4bb6-bfa0-fa680df7c7a7",
+  "serialNumber": "urn:uuid:f3d9e10f-f656-4052-9687-8b4fda5d5b89",
   "version": 1,
   "metadata": {
-"timestamp": "2023-12-27T23:42:38Z",
+"timestamp": "2023-12-28T23:46:26Z",
 "tools": [
   {
 "vendor": "CycloneDX",
@@ -46,11 +46,11 @@
   }
 ],
 "component": {
-  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231226234527-30065223a159?type=module",
+  "bom-ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231228234324-93eddde1a023?type=module",
   "type": "application",
   "name": "github.com/apache/camel-k/v2",
-  "version": "v0.0.0-20231226234527-30065223a159",
-  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231226234527-30065223a159?type=module\u0026goos=linux\u0026goarch=amd64",
+  "version": "v0.0.0-20231228234324-93eddde1a023",
+  "purl": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231228234324-93eddde1a023?type=module\u0026goos=linux\u0026goarch=amd64",
   "externalReferences": [
 {
   "url": "https://github.com/apache/camel-k;,
@@ -3830,7 +3830,7 @@
   ],
   "dependencies": [
 {
-  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231226234527-30065223a159?type=module",
+  "ref": 
"pkg:golang/github.com/apache/camel-k/v2@v0.0.0-20231228234324-93eddde1a023?type=module",
   "dependsOn": [
 "pkg:golang/github.com/Masterminds/semver@v1.5.0?type=module",
 "pkg:golang/github.com/container-tools/spectrum@v0.6.42?type=module",



(camel-k) 01/02: chore: changelog automatic update

2023-12-28 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-k.git

commit 93eddde1a023148d711e1aa968b97a81f0f57162
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Dec 28 23:43:24 2023 +

chore: changelog automatic update
---
 CHANGELOG.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index faf466d4e..41cea6fe2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,6 +10,7 @@
 - Ability to configure pull-secret trait when installing camel-k 
[\#5003](https://github.com/apache/camel-k/issues/5003)
 - Jitpack not working as expected 
[\#4998](https://github.com/apache/camel-k/issues/4998)
 - JDK 17 release error for Camel K CRDS artifact 
[\#4826](https://github.com/apache/camel-k/issues/4826)
+- Secure internal registry with private TLS certificate fails while pushing 
and pulling the kit [\#4724](https://github.com/apache/camel-k/issues/4724)
 - Provide more detailed `kamel run` documentation 
[\#4713](https://github.com/apache/camel-k/issues/4713)
 - Error running integration with private registry 
[\#4694](https://github.com/apache/camel-k/issues/4694)
 - Test ARM64 architecture - operator and builder pods  
[\#4519](https://github.com/apache/camel-k/issues/4519)



Re: [I] Migrate from react-scripts [camel-karavan]

2023-12-28 Thread via GitHub


mgubaidullin commented on issue #1040:
URL: https://github.com/apache/camel-karavan/issues/1040#issuecomment-1871455022

   Need to wait until Patternfly support 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



svn commit: r66352 - in /dev/camel/camel-karavan/4.3.0: ./ camel-karavan-4.3.0.zip camel-karavan-4.3.0.zip.asc camel-karavan-4.3.0.zip.sha512

2023-12-28 Thread marat
Author: marat
Date: Thu Dec 28 15:59:20 2023
New Revision: 66352

Log:
Import camel-karavan release

Added:
dev/camel/camel-karavan/4.3.0/
dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip   (with props)
dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc
dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512

Added: dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip
==
Binary file - no diff available.

Propchange: dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip
--
svn:mime-type = application/octet-stream

Added: dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc
==
--- dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc (added)
+++ dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.asc Thu Dec 28 
15:59:20 2023
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIzBAABCAAdFiEE7hC6duO+UDoHt1ULCeTRn4/SWEgFAmWNmtUACgkQCeTRn4/S
+WEjS3RAAiAXCEz7E7TP5Zs78B1TqPyxQ5er0ntyq2q/cBMkZnVxGJCJU8getHsZb
+I1zsh7ScC/6Hk5z9xQGNgZ6B+jHjyQ3ErUmgaJcWpH/teOa+bnkKnplT0JYlbXpV
+Vo+jkZWKzE7auiQ26oV2dbVyb6mvxa9gQ0z+puQ9imqnhXfpyHUEpBtxbXq68YY1
+dkhLynRelXZXhr22NKaMYAj7gac63TpSDuAiLmwTvFwp6qKCfZ62Lhm4OF/xXg6E
+ewXwP3FZSdvN7AbHHBExBpgQeObyhXknxX+mbNsPR82iBkdTM4i/8k/gl+ppv51v
+J2at/3CPTkG/FYdGmuaTmVjVwhIGq3mquspPWLDp/u67GDCZ+B+HrJFLGXWKiR6p
+HgWbUCf3wNbbdR4X/+lPyOH+SpI83jvKaVDOEtWvgUrT4ugkft5KCnJE0LTa4eMf
+wCHEs6lmqWPZd68mWGd4YKrKUJIWfC5UFaBDEbUN3D3qR1ae0/xjAz4nUcPHIGyl
+nhfpdSTICpBGHNS13gRkLkTSJaugc7lkUZjPrzMoRyXTxHL3CQE2BYd5mRP695hh
+Ig4eGX7+0B4Z20o5YYsUtD0e9T6t83IFQhZ2PV0+60hISY03UkKqJyJ1PbDee4KF
+R/I8O08DVYkGsApbEHUs99t0DLdIyXnczwnNBNPLeBmzsheLfvI=
+=kBEI
+-END PGP SIGNATURE-

Added: dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512
==
--- dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512 (added)
+++ dev/camel/camel-karavan/4.3.0/camel-karavan-4.3.0.zip.sha512 Thu Dec 28 
15:59:20 2023
@@ -0,0 +1,3 @@
+camel-karavan-4.3.0.zip: 1BC26B67 0391359F DEE1B13F C546B47B 110A873C F3396191
+ C641E0FE 89370E83 51BA9A2A 1B459687 9A4E4D6C 75B6B6A8
+ F7C751CA 82DC1C5E A58824CC ED98F20C




(camel-karavan) tag 4.3.0 created (now 90283eac)

2023-12-28 Thread marat
This is an automated email from the ASF dual-hosted git repository.

marat pushed a change to tag 4.3.0
in repository https://gitbox.apache.org/repos/asf/camel-karavan.git


  at 90283eac (commit)
No new revisions were added by this update.



(camel-karavan) 01/02: VScode Darkmode for #1012

2023-12-28 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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

commit 2a34bdf55ec27d4d74cf587f22210d1a04dca88b
Author: Marat Gubaidullin 
AuthorDate: Wed Dec 27 21:15:59 2023 -0500

VScode Darkmode for #1012
---
 karavan-designer/src/designer/beans/bean.css | 2 +-
 karavan-vscode/webview/index.css | 7 ++-
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/karavan-designer/src/designer/beans/bean.css 
b/karavan-designer/src/designer/beans/bean.css
index 73a09fce..d2fe4b12 100644
--- a/karavan-designer/src/designer/beans/bean.css
+++ b/karavan-designer/src/designer/beans/bean.css
@@ -17,7 +17,7 @@
 
 .karavan .bean-card {
 /*max-width: 800px;*/
-border-style: dotted;
+border-style: dashed;
 border-radius: 42px;
 border-width: 1px;
 padding: 16px 6px 16px 16px;
diff --git a/karavan-vscode/webview/index.css b/karavan-vscode/webview/index.css
index c412caa1..693a1824 100644
--- a/karavan-vscode/webview/index.css
+++ b/karavan-vscode/webview/index.css
@@ -143,11 +143,8 @@ body, :root, #root, .karavan {
 
 /* Designer */
 .vscode-dark .karavan .dsl-page .dsl-page-columns,
-.vscode-dark .karavan .rest-page .rest-page-columns,
-.vscode-dark .karavan .beans-page .beans-page-columns,
-.vscode-dark .karavan .error-page .error-page-columns,
-.vscode-dark .karavan .exception-page .exception-page-columns,
-.vscode-dark .karavan .templates-page .templates-page-columns {  
+.vscode-dark .karavan .rest-designer,
+.vscode-dark .karavan .bean-designer {  
   background-color: var(--vscode-editor-background);
 }
 



(camel-karavan) branch main updated (071c94e1 -> 90283eac)

2023-12-28 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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


from 071c94e1 Update version to 4.3.0 for release
 new 2a34bdf5 VScode Darkmode for #1012
 new 90283eac Set default version for DevMoe Image

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:
 karavan-designer/src/designer/beans/bean.css   | 2 +-
 karavan-vscode/webview/index.css   | 7 ++-
 .../camel/karavan/installer/resources/KaravanDeployment.java   | 6 +-
 3 files changed, 8 insertions(+), 7 deletions(-)



(camel-karavan) 02/02: Set default version for DevMoe Image

2023-12-28 Thread marat
This is an automated email from the ASF dual-hosted git repository.

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

commit 90283eacf69a7716572326143971cd08d7410a48
Author: Marat Gubaidullin 
AuthorDate: Thu Dec 28 10:04:09 2023 -0500

Set default version for DevMoe Image
---
 .../apache/camel/karavan/installer/resources/KaravanDeployment.java | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git 
a/karavan-web/karavan-installer/src/main/java/org/apache/camel/karavan/installer/resources/KaravanDeployment.java
 
b/karavan-web/karavan-installer/src/main/java/org/apache/camel/karavan/installer/resources/KaravanDeployment.java
index 3cd74235..7119b06d 100644
--- 
a/karavan-web/karavan-installer/src/main/java/org/apache/camel/karavan/installer/resources/KaravanDeployment.java
+++ 
b/karavan-web/karavan-installer/src/main/java/org/apache/camel/karavan/installer/resources/KaravanDeployment.java
@@ -38,6 +38,10 @@ public class KaravanDeployment {
 String image = baseImage + ":" + config.getVersion();
 List envVarList = new ArrayList<>();
 
+String devModeImage = config.getDevmodeImage().contains(":")
+? config.getDevmodeImage()
+: config.getDevmodeImage() + ":" + config.getVersion();
+
 envVarList.add(
 new EnvVar("KARAVAN_ENVIRONMENT", config.getEnvironment(), 
null)
 );
@@ -51,7 +55,7 @@ public class KaravanDeployment {
 new EnvVar("KARAVAN_CAMEL_STATUS_INTERVAL", "3s", null)
 );
 envVarList.add(
-new EnvVar("KARAVAN_DEVMODE_IMAGE", config.getDevmodeImage(), 
null)
+new EnvVar("KARAVAN_DEVMODE_IMAGE", devModeImage, null)
 );
 envVarList.add(
 new EnvVar("INFINISPAN_HOSTS", "infinispan." + 
config.getNamespace() + ":11222", null)



Re: [PR] CAMEL-20113: camel/tests consolidating [camel]

2023-12-28 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+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



Re: [PR] CAMEL-20113: camel/tests consolidating [camel]

2023-12-28 Thread via GitHub


kulagaIA commented on PR #12612:
URL: https://github.com/apache/camel/pull/12612#issuecomment-1871010582

   /component-test camel-jms


-- 
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



Re: [PR] CAMEL-20113: camel/tests consolidating [camel]

2023-12-28 Thread via GitHub


kulagaIA commented on PR #12612:
URL: https://github.com/apache/camel/pull/12612#issuecomment-1871010462

   > I wonder if this test fails for you also
   > 
   > org.apache.camel.component.jms.JmsDeliveryDelayTest.testInOnlyWithDelay
10.21s  FAILURE
   
   Yes, it have failed in the build job, but it passes in /component-test 
camel-jms and local runs


-- 
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 (071719ad73e -> 22b211422d0)

2023-12-28 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 071719ad73e Bump aws-java-sdk2-version from 2.22.6 to 2.22.7 (#12617)
 add 22b211422d0 Regen

No new revisions were added by this update.

Summary of changes:
 .../apache/camel/component/rest/RestProducerBindingProcessorTest.java| 1 -
 1 file changed, 1 deletion(-)



(camel) branch main updated: Regen

2023-12-28 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 22b211422d0 Regen
22b211422d0 is described below

commit 22b211422d0dd82516ba1b17c4c4b8a565443fcb
Author: Claus Ibsen 
AuthorDate: Thu Dec 28 10:02:45 2023 +0100

Regen
---
 .../apache/camel/component/rest/RestProducerBindingProcessorTest.java| 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/core/camel-core/src/test/java/org/apache/camel/component/rest/RestProducerBindingProcessorTest.java
 
b/core/camel-core/src/test/java/org/apache/camel/component/rest/RestProducerBindingProcessorTest.java
index e6d345d5409..38de93d7e3f 100644
--- 
a/core/camel-core/src/test/java/org/apache/camel/component/rest/RestProducerBindingProcessorTest.java
+++ 
b/core/camel-core/src/test/java/org/apache/camel/component/rest/RestProducerBindingProcessorTest.java
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.component.rest;
 
-import java.io.InputStream;
 import java.io.OutputStream;
 
 import org.apache.camel.AsyncCallback;



Re: [PR] CAMEL-20113: camel/tests consolidating [camel]

2023-12-28 Thread via GitHub


davsclaus commented on PR #12612:
URL: https://github.com/apache/camel/pull/12612#issuecomment-1870956054

   I wonder if this test fails for you also
   
   
   org.apache.camel.component.jms.JmsDeliveryDelayTest.testInOnlyWithDelay | 
10.21s | FAILURE
   -- | -- | --
   
   
   


-- 
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 (1fafb45b2fa -> 071719ad73e)

2023-12-28 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 1fafb45b2fa Upgrade log4j in maven archetypes
 add 071719ad73e Bump aws-java-sdk2-version from 2.22.6 to 2.22.7 (#12617)

No new revisions were added by this update.

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



Re: [PR] CAMEL-20113: camel/tests consolidating [camel]

2023-12-28 Thread via GitHub


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

   :robot: The Apache Camel test robot will run the tests for you :+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



Re: [PR] CAMEL-20113: camel/tests consolidating [camel]

2023-12-28 Thread via GitHub


davsclaus commented on PR #12612:
URL: https://github.com/apache/camel/pull/12612#issuecomment-1870936556

   /component-test camel-jms


-- 
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 dependabot/maven/aws-java-sdk2-version-2.22.7 deleted (was 5bf01aa9a61)

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

davsclaus pushed a change to branch 
dependabot/maven/aws-java-sdk2-version-2.22.7
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 5bf01aa9a61 Bump aws-java-sdk2-version from 2.22.6 to 2.22.7

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(camel) branch main updated (1fafb45b2fa -> 071719ad73e)

2023-12-28 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 1fafb45b2fa Upgrade log4j in maven archetypes
 add 071719ad73e Bump aws-java-sdk2-version from 2.22.6 to 2.22.7 (#12617)

No new revisions were added by this update.

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



Re: [PR] Bump aws-java-sdk2-version from 2.22.6 to 2.22.7 [camel]

2023-12-28 Thread via GitHub


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


-- 
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



Re: [PR] Bump com.atlassian.sal:sal-api from 5.1.4 to 5.2.0 [camel]

2023-12-28 Thread via GitHub


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

   OK, I won't notify you about com.atlassian.sal:sal-api again, unless you 
re-open this PR.


-- 
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 dependabot/maven/com.atlassian.sal-sal-api-5.2.0 deleted (was e69d2d85f2f)

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

github-bot pushed a change to branch 
dependabot/maven/com.atlassian.sal-sal-api-5.2.0
in repository https://gitbox.apache.org/repos/asf/camel.git


 was e69d2d85f2f Bump com.atlassian.sal:sal-api from 5.1.4 to 5.2.0

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



Re: [PR] Bump com.atlassian.sal:sal-api from 5.1.4 to 5.2.0 [camel]

2023-12-28 Thread via GitHub


davsclaus closed pull request #12616: Bump com.atlassian.sal:sal-api from 5.1.4 
to 5.2.0
URL: https://github.com/apache/camel/pull/12616


-- 
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



Re: [PR] Bump com.atlassian.sal:sal-api from 5.1.4 to 5.2.0 [camel]

2023-12-28 Thread via GitHub


davsclaus commented on PR #12616:
URL: https://github.com/apache/camel/pull/12616#issuecomment-1870935904

   @dependabot ignore this dependency


-- 
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