From c941ddd41958a5f18ddb1c9ae4ed91e1bb98ba1a Mon Sep 17 00:00:00 2001 From: Lukas Audzevicius Date: Wed, 9 Nov 2022 10:49:13 +0000 Subject: [PATCH] (CONT-5) Raising minimum required puppet version Prior to this commit, and as part of the codebase hardening project, we sanitised some commands in the module. However, this sanitisation method requires that users have at least puppet version 6.24.0 and onwards to be effective. This commit aims to resolve that requirement by raising the required puppet version in the metadata.json file. --- metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata.json b/metadata.json index f96f12e..de1213d 100644 --- a/metadata.json +++ b/metadata.json @@ -79,7 +79,7 @@ "requirements": [ { "name": "puppet", - "version_requirement": ">= 6.0.0 < 8.0.0" + "version_requirement": ">= 6.24.0 < 8.0.0" } ], "template-url": "https://github.com/puppetlabs/pdk-templates.git#main", -- 2.45.2