-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for bolt 4.x #529
Conversation
@@ -6,7 +6,7 @@ | |||
function peadm::assert_supported_bolt_version ( | |||
# No arguments | |||
) >> Struct[{ 'supported' => Boolean }] { | |||
$supported_bolt_version = '>= 3.17.0 < 4.0.0' | |||
$supported_bolt_version = '>= 3.17.0 < 5.0.0' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we update the version in the gem file as well?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked that before raising the PR, the Gemfile doesn't pin the version.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like CI is still pulling in v3.x of the bolt gem because of the puppet_litmus dependency. We're working on getting that updated ASAP.
If that can't be done in the next few days I've got a workaround we can add so that we're testing against Bolt 4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Litmus updated for bolt4 now. Closing and reopening to rekick CI
Summary
Provide a detailed description of all the changes present in this pull request.
Additional Context
Add any additional context about the problem here.
Related Issues (if any)
Mention any related issues or pull requests.
Checklist
Changes include test coverage?
Have you updated the documentation?