minor dependency updates

This commit is contained in:
Stefan Kalscheuer 2022-02-05 15:33:58 +01:00
parent f6180c4f90
commit deb03cc2b0
Signed by: stefan
GPG Key ID: 3887EC2A53B55430
6 changed files with 15 additions and 15 deletions

View File

@ -25,12 +25,12 @@ steps:
- name: unit-integration-tests
image: maven:3-jdk-11
environment:
VAULT_VERSION: 1.9.2
VAULT_VERSION: 1.9.4
commands:
- curl -s -o vault_1.9.2_linux_amd64.zip https://releases.hashicorp.com/vault/1.9.2/vault_1.9.2_linux_amd64.zip
- curl -s https://releases.hashicorp.com/vault/1.9.2/vault_1.9.2_SHA256SUMS | grep linux_amd64 | sha256sum -c
- unzip vault_1.9.2_linux_amd64.zip
- rm vault_1.9.2_linux_amd64.zip
- curl -s -o vault_1.9.4_linux_amd64.zip https://releases.hashicorp.com/vault/1.9.4/vault_1.9.4_linux_amd64.zip
- curl -s https://releases.hashicorp.com/vault/1.9.4/vault_1.9.4_SHA256SUMS | grep linux_amd64 | sha256sum -c
- unzip vault_1.9.4_linux_amd64.zip
- rm vault_1.9.4_linux_amd64.zip
- mv vault /bin/
- mvn -B -P integration-test verify
when:

View File

@ -6,10 +6,10 @@ jobs:
strategy:
matrix:
jdk: [ 11, 17 ]
vault: [ '1.9.2' ]
vault: [ '1.9.4' ]
include:
- jdk: 11
vault: '1.9.2'
vault: '1.9.4'
analysis: true
steps:
- name: Checkout

View File

@ -7,7 +7,7 @@
* Add `migration`, `recovery_seal` and `storage_type` fields to `SealReponse` model
### Test
* Tested against Vault 1.9.2
* Tested against Vault 1.9.4
## 1.0.1 (2021-11-21)

View File

@ -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.9.2
* Tested against Vault 1.9.4
## Maven Artifact

10
pom.xml
View File

@ -116,25 +116,25 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.13.0</version>
<version>2.13.1</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.1</version>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>4.1.0</version>
<version>4.3.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.stefanbirkner</groupId>
<artifactId>system-lambda</artifactId>
<version>1.2.0</version>
<version>1.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
@ -294,7 +294,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>6.5.0</version>
<version>6.5.3</version>
<executions>
<execution>
<goals>

View File

@ -49,7 +49,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue;
* @since 0.1
*/
class HTTPVaultConnectorIT {
private static String VAULT_VERSION = "1.9.2"; // The vault version this test is supposed to run against.
private static String VAULT_VERSION = "1.9.4"; // 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";