Skip to content

Commit 86de5e7

Browse files
authored
Released 5.4.0 (#34)
1 parent 61a4a57 commit 86de5e7

File tree

3 files changed

+17
-8
lines changed

3 files changed

+17
-8
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
java:
1818
- 11
1919
vault:
20-
- 1.10.11
2120
- 1.11.0
2221
- 1.11.1
2322
- 1.11.2
@@ -33,6 +32,7 @@ jobs:
3332
- 1.12.3
3433
- 1.12.4
3534
- 1.13.0
35+
- 1.13.1
3636
- latest
3737
os:
3838
- ubuntu-latest

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Gradle:
4848

4949
```
5050
dependencies {
51-
implementation 'io.github.jopenlibs:vault-java-driver:5.3.0'
51+
implementation 'io.github.jopenlibs:vault-java-driver:5.4.0'
5252
}
5353
```
5454

@@ -58,7 +58,7 @@ Maven:
5858
<dependency>
5959
<groupId>io.github.jopenlibs</groupId>
6060
<artifactId>vault-java-driver</artifactId>
61-
<version>5.3.0</version>
61+
<version>5.4.0</version>
6262
</dependency>
6363
```
6464

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

313+
* **5.4.0**: This release contains the following updates:
314+
* Added wrapped TTL when write a logical
315+
secret [(PR #33)](https://github.com/jopenlibs/vault-java-driver/pull/33)
316+
* httpURLConnection.getErrorStream() can return null so handle
317+
it. [(PR #31)](https://github.com/jopenlibs/vault-java-driver/pull/31)
318+
* Add overloading method loginByKubernetes() with custom
319+
authPath [(PR #29)](https://github.com/jopenlibs/vault-java-driver/pull/29)
313320
* **5.3.0**: This release contains the following updates:
314-
* Created sys namespace [PR #21](https://github.com/jopenlibs/vault-java-driver/pull/25)
315-
* Add custom Vault Authentication Path when using k8s login method [(PR #27)](https://github.com/jopenlibs/vault-java-driver/pull/27)
316-
* Parametrized integration tests [(PR #21)](https://github.com/jopenlibs/vault-java-driver/pull/21)
321+
* Add custom Vault Authentication Path when using k8s login
322+
method [(PR #27)](https://github.com/jopenlibs/vault-java-driver/pull/27)
323+
* Created sys namespace [(PR #25)](https://github.com/jopenlibs/vault-java-driver/pull/25)
324+
* Parametrized integration
325+
tests [(PR #21)](https://github.com/jopenlibs/vault-java-driver/pull/21)
317326
* Fix Leases section [(PR #18)](https://github.com/jopenlibs/vault-java-driver/pull/18)
318327
* **5.2.0**: This release contains the following updates:
319328
* Move code packages and maven groupdId from `com.bettercloud`
320329
to `io.github.jopenlibs`. [(PR #2)](https://github.com/jopenlibs/vault-java-driver/pull/2)
321330
* Fix and refactoring data wrapping, add integration tests with the last Vault version (vault
322-
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)
331+
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)
323332
* Upgrade tests dependencies. [(PR #11)](https://github.com/jopenlibs/vault-java-driver/pull/11)
324333
* Port
325334
the [patch of Ian Ferguson](https://github.com/BetterCloud/vault-java-driver/pull/229/files)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ apply plugin: 'checkstyle'
55

66
group 'io.github.jopenlibs'
77
archivesBaseName = 'vault-java-driver'
8-
version '5.3.0'
8+
version '5.4.0'
99

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

0 commit comments

Comments
 (0)