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 b8c7a96404c Upgrade postgres in tests
b8c7a96404c is described below
commit b8c7a96404cb5b1781a2f7fb613cbb8726a159d1
Author: Claus Ibsen <[email protected]>
AuthorDate: Thu Nov 24 06:24:14 2022 +0100
Upgrade postgres in tests
---
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 73025f43f4d..19367d004da 100644
--- a/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
+++ b/dsl/camel-yaml-dsl/camel-yaml-dsl/pom.xml
@@ -227,7 +227,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
- <version>42.4.3</version>
+ <version>42.5.1</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 eb5aa393681..042b56f584c 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.4.1"
+ - "mvn:org.postgresql:postgresql:42.5.1"
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.4.1'
+ deps[1] == 'mvn:org.postgresql:postgresql:42.5.1'
}
}