From afdad92ae66476cf101305eb0d3a5abe9849d08d Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Thu, 26 Jun 2025 18:15:41 +0200 Subject: [PATCH] test: run IT against Vault 1.20.0 (#102) --- .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 0dc5f11..89d5a3f 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.19.5' ] + vault: [ '1.2.0', '1.20.0' ] include: - jdk: 21 - vault: '1.19.5' + vault: '1.20.0' analysis: true steps: - name: Checkout diff --git a/CHANGELOG.md b/CHANGELOG.md index d2fd905..fc6791c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ ### Dependencies * Updated Jackson to 2.19.1 (#101) +### Test +* Tested against Vault 1.2 to 1.20 (#102) + ## 1.5.1 (2025-06-02) diff --git a/README.md b/README.md index 9fa0088..7f4f066 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject * Database secret handling * Transit API support * Connector Factory with builder pattern -* Tested against Vault 1.2 to 1.19 +* Tested against Vault 1.2 to 1.20 ## 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 cad76e0..f153430 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.19.5"; // The vault version this test is supposed to run against. + private static String VAULT_VERSION = "1.20.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";