Merge branch 'main' into develop
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Stefan Kalscheuer 2023-08-19 11:45:59 +02:00
commit 505d420fd6
Signed by: stefan
GPG Key ID: 3887EC2A53B55430
3 changed files with 14 additions and 8 deletions

View File

@ -3,11 +3,17 @@
### Deprecations ### Deprecations
* `get...TimeString()` methods on various model classes are now deprecated * `get...TimeString()` methods on various model classes are now deprecated
### Improvements
* Parse timestamps as `ZonedDateTime` instead of `String` representation
## 1.1.5 (2023-08-19)
### Fix ### Fix
* Fixed JSON type conversion in `SecretResponse#get(String, Class)` (#67) * Fixed JSON type conversion in `SecretResponse#get(String, Class)` (#67)
### Improvements ### Test
* Parse timestamps as `ZonedDateTime` instead of `String` representation * Tested against Vault 1.2.0 to 1.14.0
## 1.1.4 (2023-06-15) ## 1.1.4 (2023-06-15)

View File

@ -40,7 +40,7 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject
<dependency> <dependency>
<groupId>de.stklcode.jvault</groupId> <groupId>de.stklcode.jvault</groupId>
<artifactId>jvault-connector</artifactId> <artifactId>jvault-connector</artifactId>
<version>1.1.4</version> <version>1.1.5</version>
</dependency> </dependency>
``` ```

10
pom.xml
View File

@ -60,13 +60,13 @@
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId> <artifactId>junit-jupiter</artifactId>
<version>5.9.3</version> <version>5.10.0</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.mockito</groupId> <groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId> <artifactId>mockito-core</artifactId>
<version>5.3.1</version> <version>5.4.0</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -90,7 +90,7 @@
<dependency> <dependency>
<groupId>nl.jqno.equalsverifier</groupId> <groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId> <artifactId>equalsverifier</artifactId>
<version>3.14.2</version> <version>3.15.1</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
@ -116,7 +116,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>3.2.0</version> <version>3.3.1</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -322,7 +322,7 @@
<plugin> <plugin>
<groupId>org.owasp</groupId> <groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId> <artifactId>dependency-check-maven</artifactId>
<version>8.2.1</version> <version>8.3.1</version>
<executions> <executions>
<execution> <execution>
<goals> <goals>