Replaced VaultConnectorFactory with VaultConnectorBuilder

The class is more a builder than a factory, so is has been renamed.
The factory delegates to the builder for now to ease migration, but will
be removed with the next major release.
This commit is contained in:
2018-03-24 13:59:22 +01:00
parent 1a18f9f6b7
commit 23fbc7a6d3
7 changed files with 493 additions and 98 deletions

View File

@ -2,6 +2,7 @@
* **[breaking]** Removed support for `HTTPVaultConnectorFactory#withSslContext()` in favor of `#withTrustedCA()` due to
refactoring of the internal SSL handling.
* [improvement] `VaultConnector` extends `java.io.Serializable`
* [deprecation] `VaultConnectorFactory` is deprecated in favor of `VaultConnectorBuilder` with identical API.
## 0.7.1 [2018-03-17]
* [improvement] Added automatic module name for JPMS compatibility