(BOLT-136) Remove upper bound from ruby_task_helper dependency - #41
Closed
gavindidrichsen wants to merge 0 commit into
Closed
(BOLT-136) Remove upper bound from ruby_task_helper dependency#41gavindidrichsen wants to merge 0 commit into
gavindidrichsen wants to merge 0 commit into
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
Merged
gavindidrichsen
force-pushed
the
bolt-136-maint-bump-ruby_task_helper-dependency
branch
from
May 13, 2026 16:06
6dee458 to
5bf8092
Compare
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.1.0 <= 1.0.0→>= 0.1.0 < 2.0.0.Note: This module previously had its upper bound bumped from
< 1.0.0to<= 1.0.0via PR #37. This PR further widens it to< 2.0.0to align with the approach taken across all other affected modules.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.0(or<= 1.0.0which excludes 1.0.1) onruby_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 original constraint violation 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-terraform(this PR)All apply the same change: bump the
ruby_task_helperupper bound to< 2.0.0.