You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/07/19 18:55:00 UTC

[camel] branch main updated: Upgrade postgres used only in testing

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 37dae140f0d Upgrade postgres used only in testing
37dae140f0d is described below

commit 37dae140f0d6ad5e0e68601f894a0bd1f0b22b73
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Wed Jul 19 20:54:47 2023 +0200

    Upgrade postgres used only in testing
---
 dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml                             | 2 +-
 .../apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy    | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml b/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
index 11080c2083c..c3d5831ef70 100644
--- a/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
+++ b/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
@@ -231,7 +231,7 @@
         <dependency>
             <groupId>org.postgresql</groupId>
             <artifactId>postgresql</artifactId>
-            <version>42.5.1</version>
+            <version>42.6.0</version>
             <scope>test</scope>
         </dependency>
 
diff --git a/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy b/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy
index 042b56f584c..81b42151e61 100644
--- a/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy
+++ b/dsl/camel-yaml-dsl/camel-yaml-dsl/src/test/groovy/org/apache/camel/dsl/yaml/IntegrationLoaderDependenciesTest.groovy
@@ -45,7 +45,7 @@ class IntegrationLoaderDependenciesTest extends YamlTestSupport {
                 spec:
                   dependencies:
                     - "mvn:org.apache.commons:commons-dbcp2:2.9.0"
-                    - "mvn:org.postgresql:postgresql:42.5.1"
+                    - "mvn:org.postgresql:postgresql:42.6.0"
                   flows:
                     - from:
                         uri: "sql:SELECT * FROM table1"
@@ -76,7 +76,7 @@ class IntegrationLoaderDependenciesTest extends YamlTestSupport {
 
             deps.size() == 2
             deps[0] == 'mvn:org.apache.commons:commons-dbcp2:2.9.0'
-            deps[1] == 'mvn:org.postgresql:postgresql:42.5.1'
+            deps[1] == 'mvn:org.postgresql:postgresql:42.6.0'
     }
 
 }