You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/10/05 08:41:42 UTC

[camel-kamelets] branch 0.9.x updated (ecbd915f -> 45f97950)

This is an automated email from the ASF dual-hosted git repository.

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


    from ecbd915f 0.9.1
     new 45e9a0d3 Release again 0.9.x
     new 649e1dc3 RabbitMQ Source Kamelet: Add a vhost parameter
     new 45f97950 RabbitMQ Source Kamelet: Add a vhost parameter

The 3 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/rabbitmq-source.kamelet.yaml                               | 6 ++++++
 library/camel-kamelets-bom/pom.xml                                  | 2 +-
 library/camel-kamelets-catalog/pom.xml                              | 2 +-
 library/camel-kamelets-utils/pom.xml                                | 2 +-
 library/camel-kamelets/pom.xml                                      | 2 +-
 .../src/main/resources/kamelets/rabbitmq-source.kamelet.yaml        | 6 ++++++
 library/kamelets-maven-plugin/pom.xml                               | 2 +-
 pom.xml                                                             | 2 +-
 8 files changed, 18 insertions(+), 6 deletions(-)


[camel-kamelets] 03/03: RabbitMQ Source Kamelet: Add a vhost parameter

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 45f979500d2d3bcc60675aa3cfd476c5af7cbd09
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Oct 5 10:36:21 2022 +0200

    RabbitMQ Source Kamelet: Add a vhost parameter
---
 .../src/main/resources/kamelets/rabbitmq-source.kamelet.yaml        | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/library/camel-kamelets/src/main/resources/kamelets/rabbitmq-source.kamelet.yaml b/library/camel-kamelets/src/main/resources/kamelets/rabbitmq-source.kamelet.yaml
index 3b9903dd..1348c6c6 100644
--- a/library/camel-kamelets/src/main/resources/kamelets/rabbitmq-source.kamelet.yaml
+++ b/library/camel-kamelets/src/main/resources/kamelets/rabbitmq-source.kamelet.yaml
@@ -67,6 +67,11 @@ spec:
         title: Queue name
         description: The queue to receive messages from
         type: string
+      vhost:
+        title: Virtual Host
+        description: The vhost for the channel
+        type: string
+        default: "/"
   dependencies:
     - "camel:rabbitmq"
     - "camel:kamelet"
@@ -79,5 +84,6 @@ spec:
         addresses: "{{addresses}}"
         routingKey: "{{?routingKey}}"
         queue: "{{?queue}}"
+        vhost: "{{vhost}}"
       steps:
       - to: "kamelet:sink"


[camel-kamelets] 01/03: Release again 0.9.x

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 45e9a0d31de716bd6660550fd2b1f4cb1a9c63d6
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Oct 5 10:40:24 2022 +0200

    Release again 0.9.x
---
 library/camel-kamelets-bom/pom.xml     | 2 +-
 library/camel-kamelets-catalog/pom.xml | 2 +-
 library/camel-kamelets-utils/pom.xml   | 2 +-
 library/camel-kamelets/pom.xml         | 2 +-
 library/kamelets-maven-plugin/pom.xml  | 2 +-
 pom.xml                                | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/library/camel-kamelets-bom/pom.xml b/library/camel-kamelets-bom/pom.xml
index 77e5bd51..cd587f7b 100644
--- a/library/camel-kamelets-bom/pom.xml
+++ b/library/camel-kamelets-bom/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.kamelets</groupId>
         <artifactId>camel-kamelets-parent</artifactId>
-        <version>0.9.1</version>
+        <version>0.9.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/library/camel-kamelets-catalog/pom.xml b/library/camel-kamelets-catalog/pom.xml
index 573c9203..6476677a 100644
--- a/library/camel-kamelets-catalog/pom.xml
+++ b/library/camel-kamelets-catalog/pom.xml
@@ -35,7 +35,7 @@
     <parent>
         <groupId>org.apache.camel.kamelets</groupId>
         <artifactId>camel-kamelets-parent</artifactId>
-        <version>0.9.1</version>
+        <version>0.9.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/library/camel-kamelets-utils/pom.xml b/library/camel-kamelets-utils/pom.xml
index 5d6eb02b..ea7e6abc 100644
--- a/library/camel-kamelets-utils/pom.xml
+++ b/library/camel-kamelets-utils/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.kamelets</groupId>
         <artifactId>camel-kamelets-parent</artifactId>
-        <version>0.9.1</version>
+        <version>0.9.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/library/camel-kamelets/pom.xml b/library/camel-kamelets/pom.xml
index 07851c0b..38769631 100644
--- a/library/camel-kamelets/pom.xml
+++ b/library/camel-kamelets/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.kamelets</groupId>
         <artifactId>camel-kamelets-parent</artifactId>
-        <version>0.9.1</version>
+        <version>0.9.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/library/kamelets-maven-plugin/pom.xml b/library/kamelets-maven-plugin/pom.xml
index 2bf08ea9..5f4dca18 100644
--- a/library/kamelets-maven-plugin/pom.xml
+++ b/library/kamelets-maven-plugin/pom.xml
@@ -23,7 +23,7 @@
     <parent>
         <groupId>org.apache.camel.kamelets</groupId>
         <artifactId>camel-kamelets-parent</artifactId>
-        <version>0.9.1</version>
+        <version>0.9.1-SNAPSHOT</version>
         <relativePath>../../pom.xml</relativePath>
     </parent>
 
diff --git a/pom.xml b/pom.xml
index 6879c38f..91f135a1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -29,7 +29,7 @@
     <groupId>org.apache.camel.kamelets</groupId>
     <artifactId>camel-kamelets-parent</artifactId>
     <packaging>pom</packaging>
-    <version>0.9.1</version>
+    <version>0.9.1-SNAPSHOT</version>
     <name>Camel Kamelets Parent</name>
     <description>Camel Kamelets Library Parent</description>
 


[camel-kamelets] 02/03: RabbitMQ Source Kamelet: Add a vhost parameter

Posted by ac...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 649e1dc3a9c265dd180811b6911a96f0152e1423
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Oct 5 10:34:27 2022 +0200

    RabbitMQ Source Kamelet: Add a vhost parameter
---
 kamelets/rabbitmq-source.kamelet.yaml | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/kamelets/rabbitmq-source.kamelet.yaml b/kamelets/rabbitmq-source.kamelet.yaml
index 3b9903dd..1348c6c6 100644
--- a/kamelets/rabbitmq-source.kamelet.yaml
+++ b/kamelets/rabbitmq-source.kamelet.yaml
@@ -67,6 +67,11 @@ spec:
         title: Queue name
         description: The queue to receive messages from
         type: string
+      vhost:
+        title: Virtual Host
+        description: The vhost for the channel
+        type: string
+        default: "/"
   dependencies:
     - "camel:rabbitmq"
     - "camel:kamelet"
@@ -79,5 +84,6 @@ spec:
         addresses: "{{addresses}}"
         routingKey: "{{?routingKey}}"
         queue: "{{?queue}}"
+        vhost: "{{vhost}}"
       steps:
       - to: "kamelet:sink"