diff --git a/.drone.yml b/.drone.yml
index 9167eb3..486a7ef 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -25,12 +25,12 @@ steps:
- name: unit-integration-tests
image: maven:3-jdk-11
environment:
- VAULT_VERSION: 1.10.1
+ VAULT_VERSION: 1.11.0
commands:
- - curl -s -o vault_1.10.1_linux_amd64.zip https://releases.hashicorp.com/vault/1.10.1/vault_1.10.1_linux_amd64.zip
- - curl -s https://releases.hashicorp.com/vault/1.10.1/vault_1.10.1_SHA256SUMS | grep linux_amd64 | sha256sum -c
- - unzip vault_1.10.1_linux_amd64.zip
- - rm vault_1.10.1_linux_amd64.zip
+ - curl -s -o vault_1.11.0_linux_amd64.zip https://releases.hashicorp.com/vault/1.11.0/vault_1.11.0_linux_amd64.zip
+ - curl -s https://releases.hashicorp.com/vault/1.11.0/vault_1.11.0_SHA256SUMS | grep linux_amd64 | sha256sum -c
+ - unzip vault_1.11.0_linux_amd64.zip
+ - rm vault_1.11.0_linux_amd64.zip
- mv vault /bin/
- mvn -B -P integration-test verify
when:
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 5d05ec6..543269a 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -6,10 +6,10 @@ jobs:
strategy:
matrix:
jdk: [ 11, 17 ]
- vault: [ '1.10.1' ]
+ vault: [ '1.11.0' ]
include:
- jdk: 11
- vault: '1.10.1'
+ vault: '1.11.0'
analysis: true
steps:
- name: Checkout
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1f585da..7c22f99 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## UNRELEASED
+
+### Test
+* Tested against Vault 1.11.0
+
+
## 1.1.0 (2022-04-24)
### Fix
diff --git a/README.md b/README.md
index 0de7f18..6426230 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.10.1
+* Tested against Vault 1.11.0
## Maven Artifact
diff --git a/pom.xml b/pom.xml
index 2b574b3..63830b2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
de.stklcode.jvault
jvault-connector
- 1.1.0
+ 1.1.1-SNAPSHOT
jar
diff --git a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java
index d65fa98..f6ed169 100644
--- a/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java
+++ b/src/test/java/de/stklcode/jvault/connector/HTTPVaultConnectorIT.java
@@ -49,7 +49,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue;
* @since 0.1
*/
class HTTPVaultConnectorIT {
- private static String VAULT_VERSION = "1.10.1"; // The vault version this test is supposed to run against.
+ private static String VAULT_VERSION = "1.11.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";