mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 11:08:10 +00:00
Update version
This commit is contained in:
13
CHANGELOG.md
13
CHANGELOG.md
@@ -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.
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user