This repository has been archived by the owner on Apr 14, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Make version conflict messages better #6647
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Aug 1, 2018
I am very excited about this, thanks @segiddins! |
indirect
approved these changes
Aug 1, 2018
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.
yesssssss
Thanks! @bundlerbot r+ |
📌 Commit 141936b has been approved by |
bundlerbot
added a commit
that referenced
this pull request
Aug 5, 2018
…, r=colby-swandale [DNM] Make version conflict messages better This is a WIP. Need to wait until CocoaPods/Molinillo#99 is merged & released ### What was the end-user problem that led to this PR? The problem was Bundler version messages could be confusing. Closes #6642 Closes #6620 ### What was your diagnosis of the problem? My diagnosis was we barf out a bunch of "conflicts", not all of which are actually conflicts. We could also print a whole bunch of requirements that didn't _actually_ contribute to the conflict at hand. Messaging was also super weird when there were `required_ruby_version` conflicts, since we called "ruby" a gem. ### What is your fix for the problem, implemented in this PR? Improves Bundler version conflict messages in multiple cases. (conflict on `required_ruby_version`, conflict on 2.0 containing redundant platforms, conflict on 2.0 not being reduced to minimal form, showing irrelevant conflicts that dont actually conflict, actually reducing all type of conflicts to the minimal set). ### Why did you choose this fix out of the possible options? I chose this fix because...
💔 Test failed - status-travis |
(sorry I forgot the note at the top) |
Also avoid mutating the original exception message to generate the message we want
segiddins
force-pushed
the
segiddins/conflict-message-improvements
branch
from
August 7, 2018 06:08
114d9ae
to
fcc4b60
Compare
segiddins
changed the title
[DNM] Make version conflict messages better
Make version conflict messages better
Aug 7, 2018
@bundlerbot r+ |
📌 Commit 48f6a18 has been approved by |
bundlerbot
added a commit
that referenced
this pull request
Aug 14, 2018
…, r=indirect Make version conflict messages better ~~This is a WIP. Need to wait until CocoaPods/Molinillo#99 is merged & released~~ ### What was the end-user problem that led to this PR? The problem was Bundler version messages could be confusing. Closes #6642 Closes #6620 ### What was your diagnosis of the problem? My diagnosis was we barf out a bunch of "conflicts", not all of which are actually conflicts. We could also print a whole bunch of requirements that didn't _actually_ contribute to the conflict at hand. Messaging was also super weird when there were `required_ruby_version` conflicts, since we called "ruby" a gem. ### What is your fix for the problem, implemented in this PR? Improves Bundler version conflict messages in multiple cases. (conflict on `required_ruby_version`, conflict on 2.0 containing redundant platforms, conflict on 2.0 not being reduced to minimal form, showing irrelevant conflicts that dont actually conflict, actually reducing all type of conflicts to the minimal set). ### Why did you choose this fix out of the possible options? I chose this fix because...
☀️ Test successful - status-travis |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a WIP. Need to wait until CocoaPods/Molinillo#99 is merged & releasedWhat was the end-user problem that led to this PR?
The problem was Bundler version messages could be confusing.
Closes #6642
Closes #6620
What was your diagnosis of the problem?
My diagnosis was we barf out a bunch of "conflicts", not all of which are actually conflicts. We could also print a whole bunch of requirements that didn't actually contribute to the conflict at hand.
Messaging was also super weird when there were
required_ruby_version
conflicts, since we called "ruby" a gem.What is your fix for the problem, implemented in this PR?
Improves Bundler version conflict messages in multiple cases. (conflict on
required_ruby_version
, conflict on 2.0 containing redundant platforms, conflict on 2.0 not being reduced to minimal form, showing irrelevant conflicts that dont actually conflict, actually reducing all type of conflicts to the minimal set).Why did you choose this fix out of the possible options?
I chose this fix because...