From 88169c76db9b9428b960129d5a3b73eea24e1e68 Mon Sep 17 00:00:00 2001 From: jordanbreen28 Date: Thu, 5 Sep 2024 15:37:41 +0100 Subject: [PATCH] (bug) - Pin yard to < 0.9.37 Yard 0.9.37 was released, which broke our pipeline and also broke some module CI. This commit adds a temporary pin to the gem to < 0.9.37, until we can resolve these issues. --- puppet-strings.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppet-strings.gemspec b/puppet-strings.gemspec index 6a8d216f..13240f75 100644 --- a/puppet-strings.gemspec +++ b/puppet-strings.gemspec @@ -23,6 +23,6 @@ Gem::Specification.new do |s| s.files = Dir['CHANGELOG.md', 'README.md', 'LICENSE', 'lib/**/*', 'exe/**/*'] s.add_runtime_dependency 'rgen', '~> 0.9' - s.add_runtime_dependency 'yard', '~> 0.9' + s.add_runtime_dependency 'yard', '~> 0.9', '< 0.9.37' s.requirements << 'puppet, >= 7.0.0' end