This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1k
Meta-merge of all changes to stabilize Gopkg.{toml,lock} #644
Merged
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
ff254a8
rename for constraint
felipeweb b76e416
fixtures rename
felipeweb 942792a
fix tests
felipeweb bb8a327
update Gopkg.toml
felipeweb 5cb3e51
rename [[overrides]] to [[override]]
felipeweb 8be9bb6
Split input components out in Gopkg.lock
sdboyer 2081136
s/LockFromInterface/LockFromSolution/
sdboyer bf737b6
Expand Solver, Solution to report name/version
sdboyer 75ac569
Incorporate solver name and version in Gopkg.lock
sdboyer f6c2b15
Incorporate lock split-up into integration branch
sdboyer f0a81f4
Incorporate pr/538, change manifest prop names
sdboyer 0081879
Respond to review
sdboyer ab84520
Merge branch 'split-up-hash' into stabilize-files
sdboyer 2e9aecc
Update FAQ with new Gopkg.toml key names
sdboyer a75d6d2
Support implied carets in gps
carolynvs ecf43b9
Always use implied carets in dep
carolynvs 5285e62
Preserve previous test behavior before implied caret
carolynvs 8dcaab5
Fix deduceConstraint test to not rely upon the types being comparable
carolynvs 16e350f
Update testdata now that init omits carets in the manifest
carolynvs a926aa2
Incorporate implicit caret into stabilize-files
sdboyer f1bd538
Tidy up docs a bit
sdboyer 4df9c95
Update Gopkg.toml, Gopkg.lock to new forms
sdboyer ec6c4e8
Fix out-of-date vendor
sdboyer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,15 @@ | ||
required = ["github.com/Masterminds/semver"] | ||
|
||
[[constraint]] | ||
branch = "2.x" | ||
name = "github.com/Masterminds/semver" | ||
|
||
[[constraint]] | ||
name = "github.com/Masterminds/vcs" | ||
version = "^1.11.0" | ||
version = "1.11.0" | ||
|
||
[[constraint]] | ||
branch = "master" | ||
name = "github.com/pelletier/go-toml" | ||
|
||
[[constraint]] | ||
name = "github.com/pkg/errors" | ||
version = ">=0.8.0, <1.0.0" | ||
version = "0.8.0" |
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.
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.
Why was this
required
to begin with? I would have thought the direct dependency (below) would have been enough, so I'm not sure why it was needed before and not anymore?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.
for a while there (pre gps move) we didn't directly import it, and thus couldn't constrain it, so we kept getting the wrong version.