Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
java:
- 11
vault:
- 1.10.11
- 1.11.0
- 1.11.1
- 1.11.2
Expand All @@ -33,6 +32,7 @@ jobs:
- 1.12.3
- 1.12.4
- 1.13.0
- 1.13.1
- latest
os:
- ubuntu-latest
Expand Down
21 changes: 15 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Gradle:

```
dependencies {
implementation 'io.github.jopenlibs:vault-java-driver:5.3.0'
implementation 'io.github.jopenlibs:vault-java-driver:5.4.0'
}
```

Expand All @@ -58,7 +58,7 @@ Maven:
<dependency>
<groupId>io.github.jopenlibs</groupId>
<artifactId>vault-java-driver</artifactId>
<version>5.3.0</version>
<version>5.4.0</version>
</dependency>
```

Expand Down Expand Up @@ -310,16 +310,25 @@ and may require modifications in your code to migrate. Changes to the minor vers
number) should represent non-breaking changes. The third number represents any very minor bugfix
patches.

* **5.4.0**: This release contains the following updates:
* Added wrapped TTL when write a logical
secret [(PR #33)](https://github.com/jopenlibs/vault-java-driver/pull/33)
* httpURLConnection.getErrorStream() can return null so handle
it. [(PR #31)](https://github.com/jopenlibs/vault-java-driver/pull/31)
* Add overloading method loginByKubernetes() with custom
authPath [(PR #29)](https://github.com/jopenlibs/vault-java-driver/pull/29)
* **5.3.0**: This release contains the following updates:
* Created sys namespace [PR #21](https://github.com/jopenlibs/vault-java-driver/pull/25)
* Add custom Vault Authentication Path when using k8s login method [(PR #27)](https://github.com/jopenlibs/vault-java-driver/pull/27)
* Parametrized integration tests [(PR #21)](https://github.com/jopenlibs/vault-java-driver/pull/21)
* Add custom Vault Authentication Path when using k8s login
method [(PR #27)](https://github.com/jopenlibs/vault-java-driver/pull/27)
* Created sys namespace [(PR #25)](https://github.com/jopenlibs/vault-java-driver/pull/25)
* Parametrized integration
tests [(PR #21)](https://github.com/jopenlibs/vault-java-driver/pull/21)
* Fix Leases section [(PR #18)](https://github.com/jopenlibs/vault-java-driver/pull/18)
* **5.2.0**: This release contains the following updates:
* Move code packages and maven groupdId from `com.bettercloud`
to `io.github.jopenlibs`. [(PR #2)](https://github.com/jopenlibs/vault-java-driver/pull/2)
* Fix and refactoring data wrapping, add integration tests with the last Vault version (vault
1.11.4). [(PR #4)](https://github.com/jopenlibs/vault-java-driver/pull/4), [(PR #17)](https://github.com/jopenlibs/vault-java-driver/pull/17)
1.11.4). [(PR #4)](https://github.com/jopenlibs/vault-java-driver/pull/4), [(PR #17)](https://github.com/jopenlibs/vault-java-driver/pull/17)
* Upgrade tests dependencies. [(PR #11)](https://github.com/jopenlibs/vault-java-driver/pull/11)
* Port
the [patch of Ian Ferguson](https://github.com/BetterCloud/vault-java-driver/pull/229/files)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'checkstyle'

group 'io.github.jopenlibs'
archivesBaseName = 'vault-java-driver'
version '5.3.0'
version '5.4.0'

// This project is actually limited to Java 8 compatibility. See below.
sourceCompatibility = 9
Expand Down