From 121d5bfeaaaa6d162d85aed6e146070ce97d81f1 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Thu, 21 Dec 2017 08:39:41 -0500 Subject: [PATCH] Bump vars for 0.9.1 --- CHANGELOG.md | 4 +- terraform/aws/variables.tf | 2 +- version/version_base.go | 2 +- website/config.rb | 2 +- .../guides/upgrading/upgrade-to-0.9.1.html.md | 56 +++++++++++++++++++ website/source/layouts/guides.erb | 4 +- 6 files changed, 64 insertions(+), 6 deletions(-) create mode 100644 website/source/guides/upgrading/upgrade-to-0.9.1.html.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 59eb48f9c..a6f0f8b3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.9.1 (Unreleased) +## 0.9.1 (December 21st, 2017) DEPRECATIONS/CHANGES: @@ -26,7 +26,7 @@ DEPRECATIONS/CHANGES: accept both strings and integer numbers of seconds for its lease value. The value returned on a role read will be an integer number of seconds instead of a human-friendly string. - * Unprintable characters not allowed in API names: Unprintable characters are + * Unprintable characters not allowed in API paths: Unprintable characters are no longer allowed in names in the API (paths and path parameters), with an extra restriction on whitespace characters. Allowed characters are those that are considered printable by Unicode plus spaces. diff --git a/terraform/aws/variables.tf b/terraform/aws/variables.tf index f7e4b228a..0b6b98f89 100644 --- a/terraform/aws/variables.tf +++ b/terraform/aws/variables.tf @@ -3,7 +3,7 @@ //------------------------------------------------------------------- variable "download-url" { - default = "https://releases.hashicorp.com/vault/0.9.0/vault_0.9.0_linux_amd64.zip" + default = "https://releases.hashicorp.com/vault/0.9.1/vault_0.9.1_linux_amd64.zip" description = "URL to download Vault" } diff --git a/version/version_base.go b/version/version_base.go index 429fecec5..e2a94e36e 100644 --- a/version/version_base.go +++ b/version/version_base.go @@ -2,7 +2,7 @@ package version func init() { // The main version number that is being run at the moment. - Version = "0.9.0" + Version = "0.9.1" // 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 diff --git a/website/config.rb b/website/config.rb index fd36dc493..162afd2c8 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ set :base_url, "https://www.vaultproject.io/" activate :hashicorp do |h| h.name = "vault" - h.version = "0.9.0" + h.version = "0.9.1" h.github_slug = "hashicorp/vault" h.website_root = "website" end diff --git a/website/source/guides/upgrading/upgrade-to-0.9.1.html.md b/website/source/guides/upgrading/upgrade-to-0.9.1.html.md new file mode 100644 index 000000000..25b86ced4 --- /dev/null +++ b/website/source/guides/upgrading/upgrade-to-0.9.1.html.md @@ -0,0 +1,56 @@ +--- +layout: "guides" +page_title: "Upgrading to Vault 0.9.1 - Guides" +sidebar_current: "guides-upgrading-to-0.9.1" +description: |- + This page contains the list of deprecations and important or breaking changes + for Vault 0.9.1. Please read it carefully. +--- + +# Overview + +This page contains the list of deprecations and important or breaking changes +for Vault 0.9.1 compared to the 0.9.0. Please read it carefully. + +### AppRole Case Sensitivity + +In prior versions of Vault, `list` operations against AppRole roles would +require preserving case in the role name, even though most other operations +within AppRole are case-insensitive with respect to the role name. This has +been fixed; existing roles will behave as they have in the past, but new roles +will act case-insensitively in these cases. + +### Token Auth Backend Roles Parameter Types + +For `allowed_policies` and `disallowed_policies` in role definitions in the +token auth backend, input can now be a comma-separated string or an array of +strings. Reading a role will now return arrays for these parameters. + +### Transit Key Exporting + +You can now mark a key in the `transit` backend as `exportable` at any time, +rather than just at creation time; however, once this value is set, it still +cannot be unset. + +### PKI Secret Backend Roles Parameter Types + +For `allowed_domains` and `key_usage` in role definitions in the PKI secret +backend, input can now be a comma-separated string or an array of strings. +Reading a role will now return arrays for these parameters. + +### SSH Dynamic Keys Method Defaults to 2048-bit Keys + +When using the dynamic key method in the SSH backend, the default is now to use +2048-bit keys if no specific key bit size is specified. + +### Consul Secret Backend Lease Handling + +The `consul` secret backend can now accept both strings and integer numbers of +seconds for its lease value. The value returned on a role read will be an +integer number of seconds instead of a human-friendly string. + +### Unprintable Characters Not Allowed in API Paths + +Unprintable characters are no longer allowed in names in the API (paths and +path parameters), with an extra restriction on whitespace characters. Allowed +characters are those that are considered printable by Unicode plus spaces. diff --git a/website/source/layouts/guides.erb b/website/source/layouts/guides.erb index 622e1de26..0d6834553 100644 --- a/website/source/layouts/guides.erb +++ b/website/source/layouts/guides.erb @@ -56,7 +56,9 @@ > Upgrade to 0.9.0 - + > + Upgrade to 0.9.1 +