Skip to content

Commit ac3baa3

Browse files
committed
Update after release 5.2.0
1 parent bc50a47 commit ac3baa3

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ alike, without causing conflicts with any other dependency.
1111
NOTE: Although the binary artifact produced by the project is backwards-compatible with Java 8, you do need
1212
JDK 9 or higher to modify or build the source code of this library itself.
1313

14+
15+
Fork explanation
16+
-------------------------------
17+
BetterCloud's [vault-java-driver](https://github.com/BetterCloud/vault-java-driver) is one of the most commonly used Java clients for Hashicorp, but has had no activity or releases since December 2019. The project is not maintaining [by author](https://github.com/BetterCloud/vault-java-driver/pull/245#issuecomment-954066376).
18+
19+
1420
This Change
1521
-----------
1622

@@ -271,6 +277,12 @@ Note that changes to the major version (i.e. the first number) represent possibl
271277
may require modifications in your code to migrate. Changes to the minor version (i.e. the second number)
272278
should represent non-breaking changes. The third number represents any very minor bugfix patches.
273279

280+
* **5.2.0**: This release contains the following updates:
281+
* Move code packages and maven groupdId from `com.bettercloud` to `io.github.jopenlibs`. [(PR #2)](https://github.com/jopenlibs/vault-java-driver/pull/2)
282+
* 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)
283+
* Upgrade tests dependencies. [(PR #11)](https://github.com/jopenlibs/vault-java-driver/pull/11)
284+
* Port the [patch of Ian Ferguson](https://github.com/BetterCloud/vault-java-driver/pull/229/files) that includes `X-Vault-Request: true` header on all requests to work with Vault Agent's w/ require_request_header set to true. [(PR #16)](https://github.com/jopenlibs/vault-java-driver/pull/16)
285+
274286
* **5.1.0**: This release contains the following updates:
275287
* Supports path prefixes when using K/V engine V2. [(PR #189)](https://github.com/BetterCloud/vault-java-driver/pull/189)
276288
* Fixes issues with bulk requests in the transit API. [(PR #195)](https://github.com/BetterCloud/vault-java-driver/pull/195)
@@ -413,7 +425,7 @@ License
413425
-------
414426
The MIT License (MIT)
415427

416-
Copyright (c) 2016-2019 BetterCloud
428+
Copyright (c) 2016-2019 BetterCloud \
417429
Copyright (c) 2022 Java Open Source Libraries Organization (jopenlibs.github.io)
418430

419431
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated

build.gradle

Lines changed: 2 additions & 2 deletions
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.2.0-SNAPSHOT'
8+
version '5.3.0-SNAPSHOT'
99

1010
// This project is actually limited to Java 8 compatibility. See below.
1111
sourceCompatibility = 9
@@ -178,7 +178,7 @@ if (hasProperty("publish")) {
178178
licenses {
179179
license {
180180
name 'MIT'
181-
url 'https://github.com/jopenlibs/vault-java-driver/blob/master/README.md'
181+
url 'https://github.com/jopenlibs/vault-java-driver/blob/master/README.md#license'
182182
}
183183
}
184184

0 commit comments

Comments
 (0)