(BOLT-136) Bump ruby_task_helper upper bound to < 2.0.0 - #16
Merged
david22swan merged 1 commit intoMay 13, 2026
Merged
Conversation
gavindidrichsen
marked this pull request as ready for review
May 13, 2026 14:43
bastelfreak
reviewed
May 13, 2026
This was referenced May 13, 2026
Merged
Merged
ruby_task_helper is now at 1.0.1, which violates the existing < 1.0.0 upper bound and breaks Bolt module dependency resolution (BOLT-136). Bump the upper bound to < 2.0.0 to unblock 1.x while guarding against a hypothetical breaking 2.x release.
gavindidrichsen
force-pushed
the
bolt-136-maint-bump-ruby_task_helper-dependency
branch
from
May 13, 2026 16:12
43a817c to
7b2cf02
Compare
david22swan
approved these changes
May 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps the
ruby_task_helperdependency upper bound inmetadata.jsonfrom< 1.0.0to< 2.0.0, keeping the original lower bound:>= 0.5.1 < 1.0.0→>= 0.5.1 < 2.0.0.Background — BOLT-136
Bolt 5.x ships
ruby_task_helper 1.0.1(pinned in bolt-private's Puppetfile). Modules that declare an upper bound of< 1.0.0onruby_task_helpercause a dependency resolution failure when users runbolt module install:This blocks Puppet 8 / Bolt 5 users from installing any module bundle that includes this module alongside
ruby_task_helper >= 1.0.0.Change
The upper bound is bumped to
< 2.0.0(SemVer-aligned) to unblockruby_task_helper1.x while still guarding against a hypothetical breaking 2.x release.How it was tested
1. Constraint verification (before fix)
Confirmed the constraint violation exists with the published Forge version:
2. Cross-module Puppetfile resolution
Verified that all 5 affected modules resolve cleanly together with
ruby_task_helper 1.0.1using bolt's Puppetfile resolver. This confirms no remaining constraint conflicts across the module set.Related PRs
This is one of 5 coordinated PRs across affected modules:
puppetlabs-azure_inventory(this PR)All apply the same change: bump the
ruby_task_helperupper bound from< 1.0.0to< 2.0.0.