changelog++

This commit is contained in:
Jeff Mitchell 2019-05-09 17:26:00 -04:00
parent 1d2757e0bb
commit 132a735099
1 changed files with 12 additions and 0 deletions

View File

@ -5,6 +5,18 @@ CHANGES:
* autoseal/aws: The user-configured regions on the AWSKMS seal stanza
will now be preferred over regions set in the enclosing environment.
This is a _breaking_ change.
* audit: Several more values in audit logs now are omitted if they are empty.
This helps reduce the size of audit log entries by not reproducing keys in
each entry that commonly don't contain any value, which can help in cases
where audit log entries are above the maximum UDP packet size and others.
See [GH-6387](https://github.com/hashicorp/vault/pull/6387) for details.
* Go Modules change: Vault now uses Go Modules to manage dependencies. As a
result to both reduce transitive dependencies for API library users and
plugin authors, and to work around various conflicts, we have moved various
helpers around, mostly under an `sdk/` submodule. A couple of functions have
also moved from plugin helper code to the `api/` submodule. If you are a
plugin author, take a look at some of our official plugins and the paths
they are importing for guidance.
IMPROVEMENTS: