Preparations for 0.6.0 release
This commit is contained in:
parent
f805a9c751
commit
3794f4aac6
@ -1,9 +1,10 @@
|
|||||||
## 0.6.0 [work in progress]
|
## 0.6.0 [2017-05-12]
|
||||||
* [feature] Initialization from environment variables using `fromEnv()` in factory (#8)
|
* [feature] Initialization from environment variables using `fromEnv()` in factory (#8)
|
||||||
* [feature] Automatic authentication with `buildAndAuth()`
|
* [feature] Automatic authentication with `buildAndAuth()`
|
||||||
* [feature] Custom timeout and number of retries (#9)
|
* [feature] Custom timeout and number of retries (#9)
|
||||||
* [feature] Connector implements `AutoCloseable`
|
* [feature] Connector implements `AutoCloseable`
|
||||||
* [fix] `SecretResponse` does not throw NPE on `get(key)` and `getData()`
|
* [fix] `SecretResponse` does not throw NPE on `get(key)` and `getData()`
|
||||||
|
* [test] Tested against Vault 0.7.2
|
||||||
|
|
||||||
## 0.5.0 [2017-03-18]
|
## 0.5.0 [2017-03-18]
|
||||||
* [feature] Convenience methods for DB credentials (#7)
|
* [feature] Convenience methods for DB credentials (#7)
|
||||||
|
@ -12,6 +12,7 @@ Java Vault Connector is a connector library for [Vault](https://www.vaultproject
|
|||||||
|
|
||||||
* HTTP(S) backend connector
|
* HTTP(S) backend connector
|
||||||
* Ability to provide or enforce custom CA certificate
|
* Ability to provide or enforce custom CA certificate
|
||||||
|
* Optional initialization from environment variables
|
||||||
* Authorization methods
|
* Authorization methods
|
||||||
* Token
|
* Token
|
||||||
* Username/Password
|
* Username/Password
|
||||||
@ -37,7 +38,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>connector</artifactId>
|
<artifactId>connector</artifactId>
|
||||||
<version>0.5.0</version>
|
<version>0.6.0</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
4
pom.xml
4
pom.xml
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
<groupId>de.stklcode.jvault</groupId>
|
<groupId>de.stklcode.jvault</groupId>
|
||||||
<artifactId>connector</artifactId>
|
<artifactId>connector</artifactId>
|
||||||
<version>0.6.0-SNAPSHOT</version>
|
<version>0.6.0</version>
|
||||||
|
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
@ -57,7 +57,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.fasterxml.jackson.core</groupId>
|
<groupId>com.fasterxml.jackson.core</groupId>
|
||||||
<artifactId>jackson-databind</artifactId>
|
<artifactId>jackson-databind</artifactId>
|
||||||
<version>2.8.8</version>
|
<version>2.8.8.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user