-
Notifications
You must be signed in to change notification settings - Fork 167
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
Incompatible http dependency in logstash #206
Comments
@moleksyuk would PR #204 solve this issue? Maybe not because @grosser is bumping to |
bump http in logstash to be ~> 2.0 instead ... it is unnecessary tighly locked |
basically they are both doing a silly thing and now they collided :D |
@moleksyuk @grosser I am worried about this because bumping a dependency of one (or more 😊 ) major versions is not backward compatible (e.g. what if a current user of this gem has a dependency on |
then they should bump ... "let us all stay on this old version together" is On Wed, Nov 2, 2016 at 4:17 PM, Federico Simoncelli <
|
Sure but just be aware that this will be scheduled with a major release of kubeclient as well (together with some other non-backward compatible cleanups and changes). |
sounds like a good plan :) On Wed, Nov 2, 2016 at 4:23 PM, Federico Simoncelli <
|
@grosser @moleksyuk can you update the PR reflecting the decision we made here? |
I believe this is solved.
|
Hi @abonas
I'm developing one logstash plugin with dependency on your
s.add_runtime_dependency 'kubeclient', '~> 2.1.0'
but I can't install it to logstash2.3.4
because logstash hashttp (0.9.9)
andkubeclient
depends strictly onspec.add_dependency 'http', '= 0.9.8'
.Do you plan to update it to newer version or specify not strict dependency?
The text was updated successfully, but these errors were encountered: