From 7c53d0e2d74e4c6052cfedf2ae99f1b8012bf5d0 Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 30 Jan 2020 11:09:28 -0800 Subject: [PATCH 1/2] docs: bump 0.10.2 -> 0.10.3 --- demo/vagrant/Vagrantfile | 2 +- website/config.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demo/vagrant/Vagrantfile b/demo/vagrant/Vagrantfile index 70c8854bc..d41812b17 100644 --- a/demo/vagrant/Vagrantfile +++ b/demo/vagrant/Vagrantfile @@ -25,7 +25,7 @@ sudo docker --version sudo apt-get install unzip curl vim -y echo "Installing Nomad..." -NOMAD_VERSION=0.10.2 +NOMAD_VERSION=0.10.3 cd /tmp/ curl -sSL https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_amd64.zip -o nomad.zip unzip nomad.zip diff --git a/website/config.rb b/website/config.rb index f99ab9e15..c03fd6f98 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ set :base_url, "https://www.nomadproject.io/" activate :hashicorp do |h| h.name = "nomad" - h.version = "0.10.2" + h.version = "0.10.3" h.github_slug = "hashicorp/nomad" end From 0cd7eea939014d0d77ed6c1c2db45ec13841c54c Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Thu, 30 Jan 2020 15:24:33 -0800 Subject: [PATCH 2/2] docs: add v0.10.3 release to changelog --- CHANGELOG.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef668d037..ac85f7b9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.10.3 (Unreleased) +## 0.10.4 (Unreleased) FEATURES: @@ -26,6 +26,17 @@ BUG FIXES: * scheduler: Fixed a bug that caused evicted allocs on a lost node to be stuck in running. [[GH-6902](https://github.com/hashicorp/nomad/issues/6902)] * scheduler: Fixed a bug where `nomad job plan/apply` returned errors instead of a partial placement warning for ineligible nodes. [[GH-6968](https://github.com/hashicorp/nomad/issues/6968)] +## 0.10.3 (January 29, 2020) + +SECURITY: + + * agent: Added unauthenticated connection timeouts and limits to prevent resource exhaustion. CVE-2020-7218 [GH-7002] + * server: Fixed insufficient validation for role and region for RPC connections when TLS enabled. CVE-2020-7956 [GH-7003] + +IMPROVEMENTS: + + * build: Updated to Go 1.12.16 + ## 0.10.2 (December 4, 2019) NOTES: