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/07/06 13:23:00 UTC

[camel] branch jnats-2.16.13 created (now 6dc25de807e)

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

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


      at 6dc25de807e Use Nats container image 2.9.19 in test-infra

This branch includes the following new commits:

     new 258e1309121 Upgrade Jnats to version 2.16.13
     new 6dc25de807e Use Nats container image 2.9.19 in test-infra

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] 01/02: Upgrade Jnats to version 2.16.13

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.16.13
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 258e13091215fa596ab008cfdbddbdda56963e6b
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 6 15:18:48 2023 +0200

    Upgrade Jnats to version 2.16.13
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 parent/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 131cef7482c..79a2d23dc34 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -237,7 +237,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.12</jnats-version>
+        <jnats-version>2.16.13</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>


[camel] 02/02: Use Nats container image 2.9.19 in test-infra

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.16.13
in repository https://gitbox.apache.org/repos/asf/camel.git

commit 6dc25de807e510799307bc43544d4f74d53c7007
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Thu Jul 6 15:20:48 2023 +0200

    Use Nats container image 2.9.19 in test-infra
    
    Signed-off-by: Andrea Cosentino <an...@gmail.com>
---
 .../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 828b4d0643e..5de99b4921f 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.18";
+    public static final String CONTAINER_IMAGE = "nats:2.9.19";
     public static final String CONTAINER_NAME = "nats";
     private static final int PORT = 4222;