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/05/03 05:48:03 UTC

[camel] branch main updated (e8a561cb7ce -> f618e153b63)

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

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


    from e8a561cb7ce Sync deps and regen
     new 84e6e365c21 Upgrade JNats to versio 2.14.1
     new aa239e8bdd3 Use latest Nats Image 2.8.1
     new f618e153b63 Sync deps

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:
 camel-dependencies/pom.xml                                              | 2 +-
 parent/pom.xml                                                          | 2 +-
 .../camel/test/infra/nats/services/NatsLocalContainerService.java       | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


[camel] 03/03: Sync deps

Posted by ac...@apache.org.
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

commit f618e153b63af9ca9d51198605675b8cb72f3ac8
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 3 07:47:48 2022 +0200

    Sync deps
---
 camel-dependencies/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-dependencies/pom.xml b/camel-dependencies/pom.xml
index 4fb547654d3..61b2469c46a 100644
--- a/camel-dependencies/pom.xml
+++ b/camel-dependencies/pom.xml
@@ -330,7 +330,7 @@
     <jib-version>0.21.0</jib-version>
     <jira-guava-version>26.0-jre</jira-guava-version>
     <jira-rest-client-api-version>5.2.2</jira-rest-client-api-version>
-    <jnats-version>2.14.0</jnats-version>
+    <jnats-version>2.14.1</jnats-version>
     <jodatime2-version>2.10.11</jodatime2-version>
     <johnzon-version>1.2.17</johnzon-version>
     <jolt-version>0.1.6</jolt-version>


[camel] 01/03: Upgrade JNats to versio 2.14.1

Posted by ac...@apache.org.
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

commit 84e6e365c2106704bbc8b7cb5e5ee970f42f60d4
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 3 07:40:28 2022 +0200

    Upgrade JNats to versio 2.14.1
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 84e259e269e..33e33710c23 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -264,7 +264,7 @@
         <jasypt-version>1.9.3</jasypt-version>
         <java-grok-version>0.1.9</java-grok-version>
         <java-util-version>2.0.0</java-util-version>
-        <jnats-version>2.14.0</jnats-version>
+        <jnats-version>2.14.1</jnats-version>
         <javacc-maven-plugin-version>2.6</javacc-maven-plugin-version>
         <javacrumbs-version>0.22</javacrumbs-version>
         <javaparser-version>3.13.10</javaparser-version>


[camel] 02/03: Use latest Nats Image 2.8.1

Posted by ac...@apache.org.
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

commit aa239e8bdd358d9a2a3c41b60711791973113055
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Tue May 3 07:43:32 2022 +0200

    Use latest Nats Image 2.8.1
---
 .../camel/test/infra/nats/services/NatsLocalContainerService.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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