minor dependency updates
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Stefan Kalscheuer 2021-07-10 14:44:33 +02:00
parent e81dd87fe1
commit 1cd1b63f8d
6 changed files with 17 additions and 14 deletions

View File

@ -25,12 +25,12 @@ steps:
- name: unit-integration-tests
image: maven:3-jdk-11
environment:
VAULT_VERSION: 1.7.2
VAULT_VERSION: 1.7.3
commands:
- curl -s -o vault_1.7.2_linux_amd64.zip https://releases.hashicorp.com/vault/1.7.2/vault_1.7.2_linux_amd64.zip
- curl -s https://releases.hashicorp.com/vault/1.7.2/vault_1.7.2_SHA256SUMS | grep linux_amd64 | sha256sum -c
- unzip vault_1.7.2_linux_amd64.zip
- rm vault_1.7.2_linux_amd64.zip
- curl -s -o vault_1.7.3_linux_amd64.zip https://releases.hashicorp.com/vault/1.7.3/vault_1.7.3_linux_amd64.zip
- curl -s https://releases.hashicorp.com/vault/1.7.3/vault_1.7.3_SHA256SUMS | grep linux_amd64 | sha256sum -c
- unzip vault_1.7.3_linux_amd64.zip
- rm vault_1.7.3_linux_amd64.zip
- mv vault /bin/
- mvn -B resources:testResources compiler:testCompile surefire:test
when:

View File

@ -6,10 +6,10 @@ jobs:
strategy:
matrix:
jdk: [ 11, 16 ]
vault: [ '1.7.2' ]
vault: [ '1.7.3' ]
include:
- jdk: 11
vault: '1.7.2'
vault: '1.7.3'
analysis: true
steps:
- name: Checkout

View File

@ -16,6 +16,9 @@
* Remove Apache HTTP Client dependency in favor of Java 11 HTTP
* Introduce Java module descriptor
### Test
* Tested against Vault 1.7.3
## 0.9.4 (2021-06-06)

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.7.2
* Tested against Vault 1.7.3
## Maven Artifact

10
pom.xml
View File

@ -116,7 +116,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.3</version>
<version>2.12.4</version>
</dependency>
<dependency>
@ -128,7 +128,7 @@
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>3.11.0</version>
<version>3.11.2</version>
<scope>test</scope>
</dependency>
<dependency>
@ -146,7 +146,7 @@
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.9.0</version>
<version>2.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
@ -197,7 +197,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
<configuration>
<source>11</source>
</configuration>
@ -290,7 +290,7 @@
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>6.2.0</version>
<version>6.2.2</version>
<executions>
<execution>
<goals>

View File

@ -50,7 +50,7 @@ import static org.junit.jupiter.api.Assumptions.assumeTrue;
*/
@Tag("online")
class HTTPVaultConnectorTest {
private static String VAULT_VERSION = "1.7.2"; // The vault version this test is supposed to run against.
private static String VAULT_VERSION = "1.7.3"; // 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";