Skip to content

Commit

Permalink
Bump vars for 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferai committed Dec 21, 2017
1 parent ce4b28e commit b971438
Show file tree
Hide file tree
Showing 6 changed files with 64 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.9.1 (Unreleased)
## 0.9.1 (December 21st, 2017)

DEPRECATIONS/CHANGES:

Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down
2 changes: 1 addition & 1 deletion version/version_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion website/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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
Expand Down
56 changes: 56 additions & 0 deletions website/source/guides/upgrading/upgrade-to-0.9.1.html.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 3 additions & 1 deletion website/source/layouts/guides.erb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@
<li<%= sidebar_current("guides-upgrading-to-0.9.0") %>>
<a href="/guides/upgrading/upgrade-to-0.9.0.html">Upgrade to 0.9.0</a>
</li>

<li<%= sidebar_current("guides-upgrading-to-0.9.1") %>>
<a href="/guides/upgrading/upgrade-to-0.9.1.html">Upgrade to 0.9.1</a>
</li>
</ul>
</li>
</ul>
Expand Down

0 comments on commit b971438

Please sign in to comment.