Update version

This commit is contained in:
Jeff Mitchell
2017-09-05 11:14:25 -04:00
parent 16fbfeb5ef
commit f0e05957f7
4 changed files with 15 additions and 4 deletions

View File

@@ -1,4 +1,11 @@
## 0.8.2 (Unreleased) ## 0.8.2 (September 5th, 2017)
SECURITY:
* In prior versions of Vault, if authenticating via AWS IAM and requesting a
periodic token, the period was not properly respected. This could lead to
tokens expiring unexpectedly, or a token lifetime being longer than expected.
Upon token renewal with Vault 0.8.2 the period will be properly enforced.
DEPRECATIONS/CHANGES: DEPRECATIONS/CHANGES:
@@ -12,6 +19,10 @@ DEPRECATIONS/CHANGES:
FEATURES: FEATURES:
* **Lazy Lease Loading**: On startup, Vault will now load leases from storage
in a lazy fashion (token checks and revocation/renewal requests still force
an immediate load). For larger installations this can significantly reduce
downtime when switching active nodes or bringing Vault up from cold start.
* **SSH CA Login with `vault ssh`**: `vault ssh` now supports the SSH CA * **SSH CA Login with `vault ssh`**: `vault ssh` now supports the SSH CA
backend for authenticating to machines. It also supports remote host key backend for authenticating to machines. It also supports remote host key
verification through the SSH CA backend, if enabled. verification through the SSH CA backend, if enabled.

View File

@@ -3,7 +3,7 @@
//------------------------------------------------------------------- //-------------------------------------------------------------------
variable "download-url" { variable "download-url" {
default = "https://releases.hashicorp.com/vault/0.8.1/vault_0.8.1_linux_amd64.zip" default = "https://releases.hashicorp.com/vault/0.8.2/vault_0.8.2_linux_amd64.zip"
description = "URL to download Vault" description = "URL to download Vault"
} }

View File

@@ -4,7 +4,7 @@ package version
func init() { func init() {
// The main version number that is being run at the moment. // The main version number that is being run at the moment.
Version = "0.8.1" Version = "0.8.2"
// A pre-release marker for the version. If this is "" (empty string) // 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 // 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| activate :hashicorp do |h|
h.name = "vault" h.name = "vault"
h.version = "0.8.1" h.version = "0.8.2"
h.github_slug = "hashicorp/vault" h.github_slug = "hashicorp/vault"
h.website_root = "website" h.website_root = "website"
end end