diff --git a/CHANGELOG.md b/CHANGELOG.md index b0cd030018..58a41ee854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 1.0.2 (Unreleased) +## 1.0.2 (January 15th, 2019) SECURITY: diff --git a/scripts/cross/Dockerfile b/scripts/cross/Dockerfile index 73bc9613f7..1ae4678f94 100644 --- a/scripts/cross/Dockerfile +++ b/scripts/cross/Dockerfile @@ -19,7 +19,7 @@ RUN rm -rf /var/lib/apt/lists/* RUN npm install -g yarn@1.12.1 -ENV GOVERSION 1.11.3 +ENV GOVERSION 1.11.4 RUN mkdir /goroot && mkdir /gopath RUN curl https://storage.googleapis.com/golang/go${GOVERSION}.linux-amd64.tar.gz \ | tar xvzf - -C /goroot --strip-components=1 diff --git a/terraform/aws/variables.tf b/terraform/aws/variables.tf index c5be4b9dde..64ffc78b62 100644 --- a/terraform/aws/variables.tf +++ b/terraform/aws/variables.tf @@ -3,7 +3,7 @@ //------------------------------------------------------------------- variable "download-url" { - default = "https://releases.hashicorp.com/vault/1.0.1/vault_1.0.1_linux_amd64.zip" + default = "https://releases.hashicorp.com/vault/1.0.2/vault_1.0.2_linux_amd64.zip" description = "URL to download Vault" } diff --git a/vendor/github.com/hashicorp/vault-plugin-secrets-kv/upgrade.go b/vendor/github.com/hashicorp/vault-plugin-secrets-kv/upgrade.go index 309d9ea847..b75ece0af7 100644 --- a/vendor/github.com/hashicorp/vault-plugin-secrets-kv/upgrade.go +++ b/vendor/github.com/hashicorp/vault-plugin-secrets-kv/upgrade.go @@ -28,7 +28,7 @@ func (b *versionedKVBackend) upgradeCheck(next framework.OperationFunc) framewor time.Sleep(15 * time.Millisecond) if atomic.LoadUint32(b.upgrading) == 1 { - return logical.ErrorResponse("Uprading from non-versioned to versioned data. This backend will be unavailable for a brief period and will resume service shortly."), logical.ErrInvalidRequest + return logical.ErrorResponse("Upgrading from non-versioned to versioned data. This backend will be unavailable for a brief period and will resume service shortly."), logical.ErrInvalidRequest } } diff --git a/vendor/vendor.json b/vendor/vendor.json index ede22917ae..5bd3499518 100644 --- a/vendor/vendor.json +++ b/vendor/vendor.json @@ -1479,10 +1479,10 @@ "revisionTime": "2018-12-12T18:25:53Z" }, { - "checksumSHA1": "0Uh543eKwac5M7mSsijM0GNekto=", + "checksumSHA1": "yhUUqN5rbEXnfI8WfGUofXToD+o=", "path": "github.com/hashicorp/vault-plugin-secrets-kv", - "revision": "2236f141171e282e0d3d2c5bb6c695e4def5302f", - "revisionTime": "2018-11-06T19:05:20Z" + "revision": "9dbe04db0e34c9c3c75bedcdb16d8ff78f0c54bd", + "revisionTime": "2018-12-19T17:59:33Z" }, { "checksumSHA1": "ldkAQ1CpiAaQ9sti0qIch+UyRsI=", diff --git a/version/version_base.go b/version/version_base.go index 60afda6903..9fe8ab27fc 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 = "1.0.1" + Version = "1.0.2" // 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 d90a63ccd6..697dbc206f 100644 --- a/website/config.rb +++ b/website/config.rb @@ -6,7 +6,7 @@ use ReshapeMiddleware, component_file: "assets/reshape.js" activate :hashicorp do |h| h.name = "vault" - h.version = "1.0.1" + h.version = "1.0.2" h.github_slug = "hashicorp/vault" h.website_root = "website" h.releases_enabled = true