From ae27b38888bffb60c98a3b5b59a8954fb38df32b Mon Sep 17 00:00:00 2001 From: Frederic Schaer Date: Wed, 7 Nov 2018 13:53:39 +0100 Subject: [PATCH] allow more recent puppet modules in metadata.json Allow much newer puppet modules to be deployed when using automatic dependencies lookup. This will allow deploying puppet5 and puppet6 compatible modules, and will prevent keeping back some core modules such as mysql. The only exception is puppetlabs/rabbitmq which was left untouched, as this might require coordination with other openstack puppet modules since puppetlabs/rabbitmq was handed over to puppet/rabbitmq (from Vox Pupuli) and is now version 8.4.0 (compared to the old 5.6.0 in the current requirement), and thus other openstack puppet modules should require the same module to prevent module names collision. Change-Id: I10fe1cf1429181ea3e6b325193be7b39773005b4 --- metadata.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata.json b/metadata.json index 7b9ef246..b4a7df5c 100644 --- a/metadata.json +++ b/metadata.json @@ -11,7 +11,7 @@ }, { "name": "puppetlabs/mysql", - "version_requirement": ">=3.10.0 <4.0.0" + "version_requirement": ">=3.10.0 <8.0.0" }, { "name": "puppetlabs/stdlib", @@ -23,7 +23,7 @@ }, { "name": "puppetlabs/postgresql", - "version_requirement": ">=3.3.0 <5.0.0" + "version_requirement": ">=3.3.0 <5.10.0" } ], "description": "Puppet module library to expose common functionality between OpenStack modules.",