Prep for 0.9.0

This commit is contained in:
Jeff Mitchell 2017-11-14 06:08:56 -05:00
parent eef6afec3e
commit 77442f8640
4 changed files with 22 additions and 5 deletions

View File

@ -1,4 +1,4 @@
## 0.8.4 (Unreleased)
## 0.9.0 (November 14th, 2017)
DEPRECATIONS/CHANGES:
@ -25,6 +25,23 @@ DEPRECATIONS/CHANGES:
FEATURES:
* **Identity System**: Now in open source and with significant enhancements,
Identity is an integrated system for understanding users across tokens and
enabling easier management of users directly and via groups.
* **External Groups in Identity**: Vault can now automatically assign users
and systems to groups in Identity based on their membership in external
groups.
* **Seal Wrap / FIPS 140-2 Compatibility (Enterprise)**: Vault can now take
advantage of FIPS 140-2-certified HSMs to ensure that Critical Security
Parameters are protected in a compliant fashion. Vault's implementation has
received a statement of compliance from Leidos.
* **Control Groups (Enterprise)**: Require multiple members of an Identity
group to authorize a requested action before it is allowed to run.
* **Cloud Auto-Unseal (Enterprise)**: Automatically unseal Vault using AWS KMS
and GCP CKMS.
* **Sentinel Integration (Enterprise)**: Take advantage of HashiCorp Sentinel
to create extremely flexible access control policies -- even on
unauthenticated endpoints.
* **RSA Support for Transit Backend**: Transit backend can now generate RSA
keys which can be used for encryption and signing. [GH-3489]

View File

@ -3,7 +3,7 @@
//-------------------------------------------------------------------
variable "download-url" {
default = "https://releases.hashicorp.com/vault/0.8.3/vault_0.8.3_linux_amd64.zip"
default = "https://releases.hashicorp.com/vault/0.9.0/vault_0.9.0_linux_amd64.zip"
description = "URL to download Vault"
}

View File

@ -2,7 +2,7 @@ package version
func init() {
// The main version number that is being run at the moment.
Version = "0.8.3"
Version = "0.9.0"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release

View File

@ -2,7 +2,7 @@ set :base_url, "https://www.vaultproject.io/"
activate :hashicorp do |h|
h.name = "vault"
h.version = "0.8.3"
h.version = "0.9.0"
h.github_slug = "hashicorp/vault"
h.website_root = "website"
end