From 5e6dcc64cd4db86cd67e0ba84916938e241d54b2 Mon Sep 17 00:00:00 2001 From: Stefan Kalscheuer Date: Sun, 29 Jan 2023 11:21:54 +0100 Subject: [PATCH] test against Vault 1.12.2 --- .drone.yml | 4 ++-- .github/workflows/ci.yml | 2 +- CHANGELOG.md | 3 +++ README.md | 2 +- pom.xml | 2 +- .../de/stklcode/jvault/connector/HTTPVaultConnectorIT.java | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.drone.yml b/.drone.yml index b69c48c..b5c8638 100644 --- a/.drone.yml +++ b/.drone.yml @@ -25,7 +25,7 @@ steps: - name: setup-vault image: alpine:latest environment: - VAULT_VERSION: 1.12.0 + VAULT_VERSION: 1.12.2 commands: - wget -q -O vault_$${VAULT_VERSION}_linux_amd64.zip https://releases.hashicorp.com/vault/$${VAULT_VERSION}/vault_$${VAULT_VERSION}_linux_amd64.zip - wget -q -O - https://releases.hashicorp.com/vault/$${VAULT_VERSION}/vault_$${VAULT_VERSION}_SHA256SUMS | grep linux_amd64 | sha256sum -c @@ -40,7 +40,7 @@ steps: - name: unit-integration-tests image: maven:3-eclipse-temurin-17 environment: - VAULT_VERSION: 1.12.0 + VAULT_VERSION: 1.12.2 commands: - export PATH=.bin:$${PATH} - mvn -B -P integration-test verify diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d3feb5..be692b5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: jdk: [ 11, 17, 19 ] - vault: [ '1.2.0', '1.11.4', '1.12.0' ] + vault: [ '1.2.0', '1.11.4', '1.12.2' ] include: - jdk: 17 vault: '1.11.4' diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b30b41..dc2f8f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ ### Improvements * Minor internal refactoring +### Test +* Tested against Vault 1.2.0 to 1.12.2 + ## 1.1.2 (2022-10-26) diff --git a/README.md b/README.md index 9faa6c3..416c2ea 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,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.0 to 1.12.0 +* Tested against Vault 1.2.0 to 1.12.2 ## Maven Artifact diff --git a/pom.xml b/pom.xml index 9399293..8496fa5 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,7 @@ nl.jqno.equalsverifier equalsverifier - 3.10.1 + 3.12.3 test diff --git a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java index e03b04c..be6569f 100644 --- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java +++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java @@ -51,7 +51,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue; * @since 0.1 */ class HTTPVaultConnectorIT { - private static String VAULT_VERSION = "1.12.0"; // The vault version this test is supposed to run against. + private static String VAULT_VERSION = "1.12.2"; // 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";