-
Notifications
You must be signed in to change notification settings - Fork 205
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
Allow ember-cli-rails-assets < 1.0 #599
Allow ember-cli-rails-assets < 1.0 #599
Conversation
@tricknotes I've pinged you on seanpdoyle/ember-cli-rails-assets#18 (comment), but you might not've received a notification since it's a different repository. |
@seanpdoyle This is a dependency issue. A new version of ember-cli-rails with this change will fix CI of seanpdoyle/ember-cli-rails-assets#18. To make ready this PR, I fixed rails main CI in #601. Could you review all of them? |
94f4101
to
e19de5e
Compare
Thanks for merge #601, @seanpdoyle ! |
ember-cli-rails.gemspec
Outdated
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec| | |||
|
|||
spec.required_ruby_version = ">= 2.5.0" | |||
|
|||
spec.add_dependency "ember-cli-rails-assets", "~> 0.6.2" | |||
spec.add_dependency "ember-cli-rails-assets", ">= 0.6.2", "< 0.8" |
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.
What makes it important that the version is < 0.8
?
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 for this is to prevent break due to dependency's breaking changes.
However, It can be more loose.
How do you think about changing it as "< 1.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.
Thanks for your reaction 👍
Updated e015ff1
It will be release in seanpdoyle/ember-cli-rails-assets#18.
e19de5e
to
e015ff1
Compare
It will be release in seanpdoyle/ember-cli-rails-assets#18.