@@ -43,7 +43,7 @@ Gradle:
4343
4444```
4545dependencies {
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
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
303305number) should represent non-breaking changes. The third number represents any very minor bugfix
304306patches.
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
0 commit comments