Replies: 2 comments
-
Hi! Thanks for your question. I think I guess to implement this feature we would need a separate flag, like |
Beta Was this translation helpful? Give feedback.
0 replies
-
This is being tracked as an issue at #7117, so let's consolidate the discussion in there. You're right this used to work as you point out. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Given the Gemfile:
and the Gemfile.lock:
Running
bundle update --group test
updatesactivesupport
,i18n
andminitest
.Running
bundle update --group test --conservative
updatesactivesupport
only.Is there a way of updating just
activesupport
andminitest
but not touchingi18n
(because it's declared directly in the Gemfile)? i.e. Update all gems in the group plus their dependencies, unless the dependencies are shared with gems defined outside of the groupI think this is what
--conservative
used to do, but was changed in #4319.Beta Was this translation helpful? Give feedback.
All reactions