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 2023/10/04 07:49:45 UTC

[camel] branch jnats-2.17.0 created (now ce24c0e2a66)

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

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


      at ce24c0e2a66 Upgrade JNats to version 2.17.0 and Nats container image to 2.10.1

This branch includes the following new commits:

     new ce24c0e2a66 Upgrade JNats to version 2.17.0 and Nats container image to 2.10.1

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: Upgrade JNats to version 2.17.0 and Nats container image to 2.10.1

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

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

commit ce24c0e2a66424827f0fa0f3578a29ffcd9472ba
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Wed Oct 4 09:49:15 2023 +0200

    Upgrade JNats to version 2.17.0 and Nats container image to 2.10.1
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 parent/pom.xml                                                          | 2 +-
 .../camel/test/infra/nats/services/NatsLocalContainerService.java       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index df70d033916..333def3387e 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -226,7 +226,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.16.14</jnats-version>
+        <jnats-version>2.17.0</jnats-version>
         <javacc-maven-plugin-version>3.0.1</javacc-maven-plugin-version>
         <javacrumbs-version>0.22</javacrumbs-version>
         <javaparser-version>3.13.10</javaparser-version>
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 5de99b4921f..8bdc7651cff 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.9.19";
+    public static final String CONTAINER_IMAGE = "nats:2.10.1";
     public static final String CONTAINER_NAME = "nats";
     private static final int PORT = 4222;