Re: [PR] fix(core): Externally built Integrations run command configuration from jvm trait [camel-k]

2024-02-13 Thread via GitHub


gansheer commented on code in PR #5151:
URL: https://github.com/apache/camel-k/pull/5151#discussion_r1487792970


##
pkg/cmd/promote.go:
##
@@ -468,6 +469,12 @@ func (o *promoteCmdOptions) editIntegration(it 
*v1.Integration) *v1.Integration
dst.Spec.Traits.Container = &traitv1.ContainerTrait{}
}
dst.Spec.Traits.Container.Image = contImage
+   if dst.Spec.Traits.JVM == nil {

Review Comment:
   It is not a flacky test in this case, the promote command run the "promoted" 
integration with the trait `Container.Image`, so it becomes an external kit and 
does not start correctly. Since the trait was not explicilty set in the 
original integration, we are relying on default behavior, which will be 
different for original and promoted integration. This aims to fix this issue.
   
   The alternative would be to add support for the traits on the comand options 
or add the copy of the integration kit created for the image.



-- 
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 (36f6936623e -> 0c5b620c3cf)

2024-02-13 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 36f6936623e Bump hapi-fhir-version from 6.10.4 to 7.0.0 (#13104)
 add 0c5b620c3cf Polished

No new revisions were added by this update.

Summary of changes:
 docs/user-manual/modules/ROOT/pages/variables.adoc | 32 ++
 1 file changed, 15 insertions(+), 17 deletions(-)



(camel-website) branch new440 updated: Camel 4.4 whats new. WIP

2024-02-13 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/new440 by this push:
 new d6524936 Camel 4.4 whats new. WIP
d6524936 is described below

commit d65249368123095c8e7afe9f45fa4de769962c18
Author: Claus Ibsen 
AuthorDate: Tue Feb 13 14:10:16 2024 +0100

Camel 4.4 whats new. WIP
---
 content/blog/2024/02/camel44-whatsnew/index.md |  56 +
 .../2024/02/camel44-whatsnew/variable-debug.png| Bin 0 -> 796691 bytes
 2 files changed, 56 insertions(+)

diff --git a/content/blog/2024/02/camel44-whatsnew/index.md 
b/content/blog/2024/02/camel44-whatsnew/index.md
index a612bdf6..a9b1e4ae 100644
--- a/content/blog/2024/02/camel44-whatsnew/index.md
+++ b/content/blog/2024/02/camel44-whatsnew/index.md
@@ -26,6 +26,62 @@ useful for tooling where you can then change routes during 
troubleshooting an ex
 TODO: Throttler EIP
 TODO: Variables
 
+### Variables
+
+The biggest new feature in Camel 4.4 is the introduction of 
[variables](/manual/variables.adoc).
+
+A variable is a key/value that can hold a value that can either be private per 
`Exchange`, or shared per route, or globally.
+
+With variables, you can now more easily share data between routes and/or 
globally. Variables is also readily accessible
+from EIPs and languages, just as message _headers_ or _exchange properties_ 
are. In other words, they have been added
+as first-class into Camel.
+
+You can find a small example here:
+
+- https://github.com/apache/camel-kamelets-examples/tree/main/jbang/variables
+
+We have also made a selected number of EIPs have _special use_ of variables. 
The idea is to make it easier to
+collect various set of data from external systems using Camel components and 
commonly used EIPs, without any
+ceremony to prepare message body and headers, and cleanup afterward (i.e. 
removing HTTP headers).
+
+And you can find a small example here using variables with EIPs:
+
+- 
https://github.com/apache/camel-kamelets-examples/tree/main/jbang/variables-eip
+
+The JBang debugger can also show variables if enabled with 
`--show-exchange-variables`, as shown in the screenshot below:
+
+[source,bash]
+
+camel debug * --show-exchange-variables
+
+
+![JBang Debug with Variables](variable-debug.png)
+
+In the screenshot, you can see three variables:
+
+- `alc1` - Is a float with the alcohol percentage of beer 1
+- `beer1` - Is the json structure of beer1
+- `beer2` - Is the json structure of beer2
+
+The debugger is suspended (blue) in the Camel route where we are about to set 
variable `alc2` computed as follows:
+
+[source,yaml]
+```yaml
+- setVariable:
+name: alc2
+expression:
+  jq:
+expression: .alcohol | rtrimstr("%")
+source: beer2
+resultType: float
+```
+
+Here you can see the `alc2` variable is set from a `jq` expression that grabs 
the alcohol field, and remove the `%` sign.
+The source (input) is from another variable named `beer2`. You can also 
specify `header:myHeader` to refer to a header, or
+if you remove `source` then the message body is used as input (default).
+The result is converted to a Java `float`,
+
+
 ## Camel JBang (Camel CLI)
 
 We have continued investing in Camel JBang, and this time we have some great 
new stuff in the release.
diff --git a/content/blog/2024/02/camel44-whatsnew/variable-debug.png 
b/content/blog/2024/02/camel44-whatsnew/variable-debug.png
new file mode 100644
index ..e5d1915a
Binary files /dev/null and 
b/content/blog/2024/02/camel44-whatsnew/variable-debug.png differ



(camel-website) branch new440 updated: Camel 4.4 whats new. WIP

2024-02-13 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/new440 by this push:
 new 9278c0e9 Camel 4.4 whats new. WIP
9278c0e9 is described below

commit 9278c0e958a30d712b7bc2437c583ed3dd20976a
Author: Claus Ibsen 
AuthorDate: Tue Feb 13 14:15:08 2024 +0100

Camel 4.4 whats new. WIP
---
 content/blog/2024/02/camel44-whatsnew/index.md | 5 +
 1 file changed, 5 insertions(+)

diff --git a/content/blog/2024/02/camel44-whatsnew/index.md 
b/content/blog/2024/02/camel44-whatsnew/index.md
index a9b1e4ae..8b900ccd 100644
--- a/content/blog/2024/02/camel44-whatsnew/index.md
+++ b/content/blog/2024/02/camel44-whatsnew/index.md
@@ -81,6 +81,11 @@ The source (input) is from another variable named `beer2`. 
You can also specify
 if you remove `source` then the message body is used as input (default).
 The result is converted to a Java `float`,
 
+**NOTE:** 
+If you take a closer look in the screenshot above, then the debugger reveals 
that the `Exchange` has no message headers,
+and that the message body is empty (`null`). The example is exclusively using 
variables to gather and compute data; without
+the need to store and restore data on message header/body during routing. This 
is a cleaner and elegant practice.
+
 
 ## Camel JBang (Camel CLI)
 



(camel-website) branch new440 updated: Camel 4.4 whats new. WIP

2024-02-13 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/new440 by this push:
 new b20affdb Camel 4.4 whats new. WIP
b20affdb is described below

commit b20affdbc305b3443f9c150267854667c619dd58
Author: Claus Ibsen 
AuthorDate: Tue Feb 13 14:17:01 2024 +0100

Camel 4.4 whats new. WIP
---
 content/blog/2024/02/camel44-whatsnew/index.md | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/content/blog/2024/02/camel44-whatsnew/index.md 
b/content/blog/2024/02/camel44-whatsnew/index.md
index 8b900ccd..03f944cc 100644
--- a/content/blog/2024/02/camel44-whatsnew/index.md
+++ b/content/blog/2024/02/camel44-whatsnew/index.md
@@ -24,7 +24,6 @@ useful for tooling where you can then change routes during 
troubleshooting an ex
 ## DSL
 
 TODO: Throttler EIP
-TODO: Variables
 
 ### Variables
 
@@ -86,7 +85,6 @@ If you take a closer look in the screenshot above, then the 
debugger reveals tha
 and that the message body is empty (`null`). The example is exclusively using 
variables to gather and compute data; without
 the need to store and restore data on message header/body during routing. This 
is a cleaner and elegant practice.
 
-
 ## Camel JBang (Camel CLI)
 
 We have continued investing in Camel JBang, and this time we have some great 
new stuff in the release.
@@ -119,7 +117,7 @@ We have changed the recommended ordering of BOM from:
 - `spring-boot-dependencies`
 - `camel-spring-boot-bom`
 
-To reverse the order so Camel comes first:
+... to reverse the order, so Camel comes first:
 
 - `camel-spring-boot-bom`
 - `spring-boot-dependencies`
@@ -133,6 +131,7 @@ Upgraded to latest Spring Boot 3.2.2 release.
 
 TODO: About the new DSL for Kotlin
 
+
 ## Miscellaneous
 
 The `camel-grpc` can now do full streaming in proxy mode. 
@@ -145,7 +144,7 @@ this is useful information, when using dynamic computed 
queue names.
 The `camel-kubernetes` component can now auto-create `KubernetesClient` if 
needed, making it easier to use when running inside
 a Kubernetes pod.
 
-Upgraded many 3rd-party dependencies to the latest release at the time of 
release.
+Upgraded many third-party dependencies to the latest release at the time of 
release.
 
 ## New Components
 



[PR] Whats new in Camel 4.4 WIP [camel-website]

2024-02-13 Thread via GitHub


davsclaus opened a new pull request, #1139:
URL: https://github.com/apache/camel-website/pull/1139

   Please help update this docs, and fill in the TODO and add other important 
stuff you think is worth to mention.
   
   We may want to add a bit about stuff around pipe and eventing for Camel K 
that this team helped with.


-- 
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-kamelets-examples) branch main updated: Add Knative broker example (#56)

2024-02-13 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-kamelets-examples.git


The following commit(s) were added to refs/heads/main by this push:
 new e775b5c  Add Knative broker example (#56)
e775b5c is described below

commit e775b5c0e21902a0f12da13deeaaa63fd445547b
Author: Christoph Deppisch 
AuthorDate: Tue Feb 13 14:21:41 2024 +0100

Add Knative broker example (#56)

Shows Kamelets connecting to a Knative eventing message broker as event 
source and sink
---
 jbang/knative/README.adoc  | 83 ++
 jbang/knative/application.properties   | 20 +++
 jbang/knative/knative.json | 35 +
 jbang/knative/log-sink.yaml| 28 ++
 jbang/knative/pipes/log-sink-pipe.yaml | 41 +++
 jbang/knative/pipes/timer-source-pipe.yaml | 50 ++
 jbang/knative/timer-source.yaml| 35 +
 7 files changed, 292 insertions(+)

diff --git a/jbang/knative/README.adoc b/jbang/knative/README.adoc
new file mode 100644
index 000..5b652be
--- /dev/null
+++ b/jbang/knative/README.adoc
@@ -0,0 +1,83 @@
+== Knative
+
+This example connects to Knative eventing message broker using Apache Camel 
Kamelets as event sources and sinks.
+
+=== Install JBang
+
+First install JBang according to https://www.jbang.dev
+
+When JBang is installed then you should be able to run from a shell:
+
+[source,sh]
+
+$ jbang --version
+
+
+This will output the version of JBang.
+
+To run this example you can either install Camel on JBang via:
+
+[source,sh]
+
+$ jbang app install camel@apache/camel
+
+
+Which allows to run CamelJBang with `camel` as shown below.
+
+=== How to run
+
+The sample provides multiple routes that interact with each other.
+The timer-source route produces events periodically and the log-sink route is 
there to consume events printing its data to the log output.
+
+The `knative.json` configuration provides the Knative broker endpoint URL for 
both routes.
+In a local JBang environment we will not use a Knative broker but connect the 
routes directly where the source sends its events to the Http endpoint provided 
by the sink.
+
+Then you can run this example using:
+
+[source,sh]
+
+$ camel run log-sink.yaml
+$ camel run timer-source.yaml
+
+
+Pleas make sure to run the routes in separate terminals so you can see the 
individual log output with the events being exchanged.
+
+=== Live reload
+
+You can run the example in dev mode which allows you to edit the example,
+and hot-reload when the file is saved.
+
+[source,sh]
+
+$ camel run log-sink.yaml --dev
+
+
+=== Run directly from github
+
+The example can also be run directly by referring to the github URL as shown:
+
+[source,sh]
+
+$ camel 
runhttps://github.com/apache/camel-kamelets-examples/tree/main/jbang/knative
+
+
+=== Developer Web Console
+
+You can enable the developer console via `--console` flag as show:
+
+[source,sh]
+
+$ camel run log-sink.yaml --console
+
+
+Then you can browse: http://localhost:8080/q/dev to introspect the running 
Camel application.
+
+=== Help and contributions
+
+If you hit any problem using Camel or have some feedback, then please
+https://camel.apache.org/community/support/[let us know].
+
+We also love contributors, so
+https://camel.apache.org/community/contributing/[get involved] :-)
+
+The Camel riders!
diff --git a/jbang/knative/application.properties 
b/jbang/knative/application.properties
new file mode 100644
index 000..3fa35e5
--- /dev/null
+++ b/jbang/knative/application.properties
@@ -0,0 +1,20 @@
+#
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+camel.component.knative.environmentPath=file:knative.json
+
+camel.jbang.dependencies=camel:knative,camel:knative-http,camel:platform-http
diff --git a/jbang/knative/knative.json b/jbang/knative/knative.json
new file mode 100644
index 000..b2d0005
--- /dev/null
+++ b/jbang/knative/knative.json
@@ -0,0 +1,35 @@
+{
+  "services": [
+{
+  "type": "event",
+  "name": "default",
+  "url": "http://localhost:8080/events

Re: [PR] Add Knative broker example [camel-kamelets-examples]

2024-02-13 Thread via GitHub


davsclaus merged PR #56:
URL: https://github.com/apache/camel-kamelets-examples/pull/56


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



[PR] Camel 4.4.0 upgrade [camel-quarkus]

2024-02-13 Thread via GitHub


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

   Camel 4.4.0 upgrade.
   



-- 
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 4.4.0 upgrade [camel-quarkus]

2024-02-13 Thread via GitHub


JiriOndrusek commented on PR #5747:
URL: https://github.com/apache/camel-quarkus/pull/5747#issuecomment-1941550100

   The last commit is not squashed as it is meant for the fixes (if needed), 
I'll squash it when the CI is successful)


-- 
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] fix(core): Externally built Integrations run command configuration from jvm trait [camel-k]

2024-02-13 Thread via GitHub


squakez commented on code in PR #5151:
URL: https://github.com/apache/camel-k/pull/5151#discussion_r1487884184


##
pkg/cmd/promote.go:
##
@@ -468,6 +469,12 @@ func (o *promoteCmdOptions) editIntegration(it 
*v1.Integration) *v1.Integration
dst.Spec.Traits.Container = &traitv1.ContainerTrait{}
}
dst.Spec.Traits.Container.Image = contImage
+   if dst.Spec.Traits.JVM == nil {

Review Comment:
   I see. We can proceed then.



-- 
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] Externally built Integrations are deployed without a command in Camel-K 2.2.0 [camel-k]

2024-02-13 Thread via GitHub


squakez closed issue #5112: Externally built Integrations are deployed without 
a command in Camel-K 2.2.0
URL: https://github.com/apache/camel-k/issues/5112


-- 
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] fix(core): Externally built Integrations run command configuration from jvm trait [camel-k]

2024-02-13 Thread via GitHub


squakez merged PR #5151:
URL: https://github.com/apache/camel-k/pull/5151


-- 
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: fix(core): Externally built Integrations run command

2024-02-13 Thread pcongiusti
This is an automated email from the ASF dual-hosted git repository.

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


The following commit(s) were added to refs/heads/main by this push:
 new 9d35897f2 fix(core): Externally built Integrations run command
9d35897f2 is described below

commit 9d35897f2adc8533c99b28d48e5e7a1681c34c09
Author: Gaelle Fournier 
AuthorDate: Wed Feb 7 17:51:31 2024 +0100

fix(core): Externally built Integrations run command

* change the check to evaluate if the kit is external or not instead of 
'camel-k-kit' naming convention
* let the possibility for the user to explicitly enable the trait jvm and 
add a condition to inform the user that it is disabled by default
* enable jvm trait explicitly on promote command
---
 .../ROOT/pages/installation/registry/registry.adoc |  2 +-
 docs/modules/ROOT/partials/apis/camel-k-crds.adoc  |  4 +-
 docs/modules/traits/pages/jvm.adoc |  4 +-
 e2e/common/runtimes/runtimes_test.go   |  6 +--
 .../operator_id_filtering_test.go  |  2 +-
 e2e/install/cli/global_test.go |  2 +-
 pkg/apis/camel/v1/integrationkit_types_support.go  |  5 +++
 pkg/apis/camel/v1/trait/jvm.go |  4 +-
 pkg/cmd/promote.go | 13 ++
 pkg/cmd/promote_test.go| 12 ++
 .../integrationkit/integrationkit_controller.go|  2 +-
 pkg/trait/container.go |  6 ---
 pkg/trait/jvm.go   | 12 +++---
 pkg/trait/jvm_test.go  | 50 ++
 pkg/trait/trait_condition_types.go |  5 +++
 resources/traits.yaml  | 11 ++---
 16 files changed, 111 insertions(+), 29 deletions(-)

diff --git a/docs/modules/ROOT/pages/installation/registry/registry.adoc 
b/docs/modules/ROOT/pages/installation/registry/registry.adoc
index 5f5e2f60e..2a8099d55 100644
--- a/docs/modules/ROOT/pages/installation/registry/registry.adoc
+++ b/docs/modules/ROOT/pages/installation/registry/registry.adoc
@@ -50,7 +50,7 @@ You can therefore update the values in the 
`IntegrationPlatform` in order to per
 == Container registry requirements
 Each platform may have its default registry of choice. And each container 
registry may have a slight different configuration. Please, be aware that we 
won't be able to support all the available solutions.
 
-The only requirement we have is that the registry must be able to 
produce/consume images with the following tagging convention: 
`[:]//camel-k-kit-@sha256:`,
 ie 
`10.110.251.124/default/camel-k-kit-ck0612dahvgs73ffe5g0@sha256:3c9589dd093b689aee6bf5c2d35aa1fce9d0e76d5bb7da8b61d87e7a1ed6f36a`.
+The only requirement we have is that the registry must be able to 
produce/consume images with the following tagging convention: 
`[:]//kit-@sha256:`,
 ie 
`10.110.251.124/default/kit-ck0612dahvgs73ffe5g0@sha256:3c9589dd093b689aee6bf5c2d35aa1fce9d0e76d5bb7da8b61d87e7a1ed6f36a`.
 
 This should be within the standard convention adopted by 
https://docs.docker.com/engine/reference/commandline/pull/#pull-an-image-by-digest-immutable-identifier[pulling
 a Docker image by digest] (immutable).
 
diff --git a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc 
b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
index cd452887f..1d504da9a 100644
--- a/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
+++ b/docs/modules/ROOT/partials/apis/camel-k-crds.adoc
@@ -6836,11 +6836,11 @@ Forces the value for labels `sidecar.istio.io/inject`. 
By default the label is s
 
 * <<#_camel_apache_org_v1_Traits, Traits>>
 
-The JVM trait is used to configure the JVM that runs the Integration. This 
trait can be configured only for Integration and related IntegrationKits
+The JVM trait is used to configure the JVM that runs the Integration. This 
trait is configured only for Integration and related IntegrationKits
 (bound to a container image) built by Camel K operator. If the system detects 
the usage of a different container image (ie, built externally), then, the
 trait is disabled by the platform.
 
-NOTE: the platform will skip the trait configuration for those container image 
matching `camel-k-kit-` name.
+WARNING: you can still enable the trait explicitly even when it is disabled by 
the platform but you should be aware that some configurations could fail.
 
 
 [cols="2,2a",options="header"]
diff --git a/docs/modules/traits/pages/jvm.adoc 
b/docs/modules/traits/pages/jvm.adoc
index 6e2654c44..5a2cc1540 100755
--- a/docs/modules/traits/pages/jvm.adoc
+++ b/docs/modules/traits/pages/jvm.adoc
@@ -1,11 +1,11 @@
 = Jvm Trait
 
 // Start of autogenerated code - DO NOT EDIT! (description)
-The JVM trait is used to configure the JVM that runs the Integration. This 
trait can be configured only for Integration and related IntegrationKits
+The JVM trait is u

Re: [PR] Whats new in Camel 4.4 WIP [camel-website]

2024-02-13 Thread via GitHub


squakez commented on code in PR #1139:
URL: https://github.com/apache/camel-website/pull/1139#discussion_r1487890613


##
content/blog/2024/02/camel44-whatsnew/index.md:
##
@@ -0,0 +1,169 @@
+---
+title: "Apache Camel 4.4 What's New"
+date: 2024-02-19
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.4 release.
+---
+
+Apache Camel 4.4 (LTS) has just been [released](/blog/2024/02/RELEASE-4.4.0/).
+
+This release introduces a set of new features and noticeable improvements that 
we will cover in this blog post.
+
+## Camel Core
+
+The simple language has been improved with `hash` function, and further 
improved the embedded functions for `jsonpath`, `jq` and `xpath`
+making it easier to grab data from JSon or XML within your simple expression 
or predicates.
+
+We have optimized data formats to avoid converting payload to `byte[]` when 
unmarshalling, but allowing each data format
+to unmarshal the payload _as-is_. 
+
+Added JMX operation to update routes at runtime via XML format (requires 
turning on this feature). This can be
+useful for tooling where you can then change routes during troubleshooting an 
existing running Camel integration.
+
+## DSL
+
+TODO: Throttler EIP
+
+### Variables
+
+The biggest new feature in Camel 4.4 is the introduction of 
[variables](/manual/variables.adoc).
+
+A variable is a key/value that can hold a value that can either be private per 
`Exchange`, or shared per route, or globally.
+
+With variables, you can now more easily share data between routes and/or 
globally. Variables is also readily accessible
+from EIPs and languages, just as message _headers_ or _exchange properties_ 
are. In other words, they have been added
+as first-class into Camel.
+
+You can find a small example here:
+
+- https://github.com/apache/camel-kamelets-examples/tree/main/jbang/variables
+
+We have also made a selected number of EIPs have _special use_ of variables. 
The idea is to make it easier to
+collect various set of data from external systems using Camel components and 
commonly used EIPs, without any
+ceremony to prepare message body and headers, and cleanup afterward (i.e. 
removing HTTP headers).
+
+And you can find a small example here using variables with EIPs:
+
+- 
https://github.com/apache/camel-kamelets-examples/tree/main/jbang/variables-eip
+
+The JBang debugger can also show variables if enabled with 
`--show-exchange-variables`, as shown in the screenshot below:
+
+[source,bash]
+
+camel debug * --show-exchange-variables
+
+
+![JBang Debug with Variables](variable-debug.png)
+
+In the screenshot, you can see three variables:
+
+- `alc1` - Is a float with the alcohol percentage of beer 1
+- `beer1` - Is the json structure of beer1
+- `beer2` - Is the json structure of beer2
+
+The debugger is suspended (blue) in the Camel route where we are about to set 
variable `alc2` computed as follows:
+
+[source,yaml]
+```yaml
+- setVariable:
+name: alc2
+expression:
+  jq:
+expression: .alcohol | rtrimstr("%")
+source: beer2
+resultType: float
+```
+
+Here you can see the `alc2` variable is set from a `jq` expression that grabs 
the alcohol field, and remove the `%` sign.
+The source (input) is from another variable named `beer2`. You can also 
specify `header:myHeader` to refer to a header, or
+if you remove `source` then the message body is used as input (default).
+The result is converted to a Java `float`,
+
+**NOTE:** 
+If you take a closer look in the screenshot above, then the debugger reveals 
that the `Exchange` has no message headers,
+and that the message body is empty (`null`). The example is exclusively using 
variables to gather and compute data; without
+the need to store and restore data on message header/body during routing. This 
is a cleaner and elegant practice.
+
+## Camel JBang (Camel CLI)
+
+We have continued investing in Camel JBang, and this time we have some great 
new stuff in the release.
+
+The `camel-jbang` now supports new commands as plugins. And the first set of 
commands is [camel-k commands](/manual/camel-jbang-k.html),
+that allows to use `camel-jbang` to manage and operate Camel K integrations.
+
+You can now run `camel-jbang` with `--prompt` that lets users type in 
placeholder values during startup,
+making it easy to build examples and prototypes that can easily be customized 
to users need, when trying.
+
+You can now more easily run `camel-jbang` with custom `log4j2.properties` file 
to use your logging configuration,
+instead of the _built-in_ logging.
+
+Added support for using Jolokia 2.x with `camel-jbang`.
+
+## Kamelets
+
+When using Kamelets then the _route snippets_ due not use any error handler. 
This means that when calling a Kamelet
+then if any error happens these are thrown back, and allows to use your 
current error handling configuration. This
+avoids any confusing, and you can regard calling a Kamelet just as calling 

Re: [PR] camel-jbang - Automatic include http server when using knative as it … [camel]

2024-02-13 Thread via GitHub


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

   Yeah thanks. This is likely easier if we bake in http transport directly in 
camel-knative then the complexity is lower
   https://issues.apache.org/jira/browse/CAMEL-20412


-- 
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-website) branch new440 updated (b20affdb -> 2cb4452b)

2024-02-13 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from b20affdb Camel 4.4 whats new. WIP
 add 2cb4452b Update content/blog/2024/02/camel44-whatsnew/index.md

No new revisions were added by this update.

Summary of changes:
 content/blog/2024/02/camel44-whatsnew/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[PR] Azure Storage Queue Source: Expose Kamelet data type information [camel-kamelets]

2024-02-13 Thread via GitHub


oscerd opened a new pull request, #1886:
URL: https://github.com/apache/camel-kamelets/pull/1886

   Fixes #1672 


-- 
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-kamelets) branch azure-storage-queue-datatype created (now 7c781bee)

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch azure-storage-queue-datatype
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


  at 7c781bee Azure Storage Queue Source: Expose Kamelet data type 
information

This branch includes the following new commits:

 new 89ac9ae5 Azure Storage Queue Source: Expose Kamelet data type 
information
 new 7c781bee Azure Storage Queue Source: Expose Kamelet data type 
information

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.




(camel-kamelets) 02/02: Azure Storage Queue Source: Expose Kamelet data type information

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-storage-queue-datatype
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 7c781bee44cf3db9ed6438b773e75625a4b9bf60
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 14:58:55 2024 +0100

Azure Storage Queue Source: Expose Kamelet data type information

Signed-off-by: Andrea Cosentino 
---
 .../azure-storage-queue-source.kamelet.yaml| 61 ++
 1 file changed, 61 insertions(+)

diff --git 
a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
 
b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
index f0418b72..e04ad20f 100644
--- 
a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
+++ 
b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
@@ -69,6 +69,67 @@ spec:
 type: string
 enum: ["SHARED_ACCOUNT_KEY", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY"]
 default: "SHARED_ACCOUNT_KEY"
+  dataTypes:
+out:
+  default: text
+  headers:
+CamelAzureStorageQueueMessageId:
+  title: Azure Storage Queue Message Id
+  description: The id of the message
+  type: string
+CamelAzureStorageQueueInsertionTime:
+  title: Azure Storage Queue Message Insertion Time
+  description: The time the Message was inserted into the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueExpirationTime:
+  title: Azure Storage Queue Message Expiration Time
+  description: The time that the Message will expire and be 
automatically deleted.
+  type: OffsetDateTime
+CamelAzureStorageQueuePopReceipt:
+  title: Pop Receipt
+  description: |-
+Unique identifier that must match for the message to be deleted or 
updated. If deletion fails using this pop receipt then the message has been 
dequeued by another client.
+  type: string
+CamelAzureStorageQueueTimeNextVisible:
+  title: Azure Storage Queue Message Time Next Visible
+  description: The time that the message will again become visible in 
the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueDequeueCount:
+  title: Dequeue Count
+  description: The number of times the message has been dequeued
+  type: long
+  types:
+binary:
+  format: "text-plain"
+  description: Default text representation of the Message dequeued 
from the queue.
+  mediaType: text/plain
+cloudevents:
+  format: "azure-storage-queue:application-cloudevents"
+  description: |-
+Output data type represents Azure Storage Queue receive messages 
operation as CloudEvent V1. The data type sets Camel
+specific CloudEvent headers on the exchange.
+  headers:
+CamelCloudEventID:
+  title: CloudEvent ID
+  description: The Camel exchange id set as event id
+  type: string
+CamelCloudEventType:
+  title: CloudEvent Type
+  description: The event type
+  default: 
"org.apache.camel.event.azure.storage.queue.receiveMessages"
+  type: string
+CamelCloudEventSource:
+  title: CloudEvent Source
+  description: The event source. By default, the Message Id of the 
message received with prefix "azure.storage.queue.".
+  type: string
+CamelCloudEventSubject:
+  title: CloudEvent Subject
+  description: The event subject. Usually the Pop receipt of the 
message dequeued.
+  type: string
+CamelCloudEventTime:
+  title: CloudEvent Time
+  description: The exchange creation timestamp as event time.
+  type: string
   dependencies:
 - "camel:azure-storage-queue"
 - "camel:kamelet"



(camel-kamelets) 01/02: Azure Storage Queue Source: Expose Kamelet data type information

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-storage-queue-datatype
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git

commit 89ac9ae58bba312e9a97305d47b7040d46d74698
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 14:57:49 2024 +0100

Azure Storage Queue Source: Expose Kamelet data type information

Signed-off-by: Andrea Cosentino 
---
 kamelets/azure-storage-queue-source.kamelet.yaml | 61 
 1 file changed, 61 insertions(+)

diff --git a/kamelets/azure-storage-queue-source.kamelet.yaml 
b/kamelets/azure-storage-queue-source.kamelet.yaml
index f0418b72..e04ad20f 100644
--- a/kamelets/azure-storage-queue-source.kamelet.yaml
+++ b/kamelets/azure-storage-queue-source.kamelet.yaml
@@ -69,6 +69,67 @@ spec:
 type: string
 enum: ["SHARED_ACCOUNT_KEY", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY"]
 default: "SHARED_ACCOUNT_KEY"
+  dataTypes:
+out:
+  default: text
+  headers:
+CamelAzureStorageQueueMessageId:
+  title: Azure Storage Queue Message Id
+  description: The id of the message
+  type: string
+CamelAzureStorageQueueInsertionTime:
+  title: Azure Storage Queue Message Insertion Time
+  description: The time the Message was inserted into the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueExpirationTime:
+  title: Azure Storage Queue Message Expiration Time
+  description: The time that the Message will expire and be 
automatically deleted.
+  type: OffsetDateTime
+CamelAzureStorageQueuePopReceipt:
+  title: Pop Receipt
+  description: |-
+Unique identifier that must match for the message to be deleted or 
updated. If deletion fails using this pop receipt then the message has been 
dequeued by another client.
+  type: string
+CamelAzureStorageQueueTimeNextVisible:
+  title: Azure Storage Queue Message Time Next Visible
+  description: The time that the message will again become visible in 
the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueDequeueCount:
+  title: Dequeue Count
+  description: The number of times the message has been dequeued
+  type: long
+  types:
+binary:
+  format: "text-plain"
+  description: Default text representation of the Message dequeued 
from the queue.
+  mediaType: text/plain
+cloudevents:
+  format: "azure-storage-queue:application-cloudevents"
+  description: |-
+Output data type represents Azure Storage Queue receive messages 
operation as CloudEvent V1. The data type sets Camel
+specific CloudEvent headers on the exchange.
+  headers:
+CamelCloudEventID:
+  title: CloudEvent ID
+  description: The Camel exchange id set as event id
+  type: string
+CamelCloudEventType:
+  title: CloudEvent Type
+  description: The event type
+  default: 
"org.apache.camel.event.azure.storage.queue.receiveMessages"
+  type: string
+CamelCloudEventSource:
+  title: CloudEvent Source
+  description: The event source. By default, the Message Id of the 
message received with prefix "azure.storage.queue.".
+  type: string
+CamelCloudEventSubject:
+  title: CloudEvent Subject
+  description: The event subject. Usually the Pop receipt of the 
message dequeued.
+  type: string
+CamelCloudEventTime:
+  title: CloudEvent Time
+  description: The exchange creation timestamp as event time.
+  type: string
   dependencies:
 - "camel:azure-storage-queue"
 - "camel:kamelet"



(camel-kamelets-examples) 01/01: Add missing wrod in readme

2024-02-13 Thread apupier
This is an automated email from the ASF dual-hosted git repository.

apupier pushed a commit to branch apupier-patch-1
in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git

commit f47a07a51a13c52aa3ff5d9cabe934b3f5aabda0
Author: Aurélien Pupier 
AuthorDate: Tue Feb 13 15:04:09 2024 +0100

Add missing wrod in readme
---
 jbang/variables-eip/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jbang/variables-eip/README.adoc b/jbang/variables-eip/README.adoc
index 033833c..6699211 100644
--- a/jbang/variables-eip/README.adoc
+++ b/jbang/variables-eip/README.adoc
@@ -1,6 +1,6 @@
 == Variables with EIPs
 
-This example shows how you can variables with EIPs with Camel routes.
+This example shows how you can use variables with EIPs with Camel routes.
 
 === Install JBang
 



(camel-kamelets-examples) branch apupier-patch-1 created (now f47a07a)

2024-02-13 Thread apupier
This is an automated email from the ASF dual-hosted git repository.

apupier pushed a change to branch apupier-patch-1
in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git


  at f47a07a  Add missing wrod in readme

This branch includes the following new commits:

 new f47a07a  Add missing wrod in readme

The 1 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.




[PR] Add missing word in readme [camel-kamelets-examples]

2024-02-13 Thread via GitHub


apupier opened a new pull request, #57:
URL: https://github.com/apache/camel-kamelets-examples/pull/57

   (no comment)


-- 
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] Azure Storage Queue Source: Expose Kamelet data type information [camel-kamelets]

2024-02-13 Thread via GitHub


oscerd closed issue #1672: Azure Storage Queue Source: Expose Kamelet data type 
information
URL: https://github.com/apache/camel-kamelets/issues/1672


-- 
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-kamelets) 02/02: Azure Storage Queue Source: Expose Kamelet data type information

2024-02-13 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-kamelets.git

commit af157d82642dfb75c014aa8d6864c590c3ca77ee
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 14:58:55 2024 +0100

Azure Storage Queue Source: Expose Kamelet data type information

Signed-off-by: Andrea Cosentino 
---
 .../azure-storage-queue-source.kamelet.yaml| 61 ++
 1 file changed, 61 insertions(+)

diff --git 
a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
 
b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
index f0418b72..e04ad20f 100644
--- 
a/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
+++ 
b/library/camel-kamelets/src/main/resources/kamelets/azure-storage-queue-source.kamelet.yaml
@@ -69,6 +69,67 @@ spec:
 type: string
 enum: ["SHARED_ACCOUNT_KEY", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY"]
 default: "SHARED_ACCOUNT_KEY"
+  dataTypes:
+out:
+  default: text
+  headers:
+CamelAzureStorageQueueMessageId:
+  title: Azure Storage Queue Message Id
+  description: The id of the message
+  type: string
+CamelAzureStorageQueueInsertionTime:
+  title: Azure Storage Queue Message Insertion Time
+  description: The time the Message was inserted into the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueExpirationTime:
+  title: Azure Storage Queue Message Expiration Time
+  description: The time that the Message will expire and be 
automatically deleted.
+  type: OffsetDateTime
+CamelAzureStorageQueuePopReceipt:
+  title: Pop Receipt
+  description: |-
+Unique identifier that must match for the message to be deleted or 
updated. If deletion fails using this pop receipt then the message has been 
dequeued by another client.
+  type: string
+CamelAzureStorageQueueTimeNextVisible:
+  title: Azure Storage Queue Message Time Next Visible
+  description: The time that the message will again become visible in 
the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueDequeueCount:
+  title: Dequeue Count
+  description: The number of times the message has been dequeued
+  type: long
+  types:
+binary:
+  format: "text-plain"
+  description: Default text representation of the Message dequeued 
from the queue.
+  mediaType: text/plain
+cloudevents:
+  format: "azure-storage-queue:application-cloudevents"
+  description: |-
+Output data type represents Azure Storage Queue receive messages 
operation as CloudEvent V1. The data type sets Camel
+specific CloudEvent headers on the exchange.
+  headers:
+CamelCloudEventID:
+  title: CloudEvent ID
+  description: The Camel exchange id set as event id
+  type: string
+CamelCloudEventType:
+  title: CloudEvent Type
+  description: The event type
+  default: 
"org.apache.camel.event.azure.storage.queue.receiveMessages"
+  type: string
+CamelCloudEventSource:
+  title: CloudEvent Source
+  description: The event source. By default, the Message Id of the 
message received with prefix "azure.storage.queue.".
+  type: string
+CamelCloudEventSubject:
+  title: CloudEvent Subject
+  description: The event subject. Usually the Pop receipt of the 
message dequeued.
+  type: string
+CamelCloudEventTime:
+  title: CloudEvent Time
+  description: The exchange creation timestamp as event time.
+  type: string
   dependencies:
 - "camel:azure-storage-queue"
 - "camel:kamelet"



(camel-kamelets) branch main updated (cedda56a -> af157d82)

2024-02-13 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-kamelets.git


from cedda56a Regen for commit 75474dc5eb12a78c46676c6017d5d488c8ab9e78
 new 62429738 Azure Storage Queue Source: Expose Kamelet data type 
information
 new af157d82 Azure Storage Queue Source: Expose Kamelet data type 
information

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:
 kamelets/azure-storage-queue-source.kamelet.yaml   | 61 ++
 .../azure-storage-queue-source.kamelet.yaml| 61 ++
 2 files changed, 122 insertions(+)



Re: [PR] Azure Storage Queue Source: Expose Kamelet data type information [camel-kamelets]

2024-02-13 Thread via GitHub


oscerd merged PR #1886:
URL: https://github.com/apache/camel-kamelets/pull/1886


-- 
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-kamelets) branch azure-storage-queue-datatype deleted (was 7c781bee)

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch azure-storage-queue-datatype
in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git


 was 7c781bee Azure Storage Queue Source: Expose Kamelet data type 
information

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-kamelets) 01/02: Azure Storage Queue Source: Expose Kamelet data type information

2024-02-13 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-kamelets.git

commit 62429738cefe17882bda639abe0d9ae2c2cf78eb
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 14:57:49 2024 +0100

Azure Storage Queue Source: Expose Kamelet data type information

Signed-off-by: Andrea Cosentino 
---
 kamelets/azure-storage-queue-source.kamelet.yaml | 61 
 1 file changed, 61 insertions(+)

diff --git a/kamelets/azure-storage-queue-source.kamelet.yaml 
b/kamelets/azure-storage-queue-source.kamelet.yaml
index f0418b72..e04ad20f 100644
--- a/kamelets/azure-storage-queue-source.kamelet.yaml
+++ b/kamelets/azure-storage-queue-source.kamelet.yaml
@@ -69,6 +69,67 @@ spec:
 type: string
 enum: ["SHARED_ACCOUNT_KEY", "SHARED_KEY_CREDENTIAL", "AZURE_IDENTITY"]
 default: "SHARED_ACCOUNT_KEY"
+  dataTypes:
+out:
+  default: text
+  headers:
+CamelAzureStorageQueueMessageId:
+  title: Azure Storage Queue Message Id
+  description: The id of the message
+  type: string
+CamelAzureStorageQueueInsertionTime:
+  title: Azure Storage Queue Message Insertion Time
+  description: The time the Message was inserted into the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueExpirationTime:
+  title: Azure Storage Queue Message Expiration Time
+  description: The time that the Message will expire and be 
automatically deleted.
+  type: OffsetDateTime
+CamelAzureStorageQueuePopReceipt:
+  title: Pop Receipt
+  description: |-
+Unique identifier that must match for the message to be deleted or 
updated. If deletion fails using this pop receipt then the message has been 
dequeued by another client.
+  type: string
+CamelAzureStorageQueueTimeNextVisible:
+  title: Azure Storage Queue Message Time Next Visible
+  description: The time that the message will again become visible in 
the Queue.
+  type: OffsetDateTime
+CamelAzureStorageQueueDequeueCount:
+  title: Dequeue Count
+  description: The number of times the message has been dequeued
+  type: long
+  types:
+binary:
+  format: "text-plain"
+  description: Default text representation of the Message dequeued 
from the queue.
+  mediaType: text/plain
+cloudevents:
+  format: "azure-storage-queue:application-cloudevents"
+  description: |-
+Output data type represents Azure Storage Queue receive messages 
operation as CloudEvent V1. The data type sets Camel
+specific CloudEvent headers on the exchange.
+  headers:
+CamelCloudEventID:
+  title: CloudEvent ID
+  description: The Camel exchange id set as event id
+  type: string
+CamelCloudEventType:
+  title: CloudEvent Type
+  description: The event type
+  default: 
"org.apache.camel.event.azure.storage.queue.receiveMessages"
+  type: string
+CamelCloudEventSource:
+  title: CloudEvent Source
+  description: The event source. By default, the Message Id of the 
message received with prefix "azure.storage.queue.".
+  type: string
+CamelCloudEventSubject:
+  title: CloudEvent Subject
+  description: The event subject. Usually the Pop receipt of the 
message dequeued.
+  type: string
+CamelCloudEventTime:
+  title: CloudEvent Time
+  description: The exchange creation timestamp as event time.
+  type: string
   dependencies:
 - "camel:azure-storage-queue"
 - "camel:kamelet"



(camel-kamelets) branch regen_bot updated (cedda56a -> af157d82)

2024-02-13 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-kamelets.git


from cedda56a Regen for commit 75474dc5eb12a78c46676c6017d5d488c8ab9e78
 add 62429738 Azure Storage Queue Source: Expose Kamelet data type 
information
 add af157d82 Azure Storage Queue Source: Expose Kamelet data type 
information

No new revisions were added by this update.

Summary of changes:
 kamelets/azure-storage-queue-source.kamelet.yaml   | 61 ++
 .../azure-storage-queue-source.kamelet.yaml| 61 ++
 2 files changed, 122 insertions(+)



Re: [PR] Whats new in Camel 4.4 WIP [camel-website]

2024-02-13 Thread via GitHub


apupier commented on code in PR #1139:
URL: https://github.com/apache/camel-website/pull/1139#discussion_r1487904665


##
content/blog/2024/02/camel44-whatsnew/index.md:
##
@@ -0,0 +1,169 @@
+---
+title: "Apache Camel 4.4 What's New"
+date: 2024-02-19
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.4 release.
+---
+
+Apache Camel 4.4 (LTS) has just been [released](/blog/2024/02/RELEASE-4.4.0/).
+
+This release introduces a set of new features and noticeable improvements that 
we will cover in this blog post.
+
+## Camel Core
+
+The simple language has been improved with `hash` function, and further 
improved the embedded functions for `jsonpath`, `jq` and `xpath`
+making it easier to grab data from JSon or XML within your simple expression 
or predicates.
+
+We have optimized data formats to avoid converting payload to `byte[]` when 
unmarshalling, but allowing each data format
+to unmarshal the payload _as-is_. 
+
+Added JMX operation to update routes at runtime via XML format (requires 
turning on this feature). This can be

Review Comment:
   Do we have documentation for this feature so we can link to it and user can 
discover how to turn on the feature?



##
content/blog/2024/02/camel44-whatsnew/index.md:
##
@@ -0,0 +1,169 @@
+---
+title: "Apache Camel 4.4 What's New"
+date: 2024-02-19
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.4 release.
+---
+
+Apache Camel 4.4 (LTS) has just been [released](/blog/2024/02/RELEASE-4.4.0/).
+
+This release introduces a set of new features and noticeable improvements that 
we will cover in this blog post.
+
+## Camel Core
+
+The simple language has been improved with `hash` function, and further 
improved the embedded functions for `jsonpath`, `jq` and `xpath`
+making it easier to grab data from JSon or XML within your simple expression 
or predicates.
+
+We have optimized data formats to avoid converting payload to `byte[]` when 
unmarshalling, but allowing each data format
+to unmarshal the payload _as-is_. 
+
+Added JMX operation to update routes at runtime via XML format (requires 
turning on this feature). This can be
+useful for tooling where you can then change routes during troubleshooting an 
existing running Camel integration.
+
+## DSL
+
+TODO: Throttler EIP
+
+### Variables
+
+The biggest new feature in Camel 4.4 is the introduction of 
[variables](/manual/variables.adoc).
+
+A variable is a key/value that can hold a value that can either be private per 
`Exchange`, or shared per route, or globally.

Review Comment:
   ```suggestion
   A variable is a key/value that can hold a value that can either be private 
per `Exchange`, or shared per route, or global.
   ```
   
   Shouldn't we say global here?



##
content/blog/2024/02/camel44-whatsnew/index.md:
##
@@ -0,0 +1,169 @@
+---
+title: "Apache Camel 4.4 What's New"
+date: 2024-02-19
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.4 release.
+---
+
+Apache Camel 4.4 (LTS) has just been [released](/blog/2024/02/RELEASE-4.4.0/).
+
+This release introduces a set of new features and noticeable improvements that 
we will cover in this blog post.
+
+## Camel Core
+
+The simple language has been improved with `hash` function, and further 
improved the embedded functions for `jsonpath`, `jq` and `xpath`
+making it easier to grab data from JSon or XML within your simple expression 
or predicates.
+
+We have optimized data formats to avoid converting payload to `byte[]` when 
unmarshalling, but allowing each data format
+to unmarshal the payload _as-is_. 
+
+Added JMX operation to update routes at runtime via XML format (requires 
turning on this feature). This can be
+useful for tooling where you can then change routes during troubleshooting an 
existing running Camel integration.
+
+## DSL
+
+TODO: Throttler EIP
+
+### Variables
+
+The biggest new feature in Camel 4.4 is the introduction of 
[variables](/manual/variables.adoc).
+
+A variable is a key/value that can hold a value that can either be private per 
`Exchange`, or shared per route, or globally.
+
+With variables, you can now more easily share data between routes and/or 
globally. Variables is also readily accessible
+from EIPs and languages, just as message _headers_ or _exchange properties_ 
are. In other words, they have been added
+as first-class into Camel.
+
+You can find a small example here:
+
+- https://github.com/apache/camel-kamelets-examples/tree/main/jbang/variables
+
+We have also made a selected number of EIPs have _special use_ of variables. 
The idea is to make it easier to
+collect various set of data from external systems using Camel components and 
commonly used EIPs, without any
+ceremony to prepare message body and headers, and cleanup afterward (i.e. 
removing HTTP headers).
+
+And you can find a small example here using

[PR] Updated the git actions to push a multi-arch image [camel-karavan]

2024-02-13 Thread via GitHub


arheom opened a new pull request, #1121:
URL: https://github.com/apache/camel-karavan/pull/1121

   updated the camel karavan and devmode images to support amd64 and arm64, 
with both architecture manifests uploaded to the image repo.


-- 
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] feat(runtime): get rid off camel k runtime dependency - WIP [camel-k]

2024-02-13 Thread via GitHub


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

   :heavy_check_mark: Unit test coverage report - coverage increased from 35.8% 
to 37.8% (**+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 azure-storage-queue-fix-for-ce created (now 5e7fa9e7cd9)

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch azure-storage-queue-fix-for-ce
in repository https://gitbox.apache.org/repos/asf/camel.git


  at 5e7fa9e7cd9 Azure Storage Queue Cloud Event Data Type Transformer: Fix 
the prefix of event source

This branch includes the following new commits:

 new 5e7fa9e7cd9 Azure Storage Queue Cloud Event Data Type Transformer: Fix 
the prefix of event source

The 1 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.




(camel) 01/01: Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix of event source

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch azure-storage-queue-fix-for-ce
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 5e7fa9e7cd90473895babc17e70e7e2a8f66a521
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 15:43:55 2024 +0100

Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix of 
event source

Signed-off-by: Andrea Cosentino 
---
 .../queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
 
b/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
index 2b4fd1174f7..e5ea8fd5ae0 100644
--- 
a/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
+++ 
b/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
@@ -45,7 +45,7 @@ public class AzureStorageQueueCloudEventDataTypeTransformer 
extends Transformer
 
 if (message.getHeaders().containsKey(QueueConstants.MESSAGE_ID)) {
 headers.put(CloudEvents.CAMEL_CLOUD_EVENT_SOURCE,
-"azure.storage.blob." + 
message.getHeader(QueueConstants.MESSAGE_ID, String.class));
+"azure.storage.queue." + 
message.getHeader(QueueConstants.MESSAGE_ID, String.class));
 }
 
 if (message.getHeaders().containsKey(QueueConstants.POP_RECEIPT)) {



[PR] Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix… [camel]

2024-02-13 Thread via GitHub


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

   … of event source
   
   # Description
   
   
   
   # 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
   - [ ] 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 have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


-- 
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] Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix… [camel]

2024-02-13 Thread via GitHub


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

   :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



Re: [PR] Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix… [camel]

2024-02-13 Thread via GitHub


oscerd merged PR #13107:
URL: https://github.com/apache/camel/pull/13107


-- 
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: Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix of event source (#13107)

2024-02-13 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 26b243c2d09 Azure Storage Queue Cloud Event Data Type Transformer: Fix 
the prefix of event source (#13107)
26b243c2d09 is described below

commit 26b243c2d097272d192e66d4fb663867ae9f3ee0
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 15:58:29 2024 +0100

Azure Storage Queue Cloud Event Data Type Transformer: Fix the prefix of 
event source (#13107)

Signed-off-by: Andrea Cosentino 
---
 .../queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
 
b/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
index 2b4fd1174f7..e5ea8fd5ae0 100644
--- 
a/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
+++ 
b/components/camel-azure/camel-azure-storage-queue/src/main/java/org/apache/camel/component/azure/storage/queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java
@@ -45,7 +45,7 @@ public class AzureStorageQueueCloudEventDataTypeTransformer 
extends Transformer
 
 if (message.getHeaders().containsKey(QueueConstants.MESSAGE_ID)) {
 headers.put(CloudEvents.CAMEL_CLOUD_EVENT_SOURCE,
-"azure.storage.blob." + 
message.getHeader(QueueConstants.MESSAGE_ID, String.class));
+"azure.storage.queue." + 
message.getHeader(QueueConstants.MESSAGE_ID, String.class));
 }
 
 if (message.getHeaders().containsKey(QueueConstants.POP_RECEIPT)) {



(camel) branch azure-storage-queue-fix-for-ce deleted (was 5e7fa9e7cd9)

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a change to branch azure-storage-queue-fix-for-ce
in repository https://gitbox.apache.org/repos/asf/camel.git


 was 5e7fa9e7cd9 Azure Storage Queue Cloud Event Data Type Transformer: Fix 
the prefix of event source

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-website) 01/14: chore: update http-cache-semantics to 4.1.1

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit f523f3bfa6c768bd7ec511baa641ba151698af72
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:16:26 2024 +0100

chore: update http-cache-semantics to 4.1.1
---
 antora-ui-camel/.pnp.cjs|   9 +
 ...-cache-semantics-npm-3.8.1-9d037f563e-88821cd308.zip | Bin 10870 -> 0 bytes
 antora-ui-camel/package.json|   3 +++
 antora-ui-camel/yarn.lock   |   9 +
 4 files changed, 5 insertions(+), 16 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 1a11b464..9e95a5f1 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -2150,7 +2150,7 @@ const RAW_RUNTIME_STATE =
   ["cacheable-request", "npm:2.1.4"],\
   ["clone-response", "npm:1.0.2"],\
   ["get-stream", "npm:3.0.0"],\
-  ["http-cache-semantics", "npm:3.8.1"],\
+  ["http-cache-semantics", "npm:4.1.1"],\
   ["keyv", "npm:3.0.0"],\
   ["lowercase-keys", "npm:1.0.0"],\
   ["normalize-url", "npm:2.0.1"],\
@@ -6224,13 +6224,6 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["http-cache-semantics", [\
-  ["npm:3.8.1", {\
-"packageLocation": 
"./.yarn/cache/http-cache-semantics-npm-3.8.1-9d037f563e-88821cd308.zip/node_modules/http-cache-semantics/",\
-"packageDependencies": [\
-  ["http-cache-semantics", "npm:3.8.1"]\
-],\
-"linkType": "HARD"\
-  }],\
   ["npm:4.1.1", {\
 "packageLocation": 
"./.yarn/cache/http-cache-semantics-npm-4.1.1-1120131375-362d5ed66b.zip/node_modules/http-cache-semantics/",\
 "packageDependencies": [\
diff --git 
a/antora-ui-camel/.yarn/cache/http-cache-semantics-npm-3.8.1-9d037f563e-88821cd308.zip
 
b/antora-ui-camel/.yarn/cache/http-cache-semantics-npm-3.8.1-9d037f563e-88821cd308.zip
deleted file mode 100644
index 4c220a71..
Binary files 
a/antora-ui-camel/.yarn/cache/http-cache-semantics-npm-3.8.1-9d037f563e-88821cd308.zip
 and /dev/null differ
diff --git a/antora-ui-camel/package.json b/antora-ui-camel/package.json
index 91af15ea..32d4fea2 100644
--- a/antora-ui-camel/package.json
+++ b/antora-ui-camel/package.json
@@ -78,5 +78,8 @@
 "highlight.js@9.18.1": {
   "unplugged": true
 }
+  },
+  "resolutions": {
+"http-cache-semantics": "4.1.1"
   }
 }
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 4d865da3..4f90dc67 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -5406,14 +5406,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"http-cache-semantics@npm:3.8.1":
-  version: 3.8.1
-  resolution: "http-cache-semantics@npm:3.8.1"
-  checksum: 
88821cd3082a0aaced65d2aa8d1670672aaf27b0b4e6dbf6acca9ac11f6b58dd0f9628934baa9ea98191a60d6e9f60605b83c4859774ae066de0116c63be404c
-  languageName: node
-  linkType: hard
-
-"http-cache-semantics@npm:^4.1.1":
+"http-cache-semantics@npm:4.1.1":
   version: 4.1.1
   resolution: "http-cache-semantics@npm:4.1.1"
   checksum: 
362d5ed66b12ceb9c0a328fb31200b590ab1b02f4a254a697dc796850cc4385603e75f53ec59f768b2dad3bfa1464bd229f7de278d2899a0e3beffc634b6683f



(camel-website) branch main updated (0dcaf9ae -> 6d8bc1a5)

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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


from 0dcaf9ae Move XSD in correct folder
 new f523f3bf chore: update http-cache-semantics to 4.1.1
 new b684b1c7 chore: update qs to 6.11.2
 new 87f17132 chore: upgrade yarn to 4.1.0
 new a27a01bd chore: remove old version of nth-check
 new 21eb7a8b chore: upgrade semver-regex to 4.0.5
 new 24e200ad chore: upgrade glob-parent to 5.1.2
 new 797f2bc9 chore: update copy-props to 2.0.5
 new f0602964 chore: update y18n to 3.2.2
 new d2b45aba chore: update dot-prop to 4.2.1
 new dce23c79 chore: update websocket-extensions to 0.1.4
 new a8b303ed chore: update acorn to 8.11.3
 new 615eaa9d chore: update acorn-node to 1.8.2
 new 8541fa7d chore: update cached-path-relative to 1.1.0
 new 6d8bc1a5 chore: update lockfiles and remove duplicate deps

The 14 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:
 .pnp.cjs   |   62 +-
 .pnp.loader.mjs|   44 +-
 ...th-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip |  Bin 3749 -> 0 bytes
 ...th-relative-npm-1.1.0-7662af2352-2f1d63c230.zip |  Bin 0 -> 3747 bytes
 .yarn/releases/{yarn-4.0.2.cjs => yarn-4.1.0.cjs}  |  672 ++--
 .yarnrc.yml|2 +-
 antora-ui-camel/.pnp.cjs   |  395 +-
 antora-ui-camel/.pnp.loader.mjs|   44 +-
 ...amic-import-npm-4.0.0-c0c0c080f3-8a1efc546f.zip |  Bin 6209 -> 0 bytes
 .../acorn-node-npm-1.7.0-eb8fbb7af0-f3ae8d4da1.zip |  Bin 18061 -> 0 bytes
 .../acorn-node-npm-1.8.2-b30b72c499-a4d5e44a9a.zip |  Bin
 .../acorn-npm-3.3.0-3b87605fb5-ae9a421f7f.zip  |  Bin 153038 -> 0 bytes
 .../acorn-npm-5.7.3-003c55c3ed-f2904822f9.zip  |  Bin 135268 -> 0 bytes
 .../acorn-npm-6.1.1-62eeae5e4d-d33a2cb8dd.zip  |  Bin 247741 -> 0 bytes
 .../acorn-npm-7.2.0-b4d63d132a-367d98734c.zip  |  Bin 250099 -> 0 bytes
 .../acorn-npm-8.11.3-0d7ab48b38-b688e7e3c6.zip |  Bin
 .../acorn-npm-8.8.0-9ef399ab45-ed7ee7ae42.zip  |  Bin 120020 -> 0 bytes
 .../acorn-walk-npm-6.1.1-19617886f4-afae57b864.zip |  Bin 21780 -> 0 bytes
 .../acorn-walk-npm-7.2.0-5f8b515308-4d3e186f72.zip |  Bin
 .../call-bind-npm-1.0.7-762763ef96-cd6fe658e0.zip  |  Bin 0 -> 10060 bytes
 .../copy-props-npm-2.0.4-128dd26186-8187deba82.zip |  Bin 5437 -> 0 bytes
 .../copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip |  Bin 0 -> 5528 bytes
 ...ta-property-npm-1.1.3-0b0317da79-99c97937af.zip |  Bin 0 -> 11673 bytes
 .../dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip   |  Bin 3182 -> 0 bytes
 .../dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip   |  Bin 0 -> 3361 bytes
 ...ne-property-npm-1.0.0-e23aa9b242-f66ece0a88.zip |  Bin 0 -> 7525 bytes
 .../es-errors-npm-1.3.0-fda0c9b8a8-96e65d6401.zip  |  Bin 0 -> 9301 bytes
 ...t-intrinsic-npm-1.2.4-1dad3427b2-85bbf4b234.zip |  Bin 0 -> 14541 bytes
 ...glob-parent-npm-3.1.0-31416ad085-653d559237.zip |  Bin 3584 -> 0 bytes
 .../cache/gopd-npm-1.0.1-10c1d0b534-5fbc7ad57b.zip |  Bin 0 -> 5330 bytes
 ...descriptors-npm-1.0.2-d7077d09f1-2d8c9ab8ce.zip |  Bin 0 -> 6746 bytes
 .../has-proto-npm-1.0.1-631ea9d820-eab2ab0ed1.zip  |  Bin 0 -> 5117 bytes
 ...has-symbols-npm-1.0.1-b783bc25ec-d7a6d0b8f2.zip |  Bin 9477 -> 0 bytes
 ...has-symbols-npm-1.0.3-1986bff2c4-464f97a820.zip |  Bin 0 -> 10526 bytes
 ...e-semantics-npm-3.8.1-9d037f563e-88821cd308.zip |  Bin 10870 -> 0 bytes
 .../nth-check-npm-1.0.2-3f6d0d22eb-59e115fdd7.zip  |  Bin 3883 -> 0 bytes
 ...ct-inspect-npm-1.13.1-fd038a2f0a-92f4989ed8.zip |  Bin 0 -> 35887 bytes
 ...ect-inspect-npm-1.7.0-52604d77d2-5fef751f95.zip |  Bin 15758 -> 0 bytes
 ...ath-dirname-npm-1.0.2-d158cba006-0d2f6604ae.zip |  Bin 3159 -> 0 bytes
 .../cache/qs-npm-6.11.2-b118bc1c6f-f2321d0796.zip  |  Bin
 .../cache/qs-npm-6.7.0-15161a344c-d8f4b216c6.zip   |  Bin 38406 -> 0 bytes
 ...emver-regex-npm-2.0.0-218c804009-da7d6f5cea.zip |  Bin 2395 -> 0 bytes
 ...emver-regex-npm-4.0.5-9917344f87-b9e5c0573c.zip |  Bin 0 -> 3175 bytes
 ...tion-length-npm-1.2.1-5131ef7312-9ab1d20014.zip |  Bin 0 -> 10264 bytes
 ...ide-channel-npm-1.0.5-ac07c0c62d-27708b70b5.zip |  Bin 0 -> 8645 bytes
 ...-extensions-npm-0.1.3-80445f180b-9423ba5227.zip |  Bin 19950 -> 0 bytes
 ...-extensions-npm-0.1.4-be839a9e56-b5399b487d.zip |  Bin
 .../cache/y18n-npm-3.2.1-af8160320f-645ec00f3f.zip |  Bin 4143 -> 0 bytes
 .../cache/y18n-npm-3.2.2-f9b6b42101-42ee58e321.zip |  Bin 0 -> 4458 bytes
 antora-ui-camel/package.json   |7 +
 antora-ui-camel/yarn.lock  | 2734 ++---
 package.json   |2 +-
 yarn.lock  

(camel-website) 09/14: chore: update dot-prop to 4.2.1

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit d2b45aba4080032fd2c8905112e334c9860fb434
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:32:58 2024 +0100

chore: update dot-prop to 4.2.1
---
 antora-ui-camel/.pnp.cjs |   8 
 .../cache/dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip   | Bin 3182 -> 0 bytes
 .../cache/dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip   | Bin 0 -> 3361 bytes
 antora-ui-camel/yarn.lock|   6 +++---
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 81fde7e7..fe73edf9 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -3734,10 +3734,10 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["dot-prop", [\
-  ["npm:4.2.0", {\
-"packageLocation": 
"./.yarn/cache/dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip/node_modules/dot-prop/",\
+  ["npm:4.2.1", {\
+"packageLocation": 
"./.yarn/cache/dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip/node_modules/dot-prop/",\
 "packageDependencies": [\
-  ["dot-prop", "npm:4.2.0"],\
+  ["dot-prop", "npm:4.2.1"],\
   ["is-obj", "npm:1.0.1"]\
 ],\
 "linkType": "HARD"\
@@ -9968,7 +9968,7 @@ const RAW_RUNTIME_STATE =
 "packageLocation": 
"./.yarn/cache/postcss-selector-parser-npm-3.1.1-a628cfbf19-a27d661204.zip/node_modules/postcss-selector-parser/",\
 "packageDependencies": [\
   ["postcss-selector-parser", "npm:3.1.1"],\
-  ["dot-prop", "npm:4.2.0"],\
+  ["dot-prop", "npm:4.2.1"],\
   ["indexes-of", "npm:1.0.1"],\
   ["uniq", "npm:1.0.1"]\
 ],\
diff --git 
a/antora-ui-camel/.yarn/cache/dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip 
b/antora-ui-camel/.yarn/cache/dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip
deleted file mode 100644
index e24cf2b3..
Binary files 
a/antora-ui-camel/.yarn/cache/dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip and 
/dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip 
b/antora-ui-camel/.yarn/cache/dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip
new file mode 100644
index ..3e1a2175
Binary files /dev/null and 
b/antora-ui-camel/.yarn/cache/dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip 
differ
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 2f55c7e3..ec558384 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -3181,11 +3181,11 @@ __metadata:
   linkType: hard
 
 "dot-prop@npm:^4.1.1":
-  version: 4.2.0
-  resolution: "dot-prop@npm:4.2.0"
+  version: 4.2.1
+  resolution: "dot-prop@npm:4.2.1"
   dependencies:
 is-obj: "npm:^1.0.0"
-  checksum: 
10/e98b892290fb497be837bbb72d6ef15b238d961bc889a0bd9854641b2ed000e2b1ccafbf7cd454b95aa199e74c3b9578ad6ffe01e3ea13a0a9933a3945e24368
+  checksum: 
10/25372bc0a4c3921d8056b8f14f44758154cfbd80e85f5fc35fef278b88c320921213d5d8ba64cff8cfc58a57f3e2f10e10e59a48d0bf146a23cf2a7ebe0292f1
   languageName: node
   linkType: hard
 



(camel-website) 10/14: chore: update websocket-extensions to 0.1.4

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit dce23c792f1ba3332133e61b62bdc0c15696b6d0
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:33:52 2024 +0100

chore: update websocket-extensions to 0.1.4
---
 antora-ui-camel/.pnp.cjs|   8 
 ...ocket-extensions-npm-0.1.3-80445f180b-9423ba5227.zip | Bin 19950 -> 0 bytes
 ...ocket-extensions-npm-0.1.4-be839a9e56-b5399b487d.zip | Bin 0 -> 19781 bytes
 antora-ui-camel/yarn.lock   |   6 +++---
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index fe73edf9..de4f487b 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -13208,16 +13208,16 @@ const RAW_RUNTIME_STATE =
 "packageDependencies": [\
   ["websocket-driver", "npm:0.7.0"],\
   ["http-parser-js", "npm:0.5.0"],\
-  ["websocket-extensions", "npm:0.1.3"]\
+  ["websocket-extensions", "npm:0.1.4"]\
 ],\
 "linkType": "HARD"\
   }]\
 ]],\
 ["websocket-extensions", [\
-  ["npm:0.1.3", {\
-"packageLocation": 
"./.yarn/cache/websocket-extensions-npm-0.1.3-80445f180b-9423ba5227.zip/node_modules/websocket-extensions/",\
+  ["npm:0.1.4", {\
+"packageLocation": 
"./.yarn/cache/websocket-extensions-npm-0.1.4-be839a9e56-b5399b487d.zip/node_modules/websocket-extensions/",\
 "packageDependencies": [\
-  ["websocket-extensions", "npm:0.1.3"]\
+  ["websocket-extensions", "npm:0.1.4"]\
 ],\
 "linkType": "HARD"\
   }]\
diff --git 
a/antora-ui-camel/.yarn/cache/websocket-extensions-npm-0.1.3-80445f180b-9423ba5227.zip
 
b/antora-ui-camel/.yarn/cache/websocket-extensions-npm-0.1.3-80445f180b-9423ba5227.zip
deleted file mode 100644
index 2f5adef9..
Binary files 
a/antora-ui-camel/.yarn/cache/websocket-extensions-npm-0.1.3-80445f180b-9423ba5227.zip
 and /dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/websocket-extensions-npm-0.1.4-be839a9e56-b5399b487d.zip
 
b/antora-ui-camel/.yarn/cache/websocket-extensions-npm-0.1.4-be839a9e56-b5399b487d.zip
new file mode 100644
index ..70dbed50
Binary files /dev/null and 
b/antora-ui-camel/.yarn/cache/websocket-extensions-npm-0.1.4-be839a9e56-b5399b487d.zip
 differ
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index ec558384..f2689e46 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -11732,9 +11732,9 @@ __metadata:
   linkType: hard
 
 "websocket-extensions@npm:>=0.1.1":
-  version: 0.1.3
-  resolution: "websocket-extensions@npm:0.1.3"
-  checksum: 
10/9423ba52274a2991c4d10f4a70f7d70f98ecaf7a843596e336cd10d2d681165507bd9b9c90670cd860109db4c081fee0a40c7cc51d1f320466ddaf8ff33894d3
+  version: 0.1.4
+  resolution: "websocket-extensions@npm:0.1.4"
+  checksum: 
10/b5399b487d277c78cdd2aef63764b67764aa9899431e3a2fa272c6ad7236a0fb4549b411d89afa76d5afd664c39d62fc19118582dc937e5bb17deb694f42a0d1
   languageName: node
   linkType: hard
 



(camel-website) 07/14: chore: update copy-props to 2.0.5

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 797f2bc9ae1af724acb86761a231435ba8009b6c
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:32:04 2024 +0100

chore: update copy-props to 2.0.5
---
 antora-ui-camel/.pnp.cjs |  10 +-
 .../cache/copy-props-npm-2.0.4-128dd26186-8187deba82.zip | Bin 5437 -> 0 bytes
 .../cache/copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip | Bin 0 -> 5528 bytes
 antora-ui-camel/yarn.lock|  12 ++--
 4 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index eb33dcba..ac858efc 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -2794,12 +2794,12 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["copy-props", [\
-  ["npm:2.0.4", {\
-"packageLocation": 
"./.yarn/cache/copy-props-npm-2.0.4-128dd26186-8187deba82.zip/node_modules/copy-props/",\
+  ["npm:2.0.5", {\
+"packageLocation": 
"./.yarn/cache/copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip/node_modules/copy-props/",\
 "packageDependencies": [\
-  ["copy-props", "npm:2.0.4"],\
+  ["copy-props", "npm:2.0.5"],\
   ["each-props", "npm:1.3.2"],\
-  ["is-plain-object", "npm:2.0.4"]\
+  ["is-plain-object", "npm:5.0.0"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -5821,7 +5821,7 @@ const RAW_RUNTIME_STATE =
   ["array-sort", "npm:1.0.0"],\
   ["color-support", "npm:1.1.3"],\
   ["concat-stream", "npm:1.6.2"],\
-  ["copy-props", "npm:2.0.4"],\
+  ["copy-props", "npm:2.0.5"],\
   ["fancy-log", "npm:1.3.3"],\
   ["gulplog", "npm:1.0.0"],\
   ["interpret", "npm:1.2.0"],\
diff --git 
a/antora-ui-camel/.yarn/cache/copy-props-npm-2.0.4-128dd26186-8187deba82.zip 
b/antora-ui-camel/.yarn/cache/copy-props-npm-2.0.4-128dd26186-8187deba82.zip
deleted file mode 100644
index 564889f3..
Binary files 
a/antora-ui-camel/.yarn/cache/copy-props-npm-2.0.4-128dd26186-8187deba82.zip 
and /dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip 
b/antora-ui-camel/.yarn/cache/copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip
new file mode 100644
index ..aea2ff0a
Binary files /dev/null and 
b/antora-ui-camel/.yarn/cache/copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip 
differ
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 2f3c6259..6386c209 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -2353,12 +2353,12 @@ __metadata:
   linkType: hard
 
 "copy-props@npm:^2.0.1":
-  version: 2.0.4
-  resolution: "copy-props@npm:2.0.4"
+  version: 2.0.5
+  resolution: "copy-props@npm:2.0.5"
   dependencies:
-each-props: "npm:^1.3.0"
-is-plain-object: "npm:^2.0.1"
-  checksum: 
10/8187deba82c99a49fdbf50ebf6c202383d7bcea6c356e912b6d41bd6e2a8cb57c53209d01e6f8eeb1e6f93cf87f4a8c0bde9f3d97bcce310d86a8bae747b7526
+each-props: "npm:^1.3.2"
+is-plain-object: "npm:^5.0.0"
+  checksum: 
10/eba7486dc0ba0b5bbb0e98805849a60e0a0c14c362b1baece69d86c8460aabe03d4f271d34ac41d8f5f9b3302703ca75bab34227ff6fbfedc47646f47288aaa0
   languageName: node
   linkType: hard
 
@@ -3263,7 +3263,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"each-props@npm:^1.3.0":
+"each-props@npm:^1.3.2":
   version: 1.3.2
   resolution: "each-props@npm:1.3.2"
   dependencies:



(camel-website) 13/14: chore: update cached-path-relative to 1.1.0

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 8541fa7d7884ad605879c2e39d7c4c5da9541e84
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:44:25 2024 +0100

chore: update cached-path-relative to 1.1.0
---
 .pnp.cjs |  10 +-
 ...hed-path-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip | Bin 3749 -> 0 bytes
 ...hed-path-relative-npm-1.1.0-7662af2352-2f1d63c230.zip | Bin 0 -> 3747 bytes
 yarn.lock|   6 +++---
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/.pnp.cjs b/.pnp.cjs
index a5c2be59..2af9c3f7 100755
--- a/.pnp.cjs
+++ b/.pnp.cjs
@@ -4895,7 +4895,7 @@ const RAW_RUNTIME_STATE =
   ["browser-resolve", "npm:2.0.0"],\
   ["browserify-zlib", "npm:0.2.0"],\
   ["buffer", "npm:5.2.1"],\
-  ["cached-path-relative", "npm:1.0.2"],\
+  ["cached-path-relative", "npm:1.1.0"],\
   ["concat-stream", "npm:1.6.2"],\
   ["console-browserify", "npm:1.2.0"],\
   ["constants-browserify", "npm:1.0.0"],\
@@ -5309,10 +5309,10 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["cached-path-relative", [\
-  ["npm:1.0.2", {\
-"packageLocation": 
"./.yarn/cache/cached-path-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip/node_modules/cached-path-relative/",\
+  ["npm:1.1.0", {\
+"packageLocation": 
"./.yarn/cache/cached-path-relative-npm-1.1.0-7662af2352-2f1d63c230.zip/node_modules/cached-path-relative/",\
 "packageDependencies": [\
-  ["cached-path-relative", "npm:1.0.2"]\
+  ["cached-path-relative", "npm:1.1.0"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -15289,7 +15289,7 @@ const RAW_RUNTIME_STATE =
   ["module-deps", "npm:6.2.3"],\
   ["JSONStream", "npm:1.3.5"],\
   ["browser-resolve", "npm:2.0.0"],\
-  ["cached-path-relative", "npm:1.0.2"],\
+  ["cached-path-relative", "npm:1.1.0"],\
   ["concat-stream", "npm:1.6.2"],\
   ["defined", "npm:1.0.0"],\
   ["detective", "npm:5.2.0"],\
diff --git 
a/.yarn/cache/cached-path-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip 
b/.yarn/cache/cached-path-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip
deleted file mode 100644
index e60b448c..
Binary files 
a/.yarn/cache/cached-path-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip and 
/dev/null differ
diff --git 
a/.yarn/cache/cached-path-relative-npm-1.1.0-7662af2352-2f1d63c230.zip 
b/.yarn/cache/cached-path-relative-npm-1.1.0-7662af2352-2f1d63c230.zip
new file mode 100644
index ..aac97b3a
Binary files /dev/null and 
b/.yarn/cache/cached-path-relative-npm-1.1.0-7662af2352-2f1d63c230.zip differ
diff --git a/yarn.lock b/yarn.lock
index e4e1347c..bfdd1f29 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4659,9 +4659,9 @@ __metadata:
   linkType: hard
 
 "cached-path-relative@npm:^1.0.0, cached-path-relative@npm:^1.0.2":
-  version: 1.0.2
-  resolution: "cached-path-relative@npm:1.0.2"
-  checksum: 
10/643fa65a6522f975505d273c2027ff7632437e9be79bb7f02fa655ccb30cfe6e6219eff70b8ad73558806f6453bc18391623967ef2d065745fc4a1efd48c2a3e
+  version: 1.1.0
+  resolution: "cached-path-relative@npm:1.1.0"
+  checksum: 
10/2f1d63c2301feda575039b945811e54b2dc851b49e94aa366d2916fece745fe4f4490a28a68bd0afe79c2fe336bebf62cbdfa2ad75b178d33b074089114d402d
   languageName: node
   linkType: hard
 



(camel-website) 02/14: chore: update qs to 6.11.2

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit b684b1c74aef29f9e3285f9de7dfcfd5d69f64e1
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:17:33 2024 +0100

chore: update qs to 6.11.2
---
 antora-ui-camel/.pnp.cjs   | 140 -
 .../call-bind-npm-1.0.7-762763ef96-cd6fe658e0.zip  | Bin 0 -> 10060 bytes
 ...ta-property-npm-1.1.3-0b0317da79-99c97937af.zip | Bin 0 -> 11673 bytes
 ...ne-property-npm-1.0.0-e23aa9b242-f66ece0a88.zip | Bin 0 -> 7525 bytes
 .../es-errors-npm-1.3.0-fda0c9b8a8-96e65d6401.zip  | Bin 0 -> 9301 bytes
 ...t-intrinsic-npm-1.2.4-1dad3427b2-85bbf4b234.zip | Bin 0 -> 14541 bytes
 .../cache/gopd-npm-1.0.1-10c1d0b534-5fbc7ad57b.zip | Bin 0 -> 5330 bytes
 ...descriptors-npm-1.0.2-d7077d09f1-2d8c9ab8ce.zip | Bin 0 -> 6746 bytes
 .../has-proto-npm-1.0.1-631ea9d820-eab2ab0ed1.zip  | Bin 0 -> 5117 bytes
 ...has-symbols-npm-1.0.3-1986bff2c4-464f97a820.zip | Bin 0 -> 10526 bytes
 ...ct-inspect-npm-1.13.1-fd038a2f0a-92f4989ed8.zip | Bin 0 -> 35887 bytes
 .../cache/qs-npm-6.11.2-b118bc1c6f-f2321d0796.zip  | Bin 0 -> 58589 bytes
 .../cache/qs-npm-6.7.0-15161a344c-d8f4b216c6.zip   | Bin 38406 -> 0 bytes
 ...tion-length-npm-1.2.1-5131ef7312-9ab1d20014.zip | Bin 0 -> 10264 bytes
 ...ide-channel-npm-1.0.5-ac07c0c62d-27708b70b5.zip | Bin 0 -> 8645 bytes
 antora-ui-camel/yarn.lock  | 127 ++-
 16 files changed, 260 insertions(+), 7 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 9e95a5f1..586f4b7f 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -2168,6 +2168,20 @@ const RAW_RUNTIME_STATE =
 "linkType": "HARD"\
   }]\
 ]],\
+["call-bind", [\
+  ["npm:1.0.7", {\
+"packageLocation": 
"./.yarn/cache/call-bind-npm-1.0.7-762763ef96-cd6fe658e0.zip/node_modules/call-bind/",\
+"packageDependencies": [\
+  ["call-bind", "npm:1.0.7"],\
+  ["es-define-property", "npm:1.0.0"],\
+  ["es-errors", "npm:1.3.0"],\
+  ["function-bind", "npm:1.1.2"],\
+  ["get-intrinsic", "npm:1.2.4"],\
+  ["set-function-length", "npm:1.2.1"]\
+],\
+"linkType": "HARD"\
+  }]\
+]],\
 ["caller-callsite", [\
   ["npm:2.0.0", {\
 "packageLocation": 
"./.yarn/cache/caller-callsite-npm-2.0.0-9cf308d7bb-b685e9d126.zip/node_modules/caller-callsite/",\
@@ -3470,6 +3484,19 @@ const RAW_RUNTIME_STATE =
 "linkType": "HARD"\
   }]\
 ]],\
+["define-data-property", [\
+  ["npm:1.1.3", {\
+"packageLocation": 
"./.yarn/cache/define-data-property-npm-1.1.3-0b0317da79-99c97937af.zip/node_modules/define-data-property/",\
+"packageDependencies": [\
+  ["define-data-property", "npm:1.1.3"],\
+  ["es-errors", "npm:1.3.0"],\
+  ["get-intrinsic", "npm:1.2.4"],\
+  ["gopd", "npm:1.0.1"],\
+  ["has-property-descriptors", "npm:1.0.2"]\
+],\
+"linkType": "HARD"\
+  }]\
+]],\
 ["define-properties", [\
   ["npm:1.1.3", {\
 "packageLocation": 
"./.yarn/cache/define-properties-npm-1.1.3-0f3115e2b9-33125cafaf.zip/node_modules/define-properties/",\
@@ -3986,6 +4013,25 @@ const RAW_RUNTIME_STATE =
 "linkType": "HARD"\
   }]\
 ]],\
+["es-define-property", [\
+  ["npm:1.0.0", {\
+"packageLocation": 
"./.yarn/cache/es-define-property-npm-1.0.0-e23aa9b242-f66ece0a88.zip/node_modules/es-define-property/",\
+"packageDependencies": [\
+  ["es-define-property", "npm:1.0.0"],\
+  ["get-intrinsic", "npm:1.2.4"]\
+],\
+"linkType": "HARD"\
+  }]\
+]],\
+["es-errors", [\
+  ["npm:1.3.0", {\
+"packageLocation": 
"./.yarn/cache/es-errors-npm-1.3.0-fda0c9b8a8-96e65d6401.zip/node_modules/es-errors/",\
+"packageDependencies": [\
+  ["es-errors", "npm:1.3.0"]\
+],\
+"linkType": "HARD"\
+  }]\
+]],\
 ["es-to-primitive", [\
   ["npm:1.2.1", {\
 "packageLocation": 
"./.yarn/cache/es-to-primitive-npm-1.2.1-b7a7eac6c5-74aeeefe27.zip/node_modules/es-to-primitive/",\
@@ -5404,6 +5450,20 @@ const RAW_RUNTIME_STATE =
 "linkType": "HARD"\
   }]\
 ]],\
+["get-intrinsic", [\
+  ["npm:1.2.4", {\
+"packageLocation": 
"./.yarn/cache/get-intrinsic-npm-1.2.4-1dad3427b2-85bbf4b234.zip/node_modules/get-intrinsic/",\
+"packageDependencies": [\
+  ["get-intrinsic", "npm:1.2.4"],\
+  ["es-errors", "npm:1.3.0"],\
+  ["function-bind", "npm:1.1.2"],\
+  ["has-proto", "npm:1.0.1"],\
+  ["has-symbols", "npm:1.0.3"],\
+  ["hasown", "npm:2.0.0"]\
+],\
+"linkType": "HARD"\
+  }]\
+]],\
 ["get-proxy", [\
   ["npm:2.1.0", {\
 "packageLoca

(camel-website) 12/14: chore: update acorn-node to 1.8.2

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 615eaa9d410f75b8256d87c003699680476d69fa
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 14:41:46 2024 +0100

chore: update acorn-node to 1.8.2
---
 antora-ui-camel/.pnp.cjs   |  47 ++---
 ...amic-import-npm-4.0.0-c0c0c080f3-8a1efc546f.zip | Bin 6209 -> 0 bytes
 .../acorn-node-npm-1.7.0-eb8fbb7af0-f3ae8d4da1.zip | Bin 18061 -> 0 bytes
 .../acorn-node-npm-1.8.2-b30b72c499-a4d5e44a9a.zip | Bin 0 -> 19371 bytes
 .../acorn-walk-npm-6.1.1-19617886f4-afae57b864.zip | Bin 21780 -> 0 bytes
 .../acorn-walk-npm-7.2.0-5f8b515308-4d3e186f72.zip | Bin 0 -> 22649 bytes
 antora-ui-camel/yarn.lock  |  30 +
 7 files changed, 22 insertions(+), 55 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 0961ef0f..5a408bb0 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -762,28 +762,6 @@ const RAW_RUNTIME_STATE =
 "linkType": "HARD"\
   }]\
 ]],\
-["acorn-dynamic-import", [\
-  ["npm:4.0.0", {\
-"packageLocation": 
"./.yarn/cache/acorn-dynamic-import-npm-4.0.0-c0c0c080f3-8a1efc546f.zip/node_modules/acorn-dynamic-import/",\
-"packageDependencies": [\
-  ["acorn-dynamic-import", "npm:4.0.0"]\
-],\
-"linkType": "SOFT"\
-  }],\
-  
["virtual:eb8fbb7af0e0013e84611930f4b3d6efe04b928b675cca17a81ed9ef8b52b1ba962a1853540b2a1161d900dbdab928455194126f0050817ad12384ebfd8e3a99#npm:4.0.0",
 {\
-"packageLocation": 
"./.yarn/__virtual__/acorn-dynamic-import-virtual-bece840250/0/cache/acorn-dynamic-import-npm-4.0.0-c0c0c080f3-8a1efc546f.zip/node_modules/acorn-dynamic-import/",\
-"packageDependencies": [\
-  ["acorn-dynamic-import", 
"virtual:eb8fbb7af0e0013e84611930f4b3d6efe04b928b675cca17a81ed9ef8b52b1ba962a1853540b2a1161d900dbdab928455194126f0050817ad12384ebfd8e3a99#npm:4.0.0"],\
-  ["@types/acorn", null],\
-  ["acorn", "npm:8.11.3"]\
-],\
-"packagePeers": [\
-  "@types/acorn",\
-  "acorn"\
-],\
-"linkType": "HARD"\
-  }]\
-]],\
 ["acorn-jsx", [\
   ["npm:3.0.1", {\
 "packageLocation": 
"./.yarn/cache/acorn-jsx-npm-3.0.1-3c3c3ddce8-8cb7f7b44f.zip/node_modules/acorn-jsx/",\
@@ -815,23 +793,22 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["acorn-node", [\
-  ["npm:1.7.0", {\
-"packageLocation": 
"./.yarn/cache/acorn-node-npm-1.7.0-eb8fbb7af0-f3ae8d4da1.zip/node_modules/acorn-node/",\
+  ["npm:1.8.2", {\
+"packageLocation": 
"./.yarn/cache/acorn-node-npm-1.8.2-b30b72c499-a4d5e44a9a.zip/node_modules/acorn-node/",\
 "packageDependencies": [\
-  ["acorn-node", "npm:1.7.0"],\
+  ["acorn-node", "npm:1.8.2"],\
   ["acorn", "npm:8.11.3"],\
-  ["acorn-dynamic-import", 
"virtual:eb8fbb7af0e0013e84611930f4b3d6efe04b928b675cca17a81ed9ef8b52b1ba962a1853540b2a1161d900dbdab928455194126f0050817ad12384ebfd8e3a99#npm:4.0.0"],\
-  ["acorn-walk", "npm:6.1.1"],\
+  ["acorn-walk", "npm:7.2.0"],\
   ["xtend", "npm:4.0.2"]\
 ],\
 "linkType": "HARD"\
   }]\
 ]],\
 ["acorn-walk", [\
-  ["npm:6.1.1", {\
-"packageLocation": 
"./.yarn/cache/acorn-walk-npm-6.1.1-19617886f4-afae57b864.zip/node_modules/acorn-walk/",\
+  ["npm:7.2.0", {\
+"packageLocation": 
"./.yarn/cache/acorn-walk-npm-7.2.0-5f8b515308-4d3e186f72.zip/node_modules/acorn-walk/",\
 "packageDependencies": [\
-  ["acorn-walk", "npm:6.1.1"]\
+  ["acorn-walk", "npm:7.2.0"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -3558,7 +3535,7 @@ const RAW_RUNTIME_STATE =
 "packageLocation": 
"./.yarn/cache/detective-npm-5.2.0-c623eb79e6-08841e02a5.zip/node_modules/detective/",\
 "packageDependencies": [\
   ["detective", "npm:5.2.0"],\
-  ["acorn-node", "npm:1.7.0"],\
+  ["acorn-node", "npm:1.8.2"],\
   ["defined", "npm:1.0.0"],\
   ["minimist", "npm:1.2.8"]\
 ],\
@@ -6656,7 +6633,7 @@ const RAW_RUNTIME_STATE =
 "packageDependencies": [\
   ["insert-module-globals", "npm:7.2.1"],\
   ["JSONStream", "npm:1.3.5"],\
-  ["acorn-node", "npm:1.7.0"],\
+  ["acorn-node", "npm:1.8.2"],\
   ["combine-source-map", "npm:0.8.0"],\
   ["concat-stream", "npm:1.6.2"],\
   ["is-buffer", "npm:1.1.6"],\
@@ -12193,7 +12170,7 @@ const RAW_RUNTIME_STATE =
 "packageLocation": 
"./.yarn/cache/syntax-error-npm-1.4.0-8721590265-eb3b44ef38.zip/node_modules/syntax-error/",\
 "packageDependencies": [\
   ["syntax-error", "npm:1.4.0"],\
-  ["acorn-node", "npm:1.7.0"]\
+  ["acorn-node", "npm:1.8.2"]\
 ],\
   

(camel-website) 14/14: chore: update lockfiles and remove duplicate deps

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 6d8bc1a5996983d823bdd02101e2e6446bfd9c6d
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 14:55:27 2024 +0100

chore: update lockfiles and remove duplicate deps
---
 antora-ui-camel/.pnp.cjs   |  26 +
 ...has-symbols-npm-1.0.1-b783bc25ec-d7a6d0b8f2.zip | Bin 9477 -> 0 bytes
 ...ect-inspect-npm-1.7.0-52604d77d2-5fef751f95.zip | Bin 15758 -> 0 bytes
 antora-ui-camel/yarn.lock  |  18 ++
 4 files changed, 8 insertions(+), 36 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 5a408bb0..767ea6bb 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -3937,10 +3937,10 @@ const RAW_RUNTIME_STATE =
   ["es-to-primitive", "npm:1.2.1"],\
   ["function-bind", "npm:1.1.2"],\
   ["has", "npm:1.0.3"],\
-  ["has-symbols", "npm:1.0.1"],\
+  ["has-symbols", "npm:1.0.3"],\
   ["is-callable", "npm:1.2.0"],\
   ["is-regex", "npm:1.0.5"],\
-  ["object-inspect", "npm:1.7.0"],\
+  ["object-inspect", "npm:1.13.1"],\
   ["object-keys", "npm:1.1.1"],\
   ["object.assign", "npm:4.1.0"],\
   ["string.prototype.trimleft", "npm:2.1.2"],\
@@ -6047,13 +6047,6 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["has-symbols", [\
-  ["npm:1.0.1", {\
-"packageLocation": 
"./.yarn/cache/has-symbols-npm-1.0.1-b783bc25ec-d7a6d0b8f2.zip/node_modules/has-symbols/",\
-"packageDependencies": [\
-  ["has-symbols", "npm:1.0.1"]\
-],\
-"linkType": "HARD"\
-  }],\
   ["npm:1.0.3", {\
 "packageLocation": 
"./.yarn/cache/has-symbols-npm-1.0.3-1986bff2c4-464f97a820.zip/node_modules/has-symbols/",\
 "packageDependencies": [\
@@ -7167,7 +7160,7 @@ const RAW_RUNTIME_STATE =
 "packageLocation": 
"./.yarn/cache/is-symbol-npm-1.0.2-bded3e8b8d-801cfee154.zip/node_modules/is-symbol/",\
 "packageDependencies": [\
   ["is-symbol", "npm:1.0.2"],\
-  ["has-symbols", "npm:1.0.1"]\
+  ["has-symbols", "npm:1.0.3"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -7180,7 +7173,7 @@ const RAW_RUNTIME_STATE =
   ["available-typed-arrays", "npm:1.0.2"],\
   ["es-abstract", "npm:1.17.5"],\
   ["foreach", "npm:2.0.5"],\
-  ["has-symbols", "npm:1.0.1"]\
+  ["has-symbols", "npm:1.0.3"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -8690,13 +8683,6 @@ const RAW_RUNTIME_STATE =
   ["object-inspect", "npm:1.13.1"]\
 ],\
 "linkType": "HARD"\
-  }],\
-  ["npm:1.7.0", {\
-"packageLocation": 
"./.yarn/cache/object-inspect-npm-1.7.0-52604d77d2-5fef751f95.zip/node_modules/object-inspect/",\
-"packageDependencies": [\
-  ["object-inspect", "npm:1.7.0"]\
-],\
-"linkType": "HARD"\
   }]\
 ]],\
 ["object-keys", [\
@@ -8725,7 +8711,7 @@ const RAW_RUNTIME_STATE =
   ["object.assign", "npm:4.1.0"],\
   ["define-properties", "npm:1.1.3"],\
   ["function-bind", "npm:1.1.2"],\
-  ["has-symbols", "npm:1.0.1"],\
+  ["has-symbols", "npm:1.0.3"],\
   ["object-keys", "npm:1.1.1"]\
 ],\
 "linkType": "HARD"\
@@ -13202,7 +13188,7 @@ const RAW_RUNTIME_STATE =
   ["es-abstract", "npm:1.17.5"],\
   ["foreach", "npm:2.0.5"],\
   ["function-bind", "npm:1.1.2"],\
-  ["has-symbols", "npm:1.0.1"],\
+  ["has-symbols", "npm:1.0.3"],\
   ["is-typed-array", "npm:1.1.3"]\
 ],\
 "linkType": "HARD"\
diff --git 
a/antora-ui-camel/.yarn/cache/has-symbols-npm-1.0.1-b783bc25ec-d7a6d0b8f2.zip 
b/antora-ui-camel/.yarn/cache/has-symbols-npm-1.0.1-b783bc25ec-d7a6d0b8f2.zip
deleted file mode 100644
index d4becd10..
Binary files 
a/antora-ui-camel/.yarn/cache/has-symbols-npm-1.0.1-b783bc25ec-d7a6d0b8f2.zip 
and /dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/object-inspect-npm-1.7.0-52604d77d2-5fef751f95.zip
 
b/antora-ui-camel/.yarn/cache/object-inspect-npm-1.7.0-52604d77d2-5fef751f95.zip
deleted file mode 100644
index 3755a9cb..
Binary files 
a/antora-ui-camel/.yarn/cache/object-inspect-npm-1.7.0-52604d77d2-5fef751f95.zip
 and /dev/null differ
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 861b541b..36167369 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -5251,14 +5251,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"has-symbols@npm:^1.0.0, has-symbols@npm:^1.0.1":
-  version: 1.0.1
-  resolution: "has-symbols@npm:1.0.1"
-  checksum: 
10/d7a6d0b8f2b4595d6d5aafd4e020f65785779a654b52b77457f69c33e2c36400780ece296b964ae885714e4c83b503b01e2024d682d95794628d9c5a

Re: [PR] More dependency updates [camel-website]

2024-02-13 Thread via GitHub


zregvart merged PR #1138:
URL: https://github.com/apache/camel-website/pull/1138


-- 
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-website) 04/14: chore: remove old version of nth-check

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit a27a01bde3534c2615fc619216ca8203bacae610
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:28:27 2024 +0100

chore: remove old version of nth-check
---
 antora-ui-camel/.pnp.cjs |  10 +-
 .../cache/nth-check-npm-1.0.2-3f6d0d22eb-59e115fdd7.zip  | Bin 3883 -> 0 bytes
 antora-ui-camel/package.json |   3 ++-
 antora-ui-camel/yarn.lock|  13 ++---
 4 files changed, 5 insertions(+), 21 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 258fc617..477efada 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -3010,7 +3010,7 @@ const RAW_RUNTIME_STATE =
   ["boolbase", "npm:1.0.0"],\
   ["css-what", "npm:2.1.3"],\
   ["domutils", "npm:1.7.0"],\
-  ["nth-check", "npm:1.0.2"]\
+  ["nth-check", "npm:2.1.1"]\
 ],\
 "linkType": "HARD"\
   }],\
@@ -8708,14 +8708,6 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["nth-check", [\
-  ["npm:1.0.2", {\
-"packageLocation": 
"./.yarn/cache/nth-check-npm-1.0.2-3f6d0d22eb-59e115fdd7.zip/node_modules/nth-check/",\
-"packageDependencies": [\
-  ["nth-check", "npm:1.0.2"],\
-  ["boolbase", "npm:1.0.0"]\
-],\
-"linkType": "HARD"\
-  }],\
   ["npm:2.1.1", {\
 "packageLocation": 
"./.yarn/cache/nth-check-npm-2.1.1-f97afc8169-5afc3dafcd.zip/node_modules/nth-check/",\
 "packageDependencies": [\
diff --git 
a/antora-ui-camel/.yarn/cache/nth-check-npm-1.0.2-3f6d0d22eb-59e115fdd7.zip 
b/antora-ui-camel/.yarn/cache/nth-check-npm-1.0.2-3f6d0d22eb-59e115fdd7.zip
deleted file mode 100644
index 89857311..
Binary files 
a/antora-ui-camel/.yarn/cache/nth-check-npm-1.0.2-3f6d0d22eb-59e115fdd7.zip and 
/dev/null differ
diff --git a/antora-ui-camel/package.json b/antora-ui-camel/package.json
index 32d4fea2..632e1f5f 100644
--- a/antora-ui-camel/package.json
+++ b/antora-ui-camel/package.json
@@ -80,6 +80,7 @@
 }
   },
   "resolutions": {
-"http-cache-semantics": "4.1.1"
+"http-cache-semantics": "4.1.1",
+"nth-check": "2.1.1"
   }
 }
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 29181d2c..0ac30f35 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -1394,7 +1394,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"boolbase@npm:^1.0.0, boolbase@npm:~1.0.0":
+"boolbase@npm:^1.0.0":
   version: 1.0.0
   resolution: "boolbase@npm:1.0.0"
   checksum: 
10/3e25c80ef626c3a3487c73dbfc70ac322ec830666c9ad915d11b701142fab25ec1e63eff2c450c74347acfd2de854ccde865cd79ef4db1683f7c7b046ea43bb0
@@ -7666,16 +7666,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"nth-check@npm:^1.0.2":
-  version: 1.0.2
-  resolution: "nth-check@npm:1.0.2"
-  dependencies:
-boolbase: "npm:~1.0.0"
-  checksum: 
10/59e115fdd75b971d0030f42ada3aac23898d4c03aa13371fa8b3339d23461d1badf3fde5aad251fb956aaa75c0a3b9bfcd07c08a34a83b4f9dadfdce1d19337c
-  languageName: node
-  linkType: hard
-
-"nth-check@npm:^2.0.1":
+"nth-check@npm:2.1.1":
   version: 2.1.1
   resolution: "nth-check@npm:2.1.1"
   dependencies:



(camel-website) 08/14: chore: update y18n to 3.2.2

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit f06029649b8dbfb05a84ab3074bfa29b9ff4b06e
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:32:34 2024 +0100

chore: update y18n to 3.2.2
---
 antora-ui-camel/.pnp.cjs |   8 
 .../.yarn/cache/y18n-npm-3.2.1-af8160320f-645ec00f3f.zip | Bin 4143 -> 0 bytes
 .../.yarn/cache/y18n-npm-3.2.2-f9b6b42101-42ee58e321.zip | Bin 0 -> 4458 bytes
 antora-ui-camel/yarn.lock|   6 +++---
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index ac858efc..81fde7e7 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -13380,10 +13380,10 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["y18n", [\
-  ["npm:3.2.1", {\
-"packageLocation": 
"./.yarn/cache/y18n-npm-3.2.1-af8160320f-645ec00f3f.zip/node_modules/y18n/",\
+  ["npm:3.2.2", {\
+"packageLocation": 
"./.yarn/cache/y18n-npm-3.2.2-f9b6b42101-42ee58e321.zip/node_modules/y18n/",\
 "packageDependencies": [\
-  ["y18n", "npm:3.2.1"]\
+  ["y18n", "npm:3.2.2"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -13420,7 +13420,7 @@ const RAW_RUNTIME_STATE =
   ["set-blocking", "npm:2.0.0"],\
   ["string-width", "npm:1.0.2"],\
   ["which-module", "npm:1.0.0"],\
-  ["y18n", "npm:3.2.1"],\
+  ["y18n", "npm:3.2.2"],\
   ["yargs-parser", "npm:5.0.0"]\
 ],\
 "linkType": "HARD"\
diff --git 
a/antora-ui-camel/.yarn/cache/y18n-npm-3.2.1-af8160320f-645ec00f3f.zip 
b/antora-ui-camel/.yarn/cache/y18n-npm-3.2.1-af8160320f-645ec00f3f.zip
deleted file mode 100644
index 8cb4a232..
Binary files 
a/antora-ui-camel/.yarn/cache/y18n-npm-3.2.1-af8160320f-645ec00f3f.zip and 
/dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/y18n-npm-3.2.2-f9b6b42101-42ee58e321.zip 
b/antora-ui-camel/.yarn/cache/y18n-npm-3.2.2-f9b6b42101-42ee58e321.zip
new file mode 100644
index ..a23acc94
Binary files /dev/null and 
b/antora-ui-camel/.yarn/cache/y18n-npm-3.2.2-f9b6b42101-42ee58e321.zip differ
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 6386c209..2f55c7e3 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -11888,9 +11888,9 @@ __metadata:
   linkType: hard
 
 "y18n@npm:^3.2.1":
-  version: 3.2.1
-  resolution: "y18n@npm:3.2.1"
-  checksum: 
10/645ec00f3f09072f268d69d6eda4dbba843ae8160ac4afe0d3605eed721b003f602c6cd5be132d1297f085352f124fb27cf4dc7d51353b15592410bfbc5213bf
+  version: 3.2.2
+  resolution: "y18n@npm:3.2.2"
+  checksum: 
10/42ee58e321252ac87f85ccc7cee01c2e3e224737531e9e543963264194255132ce406e02993904b84ea974050d53b8959dcf9da695408553c32f2a8b4b59a667
   languageName: node
   linkType: hard
 



(camel-website) 06/14: chore: upgrade glob-parent to 5.1.2

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 24e200ad4565a964876bb636a4bf45aa1e92c659
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:31:34 2024 +0100

chore: upgrade glob-parent to 5.1.2
---
 antora-ui-camel/.pnp.cjs   |  22 ++---
 ...glob-parent-npm-3.1.0-31416ad085-653d559237.zip | Bin 3584 -> 0 bytes
 ...ath-dirname-npm-1.0.2-d158cba006-0d2f6604ae.zip | Bin 3159 -> 0 bytes
 antora-ui-camel/package.json   |   3 ++-
 antora-ui-camel/yarn.lock  |  19 +-
 5 files changed, 5 insertions(+), 39 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 6cd00caf..eb33dcba 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -2340,7 +2340,7 @@ const RAW_RUNTIME_STATE =
   ["async-each", "npm:1.0.3"],\
   ["braces", "npm:2.3.2"],\
   ["fsevents", 
"patch:fsevents@npm%3A1.2.13#optional!builtin::version=1.2.13&hash=d11327"],\
-  ["glob-parent", "npm:3.1.0"],\
+  ["glob-parent", "npm:5.1.2"],\
   ["inherits", "npm:2.0.4"],\
   ["is-binary-path", "npm:1.0.1"],\
   ["is-glob", "npm:4.0.1"],\
@@ -5568,15 +5568,6 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["glob-parent", [\
-  ["npm:3.1.0", {\
-"packageLocation": 
"./.yarn/cache/glob-parent-npm-3.1.0-31416ad085-653d559237.zip/node_modules/glob-parent/",\
-"packageDependencies": [\
-  ["glob-parent", "npm:3.1.0"],\
-  ["is-glob", "npm:3.1.0"],\
-  ["path-dirname", "npm:1.0.2"]\
-],\
-"linkType": "HARD"\
-  }],\
   ["npm:5.1.2", {\
 "packageLocation": 
"./.yarn/cache/glob-parent-npm-5.1.2-021ab32634-32cd106ce8.zip/node_modules/glob-parent/",\
 "packageDependencies": [\
@@ -5593,7 +5584,7 @@ const RAW_RUNTIME_STATE =
   ["glob-stream", "npm:6.1.0"],\
   ["extend", "npm:3.0.2"],\
   ["glob", "npm:7.1.4"],\
-  ["glob-parent", "npm:3.1.0"],\
+  ["glob-parent", "npm:5.1.2"],\
   ["is-negated-glob", "npm:1.0.0"],\
   ["ordered-read-streams", "npm:1.0.1"],\
   ["pumpify", "npm:1.5.1"],\
@@ -9276,15 +9267,6 @@ const RAW_RUNTIME_STATE =
 "linkType": "HARD"\
   }]\
 ]],\
-["path-dirname", [\
-  ["npm:1.0.2", {\
-"packageLocation": 
"./.yarn/cache/path-dirname-npm-1.0.2-d158cba006-0d2f6604ae.zip/node_modules/path-dirname/",\
-"packageDependencies": [\
-  ["path-dirname", "npm:1.0.2"]\
-],\
-"linkType": "HARD"\
-  }]\
-]],\
 ["path-exists", [\
   ["npm:2.1.0", {\
 "packageLocation": 
"./.yarn/cache/path-exists-npm-2.1.0-be4aa2-fdb734f1d0.zip/node_modules/path-exists/",\
diff --git 
a/antora-ui-camel/.yarn/cache/glob-parent-npm-3.1.0-31416ad085-653d559237.zip 
b/antora-ui-camel/.yarn/cache/glob-parent-npm-3.1.0-31416ad085-653d559237.zip
deleted file mode 100644
index 83a44fbb..
Binary files 
a/antora-ui-camel/.yarn/cache/glob-parent-npm-3.1.0-31416ad085-653d559237.zip 
and /dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/path-dirname-npm-1.0.2-d158cba006-0d2f6604ae.zip 
b/antora-ui-camel/.yarn/cache/path-dirname-npm-1.0.2-d158cba006-0d2f6604ae.zip
deleted file mode 100644
index e9576b11..
Binary files 
a/antora-ui-camel/.yarn/cache/path-dirname-npm-1.0.2-d158cba006-0d2f6604ae.zip 
and /dev/null differ
diff --git a/antora-ui-camel/package.json b/antora-ui-camel/package.json
index c8656afd..b00b642f 100644
--- a/antora-ui-camel/package.json
+++ b/antora-ui-camel/package.json
@@ -82,6 +82,7 @@
   "resolutions": {
 "http-cache-semantics": "4.1.1",
 "nth-check": "2.1.1",
-"semver-regex": "4.0.5"
+"semver-regex": "4.0.5",
+"glob-parent": "5.1.2"
   }
 }
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index de21d7ec..2f3c6259 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -4755,17 +4755,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"glob-parent@npm:^3.1.0":
-  version: 3.1.0
-  resolution: "glob-parent@npm:3.1.0"
-  dependencies:
-is-glob: "npm:^3.1.0"
-path-dirname: "npm:^1.0.0"
-  checksum: 
10/653d559237e89a11b9934bef3f392ec42335602034c928590544d383ff5ef449f7b12f3cfa539708e74bc0a6c28ab1fe51d663cc07463cdf899ba92afd85a855
-  languageName: node
-  linkType: hard
-
-"glob-parent@npm:^5.0.0, glob-parent@npm:^5.1.2":
+"glob-parent@npm:5.1.2":
   version: 5.1.2
   resolution: "glob-parent@npm:5.1.2"
   dependencies:
@@ -8178,13 +8168,6 @@ __metadata:
   languageName: node
   linkType: hard
 
-"path-dirname@npm:^1.0.0":
-  version: 1.0.2
-  resolution: "path-dirname@npm:1.0.2"
-  checksum: 
10/0d2f6604ae05a252a0025318685f290e2764ecf9c5436f203cdacfc8c0b17c24cdedaa449d766beb94ab88cc7fc70a09e

(camel-website) 05/14: chore: upgrade semver-regex to 4.0.5

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit 21eb7a8b37452b072011e10d344578c8c04e820f
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:30:18 2024 +0100

chore: upgrade semver-regex to 4.0.5
---
 antora-ui-camel/.pnp.cjs |   8 
 .../semver-regex-npm-2.0.0-218c804009-da7d6f5cea.zip | Bin 2395 -> 0 bytes
 .../semver-regex-npm-4.0.5-9917344f87-b9e5c0573c.zip | Bin 0 -> 3175 bytes
 antora-ui-camel/package.json |   3 ++-
 antora-ui-camel/yarn.lock|   8 
 5 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index 477efada..6cd00caf 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -5164,7 +5164,7 @@ const RAW_RUNTIME_STATE =
 "packageDependencies": [\
   ["find-versions", "npm:3.1.0"],\
   ["array-uniq", "npm:2.1.0"],\
-  ["semver-regex", "npm:2.0.0"]\
+  ["semver-regex", "npm:4.0.5"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -11044,10 +11044,10 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["semver-regex", [\
-  ["npm:2.0.0", {\
-"packageLocation": 
"./.yarn/cache/semver-regex-npm-2.0.0-218c804009-da7d6f5cea.zip/node_modules/semver-regex/",\
+  ["npm:4.0.5", {\
+"packageLocation": 
"./.yarn/cache/semver-regex-npm-4.0.5-9917344f87-b9e5c0573c.zip/node_modules/semver-regex/",\
 "packageDependencies": [\
-  ["semver-regex", "npm:2.0.0"]\
+  ["semver-regex", "npm:4.0.5"]\
 ],\
 "linkType": "HARD"\
   }]\
diff --git 
a/antora-ui-camel/.yarn/cache/semver-regex-npm-2.0.0-218c804009-da7d6f5cea.zip 
b/antora-ui-camel/.yarn/cache/semver-regex-npm-2.0.0-218c804009-da7d6f5cea.zip
deleted file mode 100644
index b6f9f6ef..
Binary files 
a/antora-ui-camel/.yarn/cache/semver-regex-npm-2.0.0-218c804009-da7d6f5cea.zip 
and /dev/null differ
diff --git 
a/antora-ui-camel/.yarn/cache/semver-regex-npm-4.0.5-9917344f87-b9e5c0573c.zip 
b/antora-ui-camel/.yarn/cache/semver-regex-npm-4.0.5-9917344f87-b9e5c0573c.zip
new file mode 100644
index ..a90ddbf4
Binary files /dev/null and 
b/antora-ui-camel/.yarn/cache/semver-regex-npm-4.0.5-9917344f87-b9e5c0573c.zip 
differ
diff --git a/antora-ui-camel/package.json b/antora-ui-camel/package.json
index 632e1f5f..c8656afd 100644
--- a/antora-ui-camel/package.json
+++ b/antora-ui-camel/package.json
@@ -81,6 +81,7 @@
   },
   "resolutions": {
 "http-cache-semantics": "4.1.1",
-"nth-check": "2.1.1"
+"nth-check": "2.1.1",
+"semver-regex": "4.0.5"
   }
 }
diff --git a/antora-ui-camel/yarn.lock b/antora-ui-camel/yarn.lock
index 0ac30f35..de21d7ec 100644
--- a/antora-ui-camel/yarn.lock
+++ b/antora-ui-camel/yarn.lock
@@ -9740,10 +9740,10 @@ __metadata:
   languageName: node
   linkType: hard
 
-"semver-regex@npm:^2.0.0":
-  version: 2.0.0
-  resolution: "semver-regex@npm:2.0.0"
-  checksum: 
10/da7d6f5ceae80e2097933b1e4ea2815c2cfa2c50c6501db1a3d435a6063c0f23d66bc25fe8d06755048f3d7588d85339db6471446b2c91fea907e5c2ada5b0df
+"semver-regex@npm:4.0.5":
+  version: 4.0.5
+  resolution: "semver-regex@npm:4.0.5"
+  checksum: 
10/b9e5c0573c4a997fb7e6e76321385d254797e86c8dba5e23f3cd8cf8f40b40414097a51514e5fead61dcb88ff10d3676355c01e2040f3c68f6c24bfd2073da2e
   languageName: node
   linkType: hard
 



(camel-website) 11/14: chore: update acorn to 8.11.3

2024-02-13 Thread zregvart
This is an automated email from the ASF dual-hosted git repository.

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

commit a8b303ed6c00585822405493d63129f7e9d13e91
Author: Zoran Regvart 
AuthorDate: Tue Feb 13 12:36:33 2024 +0100

chore: update acorn to 8.11.3
---
 antora-ui-camel/.pnp.cjs   |  65 -
 .../acorn-npm-3.3.0-3b87605fb5-ae9a421f7f.zip  | Bin 153038 -> 0 bytes
 .../acorn-npm-5.7.3-003c55c3ed-f2904822f9.zip  | Bin 135268 -> 0 bytes
 .../acorn-npm-6.1.1-62eeae5e4d-d33a2cb8dd.zip  | Bin 247741 -> 0 bytes
 .../acorn-npm-7.2.0-b4d63d132a-367d98734c.zip  | Bin 250099 -> 0 bytes
 .../acorn-npm-8.11.3-0d7ab48b38-b688e7e3c6.zip | Bin 0 -> 134446 bytes
 .../acorn-npm-8.8.0-9ef399ab45-ed7ee7ae42.zip  | Bin 120020 -> 0 bytes
 antora-ui-camel/package.json   |   3 +-
 antora-ui-camel/yarn.lock  |  44 ++
 9 files changed, 18 insertions(+), 94 deletions(-)

diff --git a/antora-ui-camel/.pnp.cjs b/antora-ui-camel/.pnp.cjs
index de4f487b..0961ef0f 100755
--- a/antora-ui-camel/.pnp.cjs
+++ b/antora-ui-camel/.pnp.cjs
@@ -754,38 +754,10 @@ const RAW_RUNTIME_STATE =
   }]\
 ]],\
 ["acorn", [\
-  ["npm:3.3.0", {\
-"packageLocation": 
"./.yarn/cache/acorn-npm-3.3.0-3b87605fb5-ae9a421f7f.zip/node_modules/acorn/",\
-"packageDependencies": [\
-  ["acorn", "npm:3.3.0"]\
-],\
-"linkType": "HARD"\
-  }],\
-  ["npm:5.7.3", {\
-"packageLocation": 
"./.yarn/cache/acorn-npm-5.7.3-003c55c3ed-f2904822f9.zip/node_modules/acorn/",\
-"packageDependencies": [\
-  ["acorn", "npm:5.7.3"]\
-],\
-"linkType": "HARD"\
-  }],\
-  ["npm:6.1.1", {\
-"packageLocation": 
"./.yarn/cache/acorn-npm-6.1.1-62eeae5e4d-d33a2cb8dd.zip/node_modules/acorn/",\
-"packageDependencies": [\
-  ["acorn", "npm:6.1.1"]\
-],\
-"linkType": "HARD"\
-  }],\
-  ["npm:7.2.0", {\
-"packageLocation": 
"./.yarn/cache/acorn-npm-7.2.0-b4d63d132a-367d98734c.zip/node_modules/acorn/",\
+  ["npm:8.11.3", {\
+"packageLocation": 
"./.yarn/cache/acorn-npm-8.11.3-0d7ab48b38-b688e7e3c6.zip/node_modules/acorn/",\
 "packageDependencies": [\
-  ["acorn", "npm:7.2.0"]\
-],\
-"linkType": "HARD"\
-  }],\
-  ["npm:8.8.0", {\
-"packageLocation": 
"./.yarn/cache/acorn-npm-8.8.0-9ef399ab45-ed7ee7ae42.zip/node_modules/acorn/",\
-"packageDependencies": [\
-  ["acorn", "npm:8.8.0"]\
+  ["acorn", "npm:8.11.3"]\
 ],\
 "linkType": "HARD"\
   }]\
@@ -803,7 +775,7 @@ const RAW_RUNTIME_STATE =
 "packageDependencies": [\
   ["acorn-dynamic-import", 
"virtual:eb8fbb7af0e0013e84611930f4b3d6efe04b928b675cca17a81ed9ef8b52b1ba962a1853540b2a1161d900dbdab928455194126f0050817ad12384ebfd8e3a99#npm:4.0.0"],\
   ["@types/acorn", null],\
-  ["acorn", "npm:6.1.1"]\
+  ["acorn", "npm:8.11.3"]\
 ],\
 "packagePeers": [\
   "@types/acorn",\
@@ -817,7 +789,7 @@ const RAW_RUNTIME_STATE =
 "packageLocation": 
"./.yarn/cache/acorn-jsx-npm-3.0.1-3c3c3ddce8-8cb7f7b44f.zip/node_modules/acorn-jsx/",\
 "packageDependencies": [\
   ["acorn-jsx", "npm:3.0.1"],\
-  ["acorn", "npm:3.3.0"]\
+  ["acorn", "npm:8.11.3"]\
 ],\
 "linkType": "HARD"\
   }],\
@@ -828,25 +800,12 @@ const RAW_RUNTIME_STATE =
 ],\
 "linkType": "SOFT"\
   }],\
-  
["virtual:abcab55b2813e51f08b801082c9f38afdbe481e334ba7d6e40dd2f60fbd9c724d465f043f920e1b30d36fbfa22aee00a31e3e712b3233975130b29ff0b980775#npm:5.2.0",
 {\
-"packageLocation": 
"./.yarn/__virtual__/acorn-jsx-virtual-363a434110/0/cache/acorn-jsx-npm-5.2.0-4c0af33483-8e630b5834.zip/node_modules/acorn-jsx/",\
-"packageDependencies": [\
-  ["acorn-jsx", 
"virtual:abcab55b2813e51f08b801082c9f38afdbe481e334ba7d6e40dd2f60fbd9c724d465f043f920e1b30d36fbfa22aee00a31e3e712b3233975130b29ff0b980775#npm:5.2.0"],\
-  ["@types/acorn", null],\
-  ["acorn", "npm:6.1.1"]\
-],\
-"packagePeers": [\
-  "@types/acorn",\
-  "acorn"\
-],\
-"linkType": "HARD"\
-  }],\
   
["virtual:c3370c80228526bdc823c77589727bb12f010d7080bccc27a33a2dcce9848e6a7ca68b55a7a8ca98362554ae73296d381ef1ad94f002f07e2a08c76d959b5bbf#npm:5.2.0",
 {\
 "packageLocation": 
"./.yarn/__virtual__/acorn-jsx-virtual-150a37b7b0/0/cache/acorn-jsx-npm-5.2.0-4c0af33483-8e630b5834.zip/node_modules/acorn-jsx/",\
 "packageDependencies": [\
   ["acorn-jsx", 
"virtual:c3370c80228526bdc823c77589727bb12f010d7080bccc27a33a2dcce9848e6a7ca68b55a7a8ca98362554ae73296d381ef1ad94f002f07e2a08c76d959b5bbf#npm:5.2.0"],\
   ["@types/acorn", null],\
-  

(camel-website) branch regen_bot updated (39be74f6 -> cd91aaf3)

2024-02-13 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-website.git


omit 39be74f6 Regen for commit 0dcaf9ae2bf9935b45fc6c6089d28328a80d6ce7
 add f523f3bf chore: update http-cache-semantics to 4.1.1
 add b684b1c7 chore: update qs to 6.11.2
 add 87f17132 chore: upgrade yarn to 4.1.0
 add a27a01bd chore: remove old version of nth-check
 add 21eb7a8b chore: upgrade semver-regex to 4.0.5
 add 24e200ad chore: upgrade glob-parent to 5.1.2
 add 797f2bc9 chore: update copy-props to 2.0.5
 add f0602964 chore: update y18n to 3.2.2
 add d2b45aba chore: update dot-prop to 4.2.1
 add dce23c79 chore: update websocket-extensions to 0.1.4
 add a8b303ed chore: update acorn to 8.11.3
 add 615eaa9d chore: update acorn-node to 1.8.2
 add 8541fa7d chore: update cached-path-relative to 1.1.0
 add 6d8bc1a5 chore: update lockfiles and remove duplicate deps
 add cd91aaf3 Regen for commit 6d8bc1a5996983d823bdd02101e2e6446bfd9c6d

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (39be74f6)
\
 N -- N -- N   refs/heads/regen_bot (cd91aaf3)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .pnp.cjs   |   62 +-
 .pnp.loader.mjs|   44 +-
 ...th-relative-npm-1.0.2-375da1d4a2-643fa65a65.zip |  Bin 3749 -> 0 bytes
 ...th-relative-npm-1.1.0-7662af2352-2f1d63c230.zip |  Bin 0 -> 3747 bytes
 .yarn/releases/{yarn-4.0.2.cjs => yarn-4.1.0.cjs}  |  672 ++--
 .../pylib/gyp/__pycache__/__init__.cpython-310.pyc |  Bin 13737 -> 13737 bytes
 .../pylib/gyp/__pycache__/common.cpython-310.pyc   |  Bin 15203 -> 15203 bytes
 .../pylib/gyp/__pycache__/input.cpython-310.pyc|  Bin 51685 -> 51685 bytes
 .../gyp/__pycache__/simple_copy.cpython-310.pyc|  Bin 1812 -> 1812 bytes
 .../__pycache__/xcode_emulation.cpython-310.pyc|  Bin 55360 -> 55360 bytes
 .../generator/__pycache__/__init__.cpython-310.pyc |  Bin 243 -> 243 bytes
 .../gyp/generator/__pycache__/make.cpython-310.pyc |  Bin 67768 -> 67768 bytes
 .../packaging/__pycache__/__init__.cpython-310.pyc |  Bin 574 -> 574 bytes
 .../__pycache__/_structures.cpython-310.pyc|  Bin 2751 -> 2751 bytes
 .../packaging/__pycache__/version.cpython-310.pyc  |  Bin 14214 -> 14214 bytes
 .../node_modules/unix-dgram/build/Makefile |2 +-
 .../node_modules/unix-dgram/build/config.gypi  |2 +-
 .yarnrc.yml|2 +-
 antora-ui-camel/.pnp.cjs   |  395 +-
 antora-ui-camel/.pnp.loader.mjs|   44 +-
 ...amic-import-npm-4.0.0-c0c0c080f3-8a1efc546f.zip |  Bin 6209 -> 0 bytes
 .../acorn-node-npm-1.7.0-eb8fbb7af0-f3ae8d4da1.zip |  Bin 18061 -> 0 bytes
 .../acorn-node-npm-1.8.2-b30b72c499-a4d5e44a9a.zip |  Bin
 .../acorn-npm-3.3.0-3b87605fb5-ae9a421f7f.zip  |  Bin 153038 -> 0 bytes
 .../acorn-npm-5.7.3-003c55c3ed-f2904822f9.zip  |  Bin 135268 -> 0 bytes
 .../acorn-npm-6.1.1-62eeae5e4d-d33a2cb8dd.zip  |  Bin 247741 -> 0 bytes
 .../acorn-npm-7.2.0-b4d63d132a-367d98734c.zip  |  Bin 250099 -> 0 bytes
 .../acorn-npm-8.11.3-0d7ab48b38-b688e7e3c6.zip |  Bin
 .../acorn-npm-8.8.0-9ef399ab45-ed7ee7ae42.zip  |  Bin 120020 -> 0 bytes
 .../acorn-walk-npm-6.1.1-19617886f4-afae57b864.zip |  Bin 21780 -> 0 bytes
 .../acorn-walk-npm-7.2.0-5f8b515308-4d3e186f72.zip |  Bin
 .../call-bind-npm-1.0.7-762763ef96-cd6fe658e0.zip  |  Bin 0 -> 10060 bytes
 .../copy-props-npm-2.0.4-128dd26186-8187deba82.zip |  Bin 5437 -> 0 bytes
 .../copy-props-npm-2.0.5-81da1b51f3-eba7486dc0.zip |  Bin 0 -> 5528 bytes
 ...ta-property-npm-1.1.3-0b0317da79-99c97937af.zip |  Bin 0 -> 11673 bytes
 .../dot-prop-npm-4.2.0-f61418cdac-e98b892290.zip   |  Bin 3182 -> 0 bytes
 .../dot-prop-npm-4.2.1-9e47a92a56-25372bc0a4.zip   |  Bin 0 -> 3361 bytes
 ...ne-property-npm-1.0.0-e23aa9b242-f66ece0a88.zip |  Bin 0 -> 7525 bytes
 .../es-errors-npm-1.3.0-fda0c9b8a8-96e65d6401.zip  |  Bin 0 -> 9301 bytes
 ...t-intrinsic-npm-1.2.4-1dad3427b2-85bbf4b234.zip |  Bin 0 -> 14541 bytes
 ...glob-parent-npm-3.1.0-31416ad085-653d559237.zip |  Bin 3584 -> 0 bytes
 .../cache/gopd-npm-1.0.1-10c1d0b534-5fbc7ad57b.zip |  Bin 0 -> 5330 bytes
 ...descriptors-npm-1.0.2-d7077d09f1-2d8c9ab8ce.zip |  Bin 0 -> 6746 bytes
 .../has-

(camel) branch regen_bot updated (0c5b620c3cf -> 26b243c2d09)

2024-02-13 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 0c5b620c3cf Polished
 add 26b243c2d09 Azure Storage Queue Cloud Event Data Type Transformer: Fix 
the prefix of event source (#13107)

No new revisions were added by this update.

Summary of changes:
 .../queue/transform/AzureStorageQueueCloudEventDataTypeTransformer.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[PR] Use eclipse-temurin:17-jdk as openssl got removed in the ubi image [camel-quarkus]

2024-02-13 Thread via GitHub


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

   (no comment)


-- 
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 4.4.0 upgrade [camel-quarkus]

2024-02-13 Thread via GitHub


JiriOndrusek commented on PR #5747:
URL: https://github.com/apache/camel-quarkus/pull/5747#issuecomment-1941780220

   The example failure is expected - fix is prepared in 
https://github.com/apache/camel-quarkus-examples/pull/193
   CSimple has to be fixed here. (I'll take care of that)


-- 
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-AWS2-SES: Removed useles variables

2024-02-13 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 98e33aa1784 Camel-AWS2-SES: Removed useles variables
98e33aa1784 is described below

commit 98e33aa1784ae52319be1dab8b9a27122a5b671c
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 16:31:08 2024 +0100

Camel-AWS2-SES: Removed useles variables

Signed-off-by: Andrea Cosentino 
---
 .../org/apache/camel/component/aws2/ses/Ses2Configuration.java   | 4 ++--
 .../camel/component/aws2/ses/SesComponentConfigurationTest.java  | 9 -
 2 files changed, 2 insertions(+), 11 deletions(-)

diff --git 
a/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/Ses2Configuration.java
 
b/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/Ses2Configuration.java
index 1813fdf3599..609467b0fab 100644
--- 
a/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/Ses2Configuration.java
+++ 
b/components/camel-aws/camel-aws2-ses/src/main/java/org/apache/camel/component/aws2/ses/Ses2Configuration.java
@@ -263,8 +263,8 @@ public class Ses2Configuration implements Cloneable {
 }
 
 /**
- * Set the need for overriding the endpoint. This option needs to be used 
in combination with the uriEndpointOverride
- * option
+ * Set the need for overriding the endpoint. This option needs to be used 
in combination with the
+ * uriEndpointOverride option
  */
 public void setOverrideEndpoint(boolean overrideEndpoint) {
 this.overrideEndpoint = overrideEndpoint;
diff --git 
a/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/SesComponentConfigurationTest.java
 
b/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/SesComponentConfigurationTest.java
index 732e40b792f..20e0a51ff8d 100644
--- 
a/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/SesComponentConfigurationTest.java
+++ 
b/components/camel-aws/camel-aws2-ses/src/test/java/org/apache/camel/component/aws2/ses/SesComponentConfigurationTest.java
@@ -16,9 +16,6 @@
  */
 package org.apache.camel.component.aws2.ses;
 
-import java.util.ArrayList;
-import java.util.List;
-
 import org.apache.camel.Endpoint;
 import org.apache.camel.test.junit5.CamelTestSupport;
 import org.junit.jupiter.api.Test;
@@ -102,12 +99,6 @@ public class SesComponentConfigurationTest extends 
CamelTestSupport {
 @Test
 public void createEndpointWithMaximalConfiguration() throws Exception {
 AmazonSESClientMock mock = new AmazonSESClientMock();
-List to = new ArrayList();
-to.add("t...@example.com");
-to.add("t...@example.com");
-List replyAddress = new ArrayList();
-replyAddress.add("reply...@example.com");
-replyAddress.add("reply...@example.com");
 
 context.getRegistry().bind("amazonSESClient", mock);
 Ses2Component component = context.getComponent("aws2-ses", 
Ses2Component.class);



(camel) branch regen_bot updated (26b243c2d09 -> 98e33aa1784)

2024-02-13 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 26b243c2d09 Azure Storage Queue Cloud Event Data Type Transformer: Fix 
the prefix of event source (#13107)
 add 98e33aa1784 Camel-AWS2-SES: Removed useles variables

No new revisions were added by this update.

Summary of changes:
 .../org/apache/camel/component/aws2/ses/Ses2Configuration.java   | 4 ++--
 .../camel/component/aws2/ses/SesComponentConfigurationTest.java  | 9 -
 2 files changed, 2 insertions(+), 11 deletions(-)



(camel-karavan) branch main updated: No nedd to push empty project

2024-02-13 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


The following commit(s) were added to refs/heads/main by this push:
 new 9a10d3df No nedd to push empty project
9a10d3df is described below

commit 9a10d3df2471e1b1fa80d62bab3838cf83d0cb78
Author: Marat Gubaidullin 
AuthorDate: Tue Feb 13 10:45:20 2024 -0500

No nedd to push empty project
---
 .../src/main/java/org/apache/camel/karavan/service/ProjectService.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ProjectService.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ProjectService.java
index a17044fd..a97c137e 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ProjectService.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ProjectService.java
@@ -382,7 +382,6 @@ public class ProjectService implements HealthCheck {
 if (kamelets == null) {
 kamelets = new Project(Project.Type.kamelets.name(), "Custom 
Kamelets", "Custom Kamelets", "", Instant.now().toEpochMilli(), 
Project.Type.kamelets);
 karavanCacheService.saveProject(kamelets);
-commitAndPushProject(JsonObject.of("projectId", 
Project.Type.kamelets.name(), "message", "Add custom kamelets"));
 }
 } catch (Exception e) {
 LOGGER.error("Error during custom kamelets project creation", e);



(camel-website) branch new440 updated (2cb4452b -> e7d203a8)

2024-02-13 Thread orpiske
This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a change to branch new440
in repository https://gitbox.apache.org/repos/asf/camel-website.git


from 2cb4452b Update content/blog/2024/02/camel44-whatsnew/index.md
 add e7d203a8 Added notes about throttle EIP and Kafka improvements

No new revisions were added by this update.

Summary of changes:
 content/blog/2024/02/camel44-whatsnew/index.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)



(camel-website-pub) branch asf-site updated (78c6dca983 -> 2e3d54c927)

2024-02-13 Thread git-site-role
This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a change to branch asf-site
in repository https://gitbox.apache.org/repos/asf/camel-website-pub.git


 discard 78c6dca983 Website updated to 0dcaf9ae2bf9935b45fc6c6089d28328a80d6ce7
 discard f434f1bc69 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new f7d00d5151 Website updated to 325e929157412b27394080f4d4dba3d821476ddf
 new 2e3d54c927 Website updated to 6d8bc1a5996983d823bdd02101e2e6446bfd9c6d

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (78c6dca983)
\
 N -- N -- N   refs/heads/asf-site (2e3d54c927)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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:
 .htaccess  |   32 +-
 .well-known/security.txt   |2 +-
 camel-k/next/apis/camel-k.html |2 +-
 camel-k/next/installation/registry/registry.html   |2 +-
 camel-k/next/traits/jvm.html   |2 +-
 .../next/contributor-guide/index.html  |2 +-
 .../next/contributor-guide/release-guide.html  |7 +-
 .../next/contributor-guide/testing.html|2 +-
 .../next/contributor-guide/troubleshooting.html|2 +-
 camel-kafka-connector/next/index.html  |2 +-
 ...s-cloudtrail-source-kafka-source-connector.html |2 +-
 ...l-aws-cloudwatch-sink-kafka-sink-connector.html |2 +-
 .../camel-aws-ddb-sink-kafka-sink-connector.html   |2 +-
 ...-ddb-streams-source-kafka-source-connector.html |2 +-
 .../camel-aws-ec2-sink-kafka-sink-connector.html   |2 +-
 ...-aws-eventbridge-sink-kafka-sink-connector.html |2 +-
 ...kinesis-firehose-sink-kafka-sink-connector.html |2 +-
 ...amel-aws-kinesis-sink-kafka-sink-connector.html |2 +-
 ...-aws-kinesis-source-kafka-source-connector.html |2 +-
 ...camel-aws-lambda-sink-kafka-sink-connector.html |2 +-
 ...mel-aws-redshift-sink-kafka-sink-connector.html |2 +-
 ...aws-redshift-source-kafka-source-connector.html |2 +-
 ...l-aws-s3-cdc-source-kafka-source-connector.html |2 +-
 .../camel-aws-s3-sink-kafka-sink-connector.html|4 +-
 ...camel-aws-s3-source-kafka-source-connector.html |4 +-
 ...streaming-upload-sink-kafka-sink-connector.html |4 +-
 ...-secrets-manager-sink-kafka-sink-connector.html |2 +-
 .../camel-aws-ses-sink-kafka-sink-connector.html   |2 +-
 ...mel-aws-sns-fifo-sink-kafka-sink-connector.html |2 +-
 .../camel-aws-sns-sink-kafka-sink-connector.html   |2 +-
 ...el-aws-sqs-batch-sink-kafka-sink-connector.html |2 +-
 ...mel-aws-sqs-fifo-sink-kafka-sink-connector.html |2 +-
 .../camel-aws-sqs-sink-kafka-sink-connector.html   |2 +-
 ...amel-aws-sqs-source-kafka-source-connector.html |2 +-
 ...timestream-query-sink-kafka-sink-connector.html |6 +
 .../camel-aws2-iam-kafka-sink-connector.html   |4 +-
 .../camel-aws2-kms-kafka-sink-connector.html   |4 +-
 ...l-azure-cosmosdb-sink-kafka-sink-connector.html |2 +-
 ...ure-cosmosdb-source-kafka-source-connector.html |2 +-
 ...-azure-eventhubs-sink-kafka-sink-connector.html |2 +-
 ...re-eventhubs-source-kafka-source-connector.html |2 +-
 ...-azure-functions-sink-kafka-sink-connector.html |2 +-
 ...azure-servicebus-sink-kafka-sink-connector.html |2 +-
 ...e-servicebus-source-kafka-source-connector.html |2 +-
 ...rage-blob-append-sink-kafka-sink-connector.html |6 +
 ...age-blob-cdc-source-kafka-source-connector.html |2 +-
 ...b-changefeed-source-kafka-source-connector.html |2 +-
 ...ure-storage-blob-sink-kafka-sink-connector.html |2 +-
 ...storage-blob-source-kafka-source-connector.html |2 +-
 ...storage-datalake-sink-kafka-sink-connector.html |2 +-
 ...age-datalake-source-kafka-source-connector.html |2 +-
 ...re-storage-queue-sink-kafka-sink-connector.html |2 +-
 ...torage-queue-source-kafka-source-connector.html |2 +-
 .../camel-beer-source-kafka-source-connector.html  |2 +-
 ...amel-bitcoin-source-kafka-source-connector.html |2 +-
 .../camel-cassandra-sink-kafka-sink-connector.html |2 +-
 ...el-cassandra-source-kafka-source-connector.html |2 +-
 

Error while running github feature from .asf.yaml in camel-website-pub!

2024-02-13 Thread Apache Infrastructure


An error occurred while running github feature in .asf.yaml!:
422 {"message": "Validation Failed", "errors": [{"message": "Sorry, you need to 
allow at least one merge strategy. (no_merge_method)", "resource": 
"Repository", "field": "merge_commit_allowed", "code": "invalid"}], 
"documentation_url": 
"https://docs.github.com/rest/repos/repos#update-a-repository"}



(camel) branch CAMEL-20415 created (now 461c086552e)

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

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


  at 461c086552e CAMEL-20415 - AWS Cloudtrail CloudEvent transformer

This branch includes the following new commits:

 new 461c086552e CAMEL-20415 - AWS Cloudtrail CloudEvent transformer

The 1 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.




(camel) 01/01: CAMEL-20415 - AWS Cloudtrail CloudEvent transformer

2024-02-13 Thread acosentino
This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch CAMEL-20415
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 461c086552e1a7612066487bc39e9c3ae5b5ee45
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 17:23:59 2024 +0100

CAMEL-20415 - AWS Cloudtrail CloudEvent transformer

Signed-off-by: Andrea Cosentino 
---
 components/camel-aws/camel-aws-cloudtrail/pom.xml  |  8 
 .../aws-cloudtrail-application-cloudevents |  2 +
 .../CloudtrailCloudEventDataTypeTransformer.java   | 55 ++
 3 files changed, 65 insertions(+)

diff --git a/components/camel-aws/camel-aws-cloudtrail/pom.xml 
b/components/camel-aws/camel-aws-cloudtrail/pom.xml
index 1d45a991ad5..b6420014c97 100644
--- a/components/camel-aws/camel-aws-cloudtrail/pom.xml
+++ b/components/camel-aws/camel-aws-cloudtrail/pom.xml
@@ -55,6 +55,14 @@
 camel-health
 
 
+
+
+org.apache.camel
+camel-cloudevents
+provided
+true
+
+
 
 
 org.apache.camel
diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
 
b/components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
new file mode 100644
index 000..adcb3ce3ca4
--- /dev/null
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
@@ -0,0 +1,2 @@
+# Generated by camel build tools - do NOT edit this file!
+class=org.apache.camel.component.aws.cloudtrail.transform.CloudtrailCloudEventDataTypeTransformer
diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java
 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java
new file mode 100644
index 000..dbfc15a999f
--- /dev/null
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java
@@ -0,0 +1,55 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.camel.component.aws.cloudtrail.transform;
+
+import java.util.Map;
+
+import org.apache.camel.Message;
+import org.apache.camel.component.aws.cloudtrail.CloudtrailConstants;
+import org.apache.camel.component.cloudevents.CloudEvent;
+import org.apache.camel.component.cloudevents.CloudEvents;
+import org.apache.camel.spi.DataType;
+import org.apache.camel.spi.DataTypeTransformer;
+import org.apache.camel.spi.Transformer;
+
+/**
+ * Data type transformer converts AWS Cloudtrail lookup events response to 
CloudEvent v1_0 data format. The data type
+ * sets Camel specific CloudEvent headers with values extracted from AWS 
Cloudtrail lookup events response.
+ */
+@DataTypeTransformer(name = "aws-cloudtrail:application-cloudevents")
+public class CloudtrailCloudEventDataTypeTransformer extends Transformer {
+
+@Override
+public void transform(Message message, DataType fromType, DataType toType) 
{
+final Map headers = message.getHeaders();
+
+CloudEvent cloudEvent = CloudEvents.v1_0;
+headers.putIfAbsent(CloudEvent.CAMEL_CLOUD_EVENT_ID, 
message.getExchange().getExchangeId());
+headers.putIfAbsent(CloudEvent.CAMEL_CLOUD_EVENT_VERSION, 
cloudEvent.version());
+headers.put(CloudEvent.CAMEL_CLOUD_EVENT_TYPE, 
"org.apache.camel.event.aws.cloudtrail.lookupEvents");
+
+if 
(message.getHeaders().containsKey(CloudtrailConstants.EVENT_SOURCE)) {
+headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SOURCE,
+"aws.cloudtrail.event.source." + 
message.getHeader(CloudtrailConstants.EVENT_SOURCE, String.class));
+}
+
+headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SUBJECT, 
message.getHeader(CloudtrailConstants.EVENT_ID, String.class)

Re: [PR] CAMEL-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


oscerd commented on PR #13108:
URL: https://github.com/apache/camel/pull/13108#issuecomment-1941945028

   /component-test aws


-- 
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-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


oscerd commented on PR #13108:
URL: https://github.com/apache/camel/pull/13108#issuecomment-1941945970

   /component-test aws


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



[PR] CAMEL-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


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

   # Description
   
   
   
   # 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 have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


-- 
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-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


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

   :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-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


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

   :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



Re: [PR] CAMEL-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


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

   :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-20415 - AWS Cloudtrail CloudEvent transformer [camel]

2024-02-13 Thread via GitHub


oscerd merged PR #13108:
URL: https://github.com/apache/camel/pull/13108


-- 
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-20415 - AWS Cloudtrail CloudEvent transformer (#13108)

2024-02-13 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 8834df6071b CAMEL-20415 - AWS Cloudtrail CloudEvent transformer 
(#13108)
8834df6071b is described below

commit 8834df6071b12bdd6ac1f1f6fe15dd996b7339b6
Author: Andrea Cosentino 
AuthorDate: Tue Feb 13 17:42:03 2024 +0100

CAMEL-20415 - AWS Cloudtrail CloudEvent transformer (#13108)

Signed-off-by: Andrea Cosentino 
---
 components/camel-aws/camel-aws-cloudtrail/pom.xml  |  8 
 .../aws-cloudtrail-application-cloudevents |  2 +
 .../CloudtrailCloudEventDataTypeTransformer.java   | 55 ++
 3 files changed, 65 insertions(+)

diff --git a/components/camel-aws/camel-aws-cloudtrail/pom.xml 
b/components/camel-aws/camel-aws-cloudtrail/pom.xml
index 1d45a991ad5..b6420014c97 100644
--- a/components/camel-aws/camel-aws-cloudtrail/pom.xml
+++ b/components/camel-aws/camel-aws-cloudtrail/pom.xml
@@ -55,6 +55,14 @@
 camel-health
 
 
+
+
+org.apache.camel
+camel-cloudevents
+provided
+true
+
+
 
 
 org.apache.camel
diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
 
b/components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
new file mode 100644
index 000..adcb3ce3ca4
--- /dev/null
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
@@ -0,0 +1,2 @@
+# Generated by camel build tools - do NOT edit this file!
+class=org.apache.camel.component.aws.cloudtrail.transform.CloudtrailCloudEventDataTypeTransformer
diff --git 
a/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java
 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java
new file mode 100644
index 000..dbfc15a999f
--- /dev/null
+++ 
b/components/camel-aws/camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java
@@ -0,0 +1,55 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.camel.component.aws.cloudtrail.transform;
+
+import java.util.Map;
+
+import org.apache.camel.Message;
+import org.apache.camel.component.aws.cloudtrail.CloudtrailConstants;
+import org.apache.camel.component.cloudevents.CloudEvent;
+import org.apache.camel.component.cloudevents.CloudEvents;
+import org.apache.camel.spi.DataType;
+import org.apache.camel.spi.DataTypeTransformer;
+import org.apache.camel.spi.Transformer;
+
+/**
+ * Data type transformer converts AWS Cloudtrail lookup events response to 
CloudEvent v1_0 data format. The data type
+ * sets Camel specific CloudEvent headers with values extracted from AWS 
Cloudtrail lookup events response.
+ */
+@DataTypeTransformer(name = "aws-cloudtrail:application-cloudevents")
+public class CloudtrailCloudEventDataTypeTransformer extends Transformer {
+
+@Override
+public void transform(Message message, DataType fromType, DataType toType) 
{
+final Map headers = message.getHeaders();
+
+CloudEvent cloudEvent = CloudEvents.v1_0;
+headers.putIfAbsent(CloudEvent.CAMEL_CLOUD_EVENT_ID, 
message.getExchange().getExchangeId());
+headers.putIfAbsent(CloudEvent.CAMEL_CLOUD_EVENT_VERSION, 
cloudEvent.version());
+headers.put(CloudEvent.CAMEL_CLOUD_EVENT_TYPE, 
"org.apache.camel.event.aws.cloudtrail.lookupEvents");
+
+if 
(message.getHeaders().containsKey(CloudtrailConstants.EVENT_SOURCE)) {
+headers.put(CloudEvent.CAMEL_CLOUD_EVENT_SOURCE,
+"aws.cloudtrail.event.source." + 
message.getHeade

Re: [PR] Bump word-wrap from 1.2.3 to 1.2.5 [camel-website]

2024-02-13 Thread via GitHub


zregvart commented on PR #1125:
URL: https://github.com/apache/camel-website/pull/1125#issuecomment-1941983473

   @dependabot rebase


-- 
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 (98e33aa1784 -> 8834df6071b)

2024-02-13 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 98e33aa1784 Camel-AWS2-SES: Removed useles variables
 add 8834df6071b CAMEL-20415 - AWS Cloudtrail CloudEvent transformer 
(#13108)

No new revisions were added by this update.

Summary of changes:
 components/camel-aws/camel-aws-cloudtrail/pom.xml  |  8 
 .../aws-cloudtrail-application-cloudevents |  2 ++
 .../CloudtrailCloudEventDataTypeTransformer.java}  | 22 +++---
 3 files changed, 21 insertions(+), 11 deletions(-)
 create mode 100644 
components/camel-aws/camel-aws-cloudtrail/src/generated/resources/META-INF/services/org/apache/camel/transformer/aws-cloudtrail-application-cloudevents
 copy 
components/camel-aws/{camel-aws2-s3/src/main/java/org/apache/camel/component/aws2/s3/transform/AWS2S3CloudEventDataTypeTransformer.java
 => 
camel-aws-cloudtrail/src/main/java/org/apache/camel/component/aws/cloudtrail/transform/CloudtrailCloudEventDataTypeTransformer.java}
 (69%)



(camel-karavan) branch main updated: Fix error in container has no port

2024-02-13 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


The following commit(s) were added to refs/heads/main by this push:
 new 15211937 Fix error in container has no port
15211937 is described below

commit 152119372781fe015b2c41807a53157efb8d3357
Author: Marat Gubaidullin 
AuthorDate: Tue Feb 13 12:13:16 2024 -0500

Fix error in container has no port
---
 .../main/java/org/apache/camel/karavan/api/InfrastructureResource.java  | 2 +-
 .../karavan-app/src/main/webui/src/containers/ContainerTableRow.tsx | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/InfrastructureResource.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/InfrastructureResource.java
index d8b407f4..a456120e 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/InfrastructureResource.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/InfrastructureResource.java
@@ -140,7 +140,7 @@ public class InfrastructureResource {
 return 
Response.ok(kubernetesService.getServices(kubernetesService.getNamespace())).build();
 } else {
 List list = 
karavanCacheService.getContainerStatuses(environment).stream()
-.filter(ci -> !ci.getPorts().isEmpty())
+.filter(ci -> ci.getPorts() != null && 
!ci.getPorts().isEmpty())
 .map(ci -> ci.getPorts().stream().map(i -> 
ci.getContainerName() + "|" + ci.getContainerName() + ":" + 
i.getPrivatePort()).collect(Collectors.toList()))
 .flatMap(List::stream).collect(Collectors.toList());
 return Response.ok(list).build();
diff --git 
a/karavan-web/karavan-app/src/main/webui/src/containers/ContainerTableRow.tsx 
b/karavan-web/karavan-app/src/main/webui/src/containers/ContainerTableRow.tsx
index 391b9f65..aaf6af7a 100644
--- 
a/karavan-web/karavan-app/src/main/webui/src/containers/ContainerTableRow.tsx
+++ 
b/karavan-web/karavan-app/src/main/webui/src/containers/ContainerTableRow.tsx
@@ -178,7 +178,7 @@ export function ContainerTableRow(props: Props) {
 
 
 }
-{ports !== undefined && ports.length > 0 && 
+{ports !== undefined && ports?.length > 0 && 
 
 Ports
 



Re: [PR] CAMEL-20404: Create a component for Qdrant Vector Database [camel]

2024-02-13 Thread via GitHub


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

   :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



[PR] CAMEL-20404: Create a component for Qdrant Vector Database [camel]

2024-02-13 Thread via GitHub


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

   # 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 have run `mvn clean install -DskipTests` locally and I have 
committed all auto-generated changes
   
   
   
   


-- 
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-20404: Create a component for Qdrant Vector Database [camel]

2024-02-13 Thread via GitHub


lburgazzoli commented on PR #13109:
URL: https://github.com/apache/camel/pull/13109#issuecomment-1942090292

   This is a test PR to check an odd behavior where a number of file are 
slightly amended (import order, java doc) hwne building locally  


-- 
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] Project and file deletion should have project and filename in confirmation modal [camel-karavan]

2024-02-13 Thread via GitHub


mgubaidullin closed issue #1122: Project and file deletion should have project 
and filename in confirmation modal
URL: https://github.com/apache/camel-karavan/issues/1122


-- 
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-karavan) branch main updated (15211937 -> 88de999f)

2024-02-13 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 15211937 Fix error in container has no port
 new 08b11db4 Docker statistic collection issue fixed
 new 88de999f Fix #1122

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:
 .../apache/camel/karavan/docker/DockerService.java |  7 +
 .../karavan/service/ContainerStatusService.java| 16 +--
 .../webui/src/project/files/DeleteFileModal.tsx| 15 +++---
 .../main/webui/src/projects/DeleteProjectModal.tsx | 32 ++
 4 files changed, 52 insertions(+), 18 deletions(-)



(camel-karavan) 02/02: Fix #1122

2024-02-13 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 88de999f0dc0abd51d1f094d74ce847efb44458d
Author: Marat Gubaidullin 
AuthorDate: Tue Feb 13 13:00:49 2024 -0500

Fix #1122
---
 .../webui/src/project/files/DeleteFileModal.tsx| 15 +++---
 .../main/webui/src/projects/DeleteProjectModal.tsx | 32 ++
 2 files changed, 32 insertions(+), 15 deletions(-)

diff --git 
a/karavan-web/karavan-app/src/main/webui/src/project/files/DeleteFileModal.tsx 
b/karavan-web/karavan-app/src/main/webui/src/project/files/DeleteFileModal.tsx
index 05635cee..c89ba0ad 100644
--- 
a/karavan-web/karavan-app/src/main/webui/src/project/files/DeleteFileModal.tsx
+++ 
b/karavan-web/karavan-app/src/main/webui/src/project/files/DeleteFileModal.tsx
@@ -17,9 +17,9 @@
 
 import React from 'react';
 import {
-Button,
+Button, HelperText, HelperTextItem,
 Modal,
-ModalVariant,
+ModalVariant, Text, TextContent, TextVariants,
 } from '@patternfly/react-core';
 import '../../designer/karavan.css';
 import {useFileStore} from "../../api/ProjectStore";
@@ -46,12 +46,19 @@ export function DeleteFileModal () {
 isOpen={isOpen}
 onClose={() => closeModal()}
 actions={[
- 
confirmAndCloseModal()}>Delete,
+ 
confirmAndCloseModal()}>Delete,
  closeModal()}>Cancel
 ]}
 onEscapePress={e => closeModal()}>
-{"Are you sure you want to delete file " + file?.name + 
"?"}
+
+Delete file 
{file?.name} ?
+
+
+File will be also deleted from git 
repository
+
+
+
 
 )
 }
\ No newline at end of file
diff --git 
a/karavan-web/karavan-app/src/main/webui/src/projects/DeleteProjectModal.tsx 
b/karavan-web/karavan-app/src/main/webui/src/projects/DeleteProjectModal.tsx
index 574486cb..ce80c9f2 100644
--- a/karavan-web/karavan-app/src/main/webui/src/projects/DeleteProjectModal.tsx
+++ b/karavan-web/karavan-app/src/main/webui/src/projects/DeleteProjectModal.tsx
@@ -17,13 +17,14 @@
 
 import React, {useState} from 'react';
 import {
-Button,
+Button, HelperText, HelperTextItem,
 Modal,
-ModalVariant, Switch,
+ModalVariant, Switch, Text, TextContent, TextVariants,
 } from '@patternfly/react-core';
 import '../designer/karavan.css';
 import {useProjectStore} from "../api/ProjectStore";
 import {ProjectService} from "../api/ProjectService";
+import ExclamationIcon from 
'@patternfly/react-icons/dist/esm/icons/exclamation-icon';
 
 export function DeleteProjectModal () {
 
@@ -42,23 +43,32 @@ export function DeleteProjectModal () {
 const isOpen= operation === "delete";
 return (
  closeModal()}
 actions={[
- 
confirmAndCloseModal()}>Delete,
+ 
confirmAndCloseModal()}>Delete,
  closeModal()}>Cancel
 ]}
 onEscapePress={e => closeModal()}>
-{/*{"Are you sure you want to delete the project " + 
project?.projectId + "?"}*/}
- setDeleteContainers(checked)}
-isReversed
-/>
+
+Delete project 
{project?.projectId} ?
+
+
+Project will be also deleted from git 
repository
+
+
+
+
+
+ setDeleteContainers(checked)}
+isReversed
+/>
 
 )
 }
\ No newline at end of file



(camel-karavan) 01/02: Docker statistic collection issue fixed

2024-02-13 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 08b11db48d25c0a3d6876a25b8bce609758a83cf
Author: Marat Gubaidullin 
AuthorDate: Tue Feb 13 12:37:43 2024 -0500

Docker statistic collection issue fixed
---
 .../org/apache/camel/karavan/docker/DockerService.java   |  7 +++
 .../camel/karavan/service/ContainerStatusService.java| 16 +---
 2 files changed, 20 insertions(+), 3 deletions(-)

diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerService.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerService.java
index 776e5f58..7b8efdc4 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerService.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/docker/DockerService.java
@@ -117,6 +117,13 @@ public class DockerService extends DockerServiceUtils {
 return result;
 }
 
+public ContainerStatus collectContainerStatistics(ContainerStatus 
containerStatus) {
+Container container = 
getContainerByName(containerStatus.getContainerName());
+Statistics stats = getContainerStats(container.getId());
+updateStatistics(containerStatus, stats);
+return containerStatus;
+}
+
 public void startListeners() {
 getDockerClient().eventsCmd().exec(dockerEventListener);
 }
diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ContainerStatusService.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ContainerStatusService.java
index e8d34d20..1f54a52e 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ContainerStatusService.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/service/ContainerStatusService.java
@@ -38,6 +38,7 @@ import java.util.Objects;
 public class ContainerStatusService {
 
 public static final String CONTAINER_STATUS = "CONTAINER_STATUS";
+public static final String CONTAINER_STATISTIC = "CONTAINER_STATISTIC";
 public static final String CONTAINER_DELETED = "CONTAINER_DELETED";
 private static final Logger LOGGER = 
Logger.getLogger(ContainerStatusService.class.getName());
 @ConfigProperty(name = "karavan.environment")
@@ -55,13 +56,22 @@ public class ContainerStatusService {
 @Scheduled(every = "{karavan.container.statistics.interval}", 
concurrentExecution = Scheduled.ConcurrentExecution.SKIP)
 void collectContainersStatistics() {
 if (karavanCacheService.isReady() && !ConfigService.inKubernetes()) {
-List statusesInDocker = 
dockerService.collectContainersStatistics();
+List statusesInDocker = 
dockerService.collectContainersStatuses();
 statusesInDocker.forEach(containerStatus -> {
-eventBus.publish(ContainerStatusService.CONTAINER_STATUS, 
JsonObject.mapFrom(containerStatus));
+eventBus.publish(ContainerStatusService.CONTAINER_STATISTIC, 
JsonObject.mapFrom(containerStatus));
 });
 }
 }
 
+@ConsumeEvent(value = CONTAINER_STATISTIC, blocking = true, ordered = 
false)
+void collectContainersStatistics(JsonObject data) {
+if (karavanCacheService.isReady()) {
+ContainerStatus status = data.mapTo(ContainerStatus.class);
+ContainerStatus newStatus = 
dockerService.collectContainerStatistics(status);
+eventBus.publish(ContainerStatusService.CONTAINER_STATUS, 
JsonObject.mapFrom(newStatus));
+}
+}
+
 @Scheduled(every = "{karavan.container.status.interval}", 
concurrentExecution = Scheduled.ConcurrentExecution.SKIP)
 void collectContainersStatuses() {
 if (karavanCacheService.isReady() && !ConfigService.inKubernetes()) {
@@ -126,7 +136,7 @@ public class ContainerStatusService {
 return;
 }
 }
-if (newStatus.getCpuInfo() == null || 
newStatus.getCpuInfo().isEmpty()) {
+if (newStatus.getCpuInfo() == null || 
newStatus.getCpuInfo().isBlank()) {
 newStatus.setCpuInfo(oldStatus.getCpuInfo());
 newStatus.setMemoryInfo(oldStatus.getMemoryInfo());
 }



Re: [I] Rework the scripts as maven plugin [camel-kamelets]

2024-02-13 Thread via GitHub


oscerd commented on issue #1888:
URL: 
https://github.com/apache/camel-kamelets/issues/1888#issuecomment-1942113991

   For the validation there is already a validate-maven-plugin: the aim is to 
check if the Camel catalog shows the parameters we use in the Kamelet 
templates. If not, it will fail.


-- 
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] Request for RabbitMQ Sink Kamelet [camel-kamelets]

2024-02-13 Thread via GitHub


oscerd closed issue #1228: Request for RabbitMQ Sink Kamelet
URL: https://github.com/apache/camel-kamelets/issues/1228


-- 
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] Request for RabbitMQ Sink Kamelet [camel-kamelets]

2024-02-13 Thread via GitHub


oscerd commented on issue #1228:
URL: 
https://github.com/apache/camel-kamelets/issues/1228#issuecomment-1942118683

   We are doing the new Sink Kamelet in #1889 


-- 
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-20405] renamed classes from *IntegrationTest.java to *IT.java [camel]

2024-02-13 Thread via GitHub


cziesman commented on PR #13082:
URL: https://github.com/apache/camel/pull/13082#issuecomment-1942136931

   I looked at the POM for the Salesforce component and the incremental build 
log. I don't think the name change was responsible for the build failures. I 
think that any code change would have caused the integration tests to fail, as 
they are executed automatically as part of running 'mvn verify' regardless of 
how they are named, because there is an explicit ' element in the 
'failsafe` configuration.


-- 
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-karavan) branch main updated (88de999f -> e73aa4d1)

2024-02-13 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 88de999f Fix #1122
 new fa895387 Start Hazelcast in blocking thread
 new e73aa4d1 Start Hazelcast in blocking thread

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/karavan/api/ContainerResource.java   |  4 +--
 .../apache/camel/karavan/api/DevModeResource.java  |  4 +--
 .../camel/karavan/api/InfrastructureResource.java  |  4 +--
 .../apache/camel/karavan/api/KameletResources.java |  4 +--
 .../camel/karavan/api/ProjectFileResource.java |  4 +--
 .../camel/karavan/api/ProjectGitResource.java  |  2 --
 .../apache/camel/karavan/api/ProjectResource.java  |  8 +++---
 .../apache/camel/karavan/api/StatusResource.java   |  6 ++---
 .../camel/karavan/cache/KaravanCacheService.java   | 30 +-
 .../org/apache/camel/karavan/code/CodeService.java |  6 ++---
 .../camel/karavan/code/DockerComposeConverter.java |  4 +--
 .../camel/karavan/docker/DockerEventListener.java  |  2 +-
 .../camel/karavan/docker/DockerForGitea.java   |  2 +-
 .../camel/karavan/docker/DockerForKaravan.java |  4 +--
 .../camel/karavan/docker/DockerForRegistry.java|  2 +-
 .../apache/camel/karavan/docker/DockerService.java |  4 +--
 .../camel/karavan/docker/DockerServiceUtils.java   |  6 ++---
 .../org/apache/camel/karavan/git/GitService.java   |  4 +--
 .../karavan/kubernetes/DeploymentEventHandler.java |  2 +-
 .../karavan/kubernetes/KubernetesService.java  |  4 +--
 .../camel/karavan/kubernetes/PodEventHandler.java  |  2 +-
 .../karavan/kubernetes/ServiceEventHandler.java|  2 +-
 .../karavan/{cache => }/model/CamelStatus.java |  2 +-
 .../{cache => }/model/CamelStatusValue.java|  2 +-
 .../karavan/{cache => }/model/ContainerPort.java   |  2 +-
 .../karavan/{cache => }/model/ContainerStatus.java |  2 +-
 .../{cache => }/model/DeploymentStatus.java|  2 +-
 .../karavan/{code => }/model/DockerCompose.java|  3 +--
 .../{code => }/model/DockerComposeHealthCheck.java |  2 +-
 .../{code => }/model/DockerComposeNetwork.java |  2 +-
 .../{code => }/model/DockerComposeService.java |  2 +-
 .../karavan/{cache => }/model/GroupedKey.java  |  2 +-
 .../camel/karavan/{cache => }/model/Project.java   |  2 +-
 .../karavan/{cache => }/model/ProjectFile.java |  2 +-
 .../karavan/{cache => }/model/ServiceStatus.java   |  2 +-
 .../apache/camel/karavan/service/CamelService.java |  6 ++---
 .../karavan/service/ContainerStatusService.java|  2 +-
 .../camel/karavan/service/ProjectService.java  | 10 
 .../project/ProjectFileCreateValidator.java|  2 +-
 .../validation/project/ProjectModifyValidator.java |  2 +-
 40 files changed, 81 insertions(+), 78 deletions(-)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/CamelStatus.java (97%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/CamelStatusValue.java (97%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/ContainerPort.java (97%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/ContainerStatus.java (99%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/DeploymentStatus.java (98%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{code => 
}/model/DockerCompose.java (97%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{code => 
}/model/DockerComposeHealthCheck.java (97%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{code => 
}/model/DockerComposeNetwork.java (96%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{code => 
}/model/DockerComposeService.java (99%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/GroupedKey.java (98%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/Project.java (98%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/ProjectFile.java (97%)
 rename karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/{cache 
=> }/model/ServiceStatus.java (98%)



(camel-karavan) 01/02: Start Hazelcast in blocking thread

2024-02-13 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 fa89538733e1febb27df3daed3486386e8a09d12
Author: Marat Gubaidullin 
AuthorDate: Tue Feb 13 13:22:57 2024 -0500

Start Hazelcast in blocking thread
---
 .../camel/karavan/api/ContainerResource.java   |  4 +--
 .../apache/camel/karavan/api/DevModeResource.java  |  4 +--
 .../camel/karavan/api/InfrastructureResource.java  |  4 +--
 .../apache/camel/karavan/api/KameletResources.java |  4 +--
 .../camel/karavan/api/ProjectFileResource.java |  4 +--
 .../camel/karavan/api/ProjectGitResource.java  |  2 --
 .../apache/camel/karavan/api/ProjectResource.java  |  8 +++---
 .../apache/camel/karavan/api/StatusResource.java   |  6 ++---
 .../camel/karavan/cache/KaravanCacheService.java   | 30 +-
 .../org/apache/camel/karavan/code/CodeService.java |  6 ++---
 .../camel/karavan/code/DockerComposeConverter.java |  4 +--
 .../camel/karavan/docker/DockerEventListener.java  |  2 +-
 .../camel/karavan/docker/DockerForGitea.java   |  2 +-
 .../camel/karavan/docker/DockerForKaravan.java |  4 +--
 .../camel/karavan/docker/DockerForRegistry.java|  2 +-
 .../apache/camel/karavan/docker/DockerService.java |  4 +--
 .../camel/karavan/docker/DockerServiceUtils.java   |  6 ++---
 .../org/apache/camel/karavan/git/GitService.java   |  4 +--
 .../karavan/kubernetes/DeploymentEventHandler.java |  2 +-
 .../karavan/kubernetes/KubernetesService.java  |  4 +--
 .../camel/karavan/kubernetes/PodEventHandler.java  |  2 +-
 .../karavan/kubernetes/ServiceEventHandler.java|  2 +-
 .../karavan/{cache => }/model/CamelStatus.java |  2 +-
 .../{cache => }/model/CamelStatusValue.java|  2 +-
 .../karavan/{cache => }/model/ContainerPort.java   |  2 +-
 .../karavan/{cache => }/model/ContainerStatus.java |  2 +-
 .../{cache => }/model/DeploymentStatus.java|  2 +-
 .../karavan/{code => }/model/DockerCompose.java|  3 +--
 .../{code => }/model/DockerComposeHealthCheck.java |  2 +-
 .../{code => }/model/DockerComposeNetwork.java |  2 +-
 .../{code => }/model/DockerComposeService.java |  2 +-
 .../karavan/{cache => }/model/GroupedKey.java  |  2 +-
 .../camel/karavan/{cache => }/model/Project.java   |  2 +-
 .../karavan/{cache => }/model/ProjectFile.java |  2 +-
 .../karavan/{cache => }/model/ServiceStatus.java   |  2 +-
 .../apache/camel/karavan/service/CamelService.java |  6 ++---
 .../karavan/service/ContainerStatusService.java|  2 +-
 .../camel/karavan/service/ProjectService.java  | 10 
 .../project/ProjectFileCreateValidator.java|  2 +-
 .../validation/project/ProjectModifyValidator.java |  2 +-
 40 files changed, 81 insertions(+), 78 deletions(-)

diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/ContainerResource.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/ContainerResource.java
index 1ad6fd5b..5b7e8b3a 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/ContainerResource.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/ContainerResource.java
@@ -25,9 +25,9 @@ import jakarta.ws.rs.*;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
 import org.apache.camel.karavan.cache.KaravanCacheService;
-import org.apache.camel.karavan.cache.model.ContainerStatus;
+import org.apache.camel.karavan.model.ContainerStatus;
 import org.apache.camel.karavan.code.DockerComposeConverter;
-import org.apache.camel.karavan.code.model.DockerComposeService;
+import org.apache.camel.karavan.model.DockerComposeService;
 import org.apache.camel.karavan.docker.DockerService;
 import org.apache.camel.karavan.kubernetes.KubernetesService;
 import org.apache.camel.karavan.service.ConfigService;
diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/DevModeResource.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/DevModeResource.java
index 226cc894..ecde5aae 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/DevModeResource.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/DevModeResource.java
@@ -23,8 +23,8 @@ import jakarta.ws.rs.*;
 import jakarta.ws.rs.core.MediaType;
 import jakarta.ws.rs.core.Response;
 import org.apache.camel.karavan.cache.KaravanCacheService;
-import org.apache.camel.karavan.cache.model.ContainerStatus;
-import org.apache.camel.karavan.cache.model.Project;
+import org.apache.camel.karavan.model.ContainerStatus;
+import org.apache.camel.karavan.model.Project;
 import org.apache.camel.karavan.docker.DockerService;
 import org.apache.camel.karavan.kubernetes.KubernetesService;
 import org.apache.camel.karavan.service.CamelService;
diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/api/Infras

(camel-karavan) 02/02: Start Hazelcast in blocking thread

2024-02-13 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 e73aa4d1a9b3256710b7a1243da49ab529080794
Author: Marat Gubaidullin 
AuthorDate: Tue Feb 13 13:23:05 2024 -0500

Start Hazelcast in blocking thread
---
 .../main/java/org/apache/camel/karavan/cache/KaravanCacheService.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/cache/KaravanCacheService.java
 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/cache/KaravanCacheService.java
index ba320ee2..7c35bec6 100644
--- 
a/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/cache/KaravanCacheService.java
+++ 
b/karavan-web/karavan-app/src/main/java/org/apache/camel/karavan/cache/KaravanCacheService.java
@@ -62,7 +62,7 @@ public class KaravanCacheService {
 
 private static final String DEFAULT_ENVIRONMENT = "dev";
 
-@ConsumeEvent(value = START_SERVICES, blocking = true, ordered = true)
+@ConsumeEvent(value = START_SERVICES, blocking = true)
 void start(String data) {
 LOGGER.info("KaravanCacheService is starting");
 Config config = new ClasspathYamlConfig("hazelcast.yaml");



Re: [I] Rework the scripts as maven plugin [camel-kamelets]

2024-02-13 Thread via GitHub


claudio4j commented on issue #1888:
URL: 
https://github.com/apache/camel-kamelets/issues/1888#issuecomment-1942155952

   The intention is to move the go code to the existing maven plugin and create 
a new generator mojo. Because today, we have to run the maven plugin and the go 
scripts when there are changes in the kamelets.


-- 
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-20253: camel-jbang - Add support for jolokia 2.x [camel-examples]

2024-02-13 Thread via GitHub


davsclaus merged PR #133:
URL: https://github.com/apache/camel-examples/pull/133


-- 
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-examples) branch main updated: CAMEL-20253: camel-jbang - Add support for jolokia 2.x (#133)

2024-02-13 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-examples.git


The following commit(s) were added to refs/heads/main by this push:
 new f50a4326 CAMEL-20253: camel-jbang - Add support for jolokia 2.x (#133)
f50a4326 is described below

commit f50a4326aa764e2a0339f25f11ec25d4fb5c47af
Author: Ivan Kulaga 
AuthorDate: Wed Feb 14 00:58:41 2024 +0600

CAMEL-20253: camel-jbang - Add support for jolokia 2.x (#133)

* CAMEL-20253: camel-jbang - Add support for jolokia 2.x
enabled jolokia in platform-http-main

* for now jolokia does not exist as a separate plugin
---
 main/README.adoc   | 2 ++
 main/src/main/resources/application.properties | 1 +
 2 files changed, 3 insertions(+)

diff --git a/main/README.adoc b/main/README.adoc
index 0dc939f4..12efe460 100644
--- a/main/README.adoc
+++ b/main/README.adoc
@@ -50,6 +50,8 @@ And then use the CLI to see status:
 
 This example comes with embedded developer console that is accessible via 
`http://localhost:8080/q/dev`.
 You can also check status of health-check via `http://localhost:8080/q/health`.
+You can also access https://jolokia.org/[jolokia] api via 
`http://localhost:8080/q/jolokia`.
+This gives you access to basic JMX operations. For example, to query 
https://docs.oracle.com/javase/8/docs/api/java/lang/management/MemoryMXBean.html[MemoryMBean],
 use 
`http://localhost:8080/q/jolokia/read/java.lang:type=Memory/HeapMemoryUsage/used`.
 
 === How to configure for Camel Textual Route debugging
 
diff --git a/main/src/main/resources/application.properties 
b/main/src/main/resources/application.properties
index 7bcf908e..befa5da8 100644
--- a/main/src/main/resources/application.properties
+++ b/main/src/main/resources/application.properties
@@ -27,6 +27,7 @@ camel.server.enabled = true
 camel.context.dev-console = true
 camel.server.dev-console-enabled = true
 camel.server.health-check-enabled = true
+camel.server.jolokia-enabled = true
 
 # application properties
 hi = Hello



Re: [PR] CAMEL-20410: documentation fixes for camel-azure-eventhubs [camel]

2024-02-13 Thread via GitHub


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


-- 
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-20410: documentation fixes for camel-azure-eventhubs (#13106)

2024-02-13 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 3793981daa3 CAMEL-20410: documentation fixes for camel-azure-eventhubs 
(#13106)
3793981daa3 is described below

commit 3793981daa32567a25a2aa1628a986658f863171
Author: Otavio Rodolfo Piske 
AuthorDate: Tue Feb 13 19:59:13 2024 +0100

CAMEL-20410: documentation fixes for camel-azure-eventhubs (#13106)

* CAMEL-20410: documentation fixes for camel-azure-eventhubs

- Fixed grammar and typos
- Fixed punctuation
- Added and/or fixed links

* CAMEL-20410: documentation fixes for camel-azure-files

- Fixed grammar and typos
- Fixed punctuation
- Added and/or fixed links
---
 .../src/main/docs/azure-eventhubs-component.adoc   | 35 +++--
 .../src/main/docs/azure-files-component.adoc   | 58 +++---
 2 files changed, 49 insertions(+), 44 deletions(-)

diff --git 
a/components/camel-azure/camel-azure-eventhubs/src/main/docs/azure-eventhubs-component.adoc
 
b/components/camel-azure/camel-azure-eventhubs/src/main/docs/azure-eventhubs-component.adoc
index 4922aa632c7..921ad086fb6 100644
--- 
a/components/camel-azure/camel-azure-eventhubs/src/main/docs/azure-eventhubs-component.adoc
+++ 
b/components/camel-azure/camel-azure-eventhubs/src/main/docs/azure-eventhubs-component.adoc
@@ -18,7 +18,7 @@
 The Azure Event Hubs used to integrate 
https://azure.microsoft.com/en-us/services/event-hubs/[Azure Event Hubs] using 
https://en.wikipedia.org/wiki/Advanced_Message_Queuing_Protocol[AMQP protocol].
 Azure EventHubs is a highly scalable publish-subscribe service that can ingest 
millions of events per second and stream them to multiple consumers.
 
-NOTE: Besides AMQP protocol support, Event Hubs as well supports Kafka and 
HTTPS protocols. Therefore, you can use as well 
xref:components::kafka-component.adoc[Camel Kafka] component to produce and 
consume to Azure Event Hubs. You can lean more 
https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-quickstart-kafka-enabled-event-hubs[here].
+NOTE: Besides AMQP protocol support, Event Hubs as well supports Kafka and 
HTTPS protocols. Therefore, you can also use the 
xref:components::kafka-component.adoc[Camel Kafka] component to produce and 
consume to Azure Event Hubs. You can lean more 
https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-quickstart-kafka-enabled-event-hubs[here].
 
 
 Prerequisites
@@ -67,37 +67,41 @@ include::partial$component-endpoint-options.adoc[]
 == Authentication Information
 
 You have three different Credential Types: AZURE_IDENTITY, TOKEN_CREDENTIAL 
and CONNECTION_STRING. You can also provide a client instance yourself.
-To use this component, you have 3 options in order to provide the required 
Azure authentication information:
+To use this component, you have three options to provide the required Azure 
authentication information:
+
+*CONNECTION_STRING*:
 
-CONNECTION_STRING:
 - Provide `sharedAccessName` and `sharedAccessKey` for your Azure Event Hubs 
account. The sharedAccessKey can
 be generated through your Event Hubs Azure portal.
 - Provide `connectionString` string, if you provide the connection string, you 
don't supply `namespace`, `eventHubName`, `sharedAccessKey` and 
`sharedAccessName`
 as these data already included in the `connectionString`, therefore is the 
simplest option to get started. Learn more 
https://docs.microsoft.com/en-us/azure/event-hubs/event-hubs-get-connection-string[here]
 on how to generate the connection string.
 
-TOKEN_CREDENTIAL:
-- Provide an implementation of `com.azure.core.credential.TokenCredential` 
into the Camel's Registry, e.g. using the 
`com.azure.identity.DefaultAzureCredentialBuilder().build();` API.
+*TOKEN_CREDENTIAL*:
+
+- Provide an implementation of `com.azure.core.credential.TokenCredential` 
into the Camel's Registry, e.g., using the 
`com.azure.identity.DefaultAzureCredentialBuilder().build();` API.
 See the documentation 
https://docs.microsoft.com/en-us/azure/active-directory/authentication/overview-authentication[here
 about Azure-AD authentication].
 
 AZURE_IDENTITY:
 - This will use `com.azure.identity.DefaultAzureCredentialBuilder().build();` 
instance. This will follow the Default Azure Credential Chain.
 See the documentation 
https://docs.microsoft.com/en-us/azure/active-directory/authentication/overview-authentication[here
 about Azure-AD authentication].
 
-Client instance:
+*Client instance*:
+
 - Provide a 
https://docs.microsoft.com/en-us/java/api/com.azure.messaging.eventhubs.eventhubproducerasyncclient?view=azure-java-stable[EventHubProducerAsyncClient]
 instance which can be
 provided into `producerAsyncClient`. However, this is *only possible for camel 
producer*, for the camel consumer, is not possible to inject the client due to 
so

(camel-website) branch new440 updated (e7d203a8 -> 2125e37a)

2024-02-13 Thread davsclaus
This is an automated email from the ASF dual-hosted git repository.

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


from e7d203a8 Added notes about throttle EIP and Kafka improvements
 add 2125e37a Update content/blog/2024/02/camel44-whatsnew/index.md

No new revisions were added by this update.

Summary of changes:
 content/blog/2024/02/camel44-whatsnew/index.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



Re: [PR] Whats new in Camel 4.4 WIP [camel-website]

2024-02-13 Thread via GitHub


davsclaus commented on code in PR #1139:
URL: https://github.com/apache/camel-website/pull/1139#discussion_r1488437160


##
content/blog/2024/02/camel44-whatsnew/index.md:
##
@@ -0,0 +1,169 @@
+---
+title: "Apache Camel 4.4 What's New"
+date: 2024-02-19
+authors: [davsclaus]
+categories: ["Releases"]
+preview: Details of what we have done in the Camel 4.4 release.
+---
+
+Apache Camel 4.4 (LTS) has just been [released](/blog/2024/02/RELEASE-4.4.0/).
+
+This release introduces a set of new features and noticeable improvements that 
we will cover in this blog post.
+
+## Camel Core
+
+The simple language has been improved with `hash` function, and further 
improved the embedded functions for `jsonpath`, `jq` and `xpath`
+making it easier to grab data from JSon or XML within your simple expression 
or predicates.
+
+We have optimized data formats to avoid converting payload to `byte[]` when 
unmarshalling, but allowing each data format
+to unmarshal the payload _as-is_. 
+
+Added JMX operation to update routes at runtime via XML format (requires 
turning on this feature). This can be

Review Comment:
   its documented in the MBeans operations, and their javadoc. And in general 
in the JMX docs.



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



<    1   2   3   >