From f50f5c5de740f4a50d70110ffb78367f4687736c Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Fri, 7 Mar 2025 20:30:48 +0100 Subject: [PATCH] test: run IT against Vault 1.19.0 (#91) --- .github/workflows/ci-it.yml | 4 ++-- CHANGELOG.md | 3 +++ README.md | 2 +- .../de/stklcode/jvault/connector/HTTPVaultConnectorIT.java | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-it.yml b/.github/workflows/ci-it.yml index b61a064..23bea61 100644 --- a/.github/workflows/ci-it.yml +++ b/.github/workflows/ci-it.yml @@ -15,10 +15,10 @@ jobs: strategy: matrix: jdk: [ 11, 17, 21 ] - vault: [ '1.2.0', '1.18.2' ] + vault: [ '1.2.0', '1.19.0' ] include: - jdk: 21 - vault: '1.18.2' + vault: '1.19.0' analysis: true steps: - name: Checkout diff --git a/CHANGELOG.md b/CHANGELOG.md index 3df07f1..92d6957 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ ### Dependencies * Updated Jackson to 2.18.3 (#90) +### Test +* Tested against Vault 1.2 to 1.19 + ## 1.4.0 (2024-12-07) diff --git a/README.md b/README.md index b6d00d8..97ac1a8 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject * SQL secret handling * KV v1 and v2 support * Connector Factory with builder pattern -* Tested against Vault 1.2 to 1.18 +* Tested against Vault 1.2 to 1.19 ## Maven Artifact diff --git a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java index 65ee6e8..e1ca4d7 100644 --- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java +++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java @@ -52,7 +52,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue; * @since 0.1 */ class HTTPVaultConnectorIT { - private static String VAULT_VERSION = "1.18.2"; // The vault version this test is supposed to run against. + private static String VAULT_VERSION = "1.19.0"; // The vault version this test is supposed to run against. private static final String KEY1 = "E38bkCm0VhUvpdCKGQpcohhD9XmcHJ/2hreOSY019Lho"; private static final String KEY2 = "O5OHwDleY3IiPdgw61cgHlhsrEm6tVJkrxhF6QAnILd1"; private static final String KEY3 = "mw7Bm3nbt/UWa/juDjjL2EPQ04kiJ0saC5JEXwJvXYsB";