-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
pin thor to 1.3.0 #282
pin thor to 1.3.0 #282
Conversation
With thor 1.3.1 we've two failing tests: ``` Failing Scenarios: cucumber features/execute.feature:36 # Scenario: Show fail-fast default value in help cucumber features/execute.feature:44 # Scenario: Override fail-fast default value using config file ``` as a workaround to get CI green again we'r pinning to 1.3.0. I think the bug is fixed in rails/thor#878 but not yet released.
@@ -27,5 +27,5 @@ Gem::Specification.new do |spec| | |||
spec.add_runtime_dependency 'gitlab', '~>4.0' | |||
spec.add_runtime_dependency 'octokit', '>=4', '<9' | |||
spec.add_runtime_dependency 'puppet-blacksmith', '>= 3.0', '< 8' | |||
spec.add_runtime_dependency 'thor' | |||
spec.add_runtime_dependency 'thor', '1.3.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 it have pinned to NOT 1.3.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.
I think that's correct? 1.3.1 has a regression and rails/thor#878 contains a potential fix.
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 meant to pin to != 1.3.1
. I shouldn't send comments as I'm changing trains using the mobile app. Never ends 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.
ah ok. I considered that, but I don't know if the fix will be in 1.3.2 or later. So I think the safer way is pinning to 1.3.0 and dependabot will inform us for new releases.
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.
The reason I mention it is because dependabot also informed us about 1.3.1, but yes, this stuff is always annoying
With thor 1.3.1 we've two failing tests:
as a workaround to get CI green again we'r pinning to 1.3.0. I think the bug is fixed in rails/thor#878 but not yet released.