Skip to content

Commit 39451e4

Browse files
committed
Updated version
1 parent f2abec3 commit 39451e4

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Gradle:
4343

4444
```
4545
dependencies {
46-
implementation 'io.github.jopenlibs:vault-java-driver:6.0.0'
46+
implementation 'io.github.jopenlibs:vault-java-driver:6.1.0'
4747
}
4848
```
4949

@@ -53,7 +53,7 @@ Maven:
5353
<dependency>
5454
<groupId>io.github.jopenlibs</groupId>
5555
<artifactId>vault-java-driver</artifactId>
56-
<version>6.0.0</version>
56+
<version>6.1.0</version>
5757
</dependency>
5858
```
5959

@@ -277,6 +277,8 @@ Vault's HTTP API:
277277
* `logical()`: Contains core operations such as reading and writing secrets.
278278
* `auth()`: Exposes methods for working with Vault's various auth backends (e.g. to
279279
programmatically retrieve a token by authenticating with a username and password).
280+
* `database()`: Operations on the Database backend (e.g. create and delete roles, generate
281+
credentials).
280282
* `pki()`: Operations on the PKI backend (e.g. create and delete roles, issue certificate
281283
credentials).
282284
* `debug()`: Health check endpoints.
@@ -303,6 +305,11 @@ and may require modifications in your code to migrate. Changes to the minor vers
303305
number) should represent non-breaking changes. The third number represents any very minor bugfix
304306
patches.
305307

308+
* **6.1.0**: This release contains the following updates:
309+
* Fixed missed quotes in documentation (#43)
310+
* Add possibility to pass preconfigured http client to reuse http/tls resources for consequent requests **(#44)**
311+
* Rest: configure HTTP/1.1 version as default for client instead of request (#47)
312+
* Updated minimum TLS version (#49)
306313
* **6.0.0**: This release contains the following updates:
307314
* Port to Java 11 [(Issue #22)](https://github.com/jopenlibs/vault-java-driver/issues/22)
308315
* Added missing module-info and package-info

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88

99
group 'io.github.jopenlibs'
1010
archivesBaseName = 'vault-java-driver'
11-
version '6.0.0'
11+
version '6.1.0'
1212

1313
sourceCompatibility = 11
1414
targetCompatibility = 11

0 commit comments

Comments
 (0)