From eb3db0df9e0b1d6c955fc4fdef7df79852b7a9a9 Mon Sep 17 00:00:00 2001 From: Ben Abrams Date: Fri, 1 Jun 2018 13:27:28 -0700 Subject: [PATCH] properly lock to minimum required version of chef client. Signed-off-by: Ben Abrams --- CHANGELOG.md | 3 +++ metadata.rb | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ae300b5..72b2927a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ cookbook. Please see HISTORY.md for changes from older versions of this project. ## [Unreleased] +### Fixed +- metadata now properly requires chef client to be `>= 13.3` this is a follow up to the v5.0.0 release which locked it at `>= 12.14` but after digging into it the change requires a newer version. As chef 12 is EOL we are gonna roll forward rather than backwards (@majormoses) + ## [5.1.1] - 2018-05-30 ### Fixed - version detection for server 2008 (@smcavallo) diff --git a/metadata.rb b/metadata.rb index adcfa422..d2229c78 100644 --- a/metadata.rb +++ b/metadata.rb @@ -42,4 +42,4 @@ source_url 'https://github.com/sensu/sensu-chef' issues_url 'https://github.com/sensu/sensu-chef/issues' -chef_version '>= 12.14' +chef_version '>= 13.3'