Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit be9cb19

Browse files
committed
Merge branch 'master' into fastwalk
2 parents 3e7eaee + 231ebf2 commit be9cb19

File tree

192 files changed

+3614
-2900
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

192 files changed

+3614
-2900
lines changed

.codeclimate.yml

+6
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,15 @@ engines:
33
enabled: true
44
govet:
55
enabled: true
6+
golint:
7+
enabled: true
8+
fixme:
9+
enabled: true
610
ratings:
711
paths:
812
- "**.go"
913
exclude_paths:
1014
- vendor/
1115
- internal/gps/_testdata
16+
- cmd/dep/testdata
17+
- testdata

.travis.yml

+46-35
Original file line numberDiff line numberDiff line change
@@ -3,42 +3,53 @@ language: go
33
sudo: false
44
notifications:
55
email: false
6-
matrix:
6+
jobs:
77
include:
8-
- os: linux
9-
go: 1.7.x
10-
- os: linux
8+
- stage: test
9+
install:
10+
- go get -u honnef.co/go/tools/cmd/{gosimple,staticcheck}
11+
- npm install -g codeclimate-test-reporter
12+
env:
13+
- DEPTESTBYPASS501=1
14+
os: linux
1115
go: 1.8.x
12-
- os: linux
16+
script:
17+
- go build -v ./cmd/dep
18+
- PKGS=$(go list ./... | grep -v /vendor/)
19+
- go vet $PKGS
20+
- staticcheck $PKGS
21+
- gosimple $PKGS
22+
- ./hack/validate-vendor.bash
23+
- go build ./hack/licenseok
24+
- find . -path ./vendor -prune -o -type f -name "*.go" -printf '%P\n' | xargs ./licenseok
25+
- set -e; for pkg in $PKGS; do go test -race -coverprofile=profile.out -covermode=atomic $pkg; if [[ -f profile.out ]]; then cat profile.out >> coverage.txt; rm profile.out; fi; done
26+
after_success:
27+
- codeclimate-test-reporter < coverage.txt
28+
# YAML alias, for settings shared across the simpler builds
29+
- &simple-test
30+
go: 1.7.x
31+
stage: test
32+
install: skip
33+
env:
34+
- DEPTESTBYPASS501=1
35+
script: go test -race $(go list ./... | grep -v vendor)
36+
- <<: *simple-test
1337
go: tip
14-
- os: osx
38+
- <<: *simple-test
39+
os: osx
1540
go: 1.8.x
16-
env:
17-
# Flip bit to bypass tests - see dep#501 for more information
18-
- DEPTESTBYPASS501=1
19-
install:
20-
- echo "This is an override of the default install deps step in travis."
21-
before_script:
22-
# OSX as of El Capitan sets an exit trap that interacts poorly with our
23-
# set -e below. So, unset the trap.
24-
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
25-
- if [[ "$(go env GOHOSTOS)" == "darwin" ]]; then trap EXIT; fi
26-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
27-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install bzr; fi
28-
- PKGS=$(go list ./... | grep -v /vendor/ | grep -v _testdata/ )
29-
- go get -v honnef.co/go/tools/cmd/{gosimple,staticcheck}
30-
- npm install -g codeclimate-test-reporter
31-
script:
32-
- go build -v ./cmd/dep
33-
- go vet $PKGS
34-
- staticcheck $PKGS
35-
#- ./hack/validate-gofmt.bash
36-
- ./hack/validate-vendor.bash
37-
- gosimple $PKGS
38-
#- go test -race $PKGS
39-
- go build ./hack/licenseok
40-
- set -e; for pkg in $PKGS; do go test -race -coverprofile=profile.out -covermode=atomic $pkg; if [[ -f profile.out ]]; then cat profile.out >> coverage.txt; rm profile.out; fi; done
41-
- find . -path ./vendor -prune -o -type f -name "*.go" -printf '%P\n' | xargs ./licenseok
42-
- ./hack/validate-vendor.bash
43-
after_success:
44-
- codeclimate-test-reporter < coverage.txt
41+
install:
42+
# brew takes horribly long to update itself despite the above caching
43+
# attempt; only bzr install if it's not on the $PATH
44+
- test $(which bzr) || brew install bzr
45+
env:
46+
- HOMEBREW_NO_AUTO_UPDATE=1
47+
- DEPTESTBYPASS501=1
48+
script:
49+
# OSX as of El Capitan sets an exit trap that interacts poorly with how
50+
# travis seems to spawn these shells; if set -e is set, then it can cause
51+
# build failures. We're not doing that here, but retain the trap statement
52+
# for future safety.
53+
# Related: https://superuser.com/questions/1044130/why-am-i-having-how-can-i-fix-this-error-shell-session-update-command-not-f
54+
- trap EXIT
55+
- go test -race $(go list ./... | grep -v vendor)

CONTRIBUTING.md

+6
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ The gophers there will answer or ask you to file an issue if you've tripped over
2626
Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html)
2727
before sending patches.
2828

29+
The
30+
[help-wanted](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3Ahelp-wanted)
31+
label highlights issues that are well-suited for folks to jump in on. The
32+
[good-first-pr](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3Agood-first-pr)
33+
label further identifies issues that are particularly well-sized for newcomers.
34+
2935
Unless otherwise noted, the Dep source files are distributed under
3036
the BSD-style license found in the LICENSE file.
3137

FAQ.md

+125-5
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Please contribute to the FAQ! Found an explanation in an issue or pull request h
77
Summarize the question and quote the reply, linking back to the original comment.
88

99
* [What is the difference between Gopkg.toml (the "manifest") and Gopkg.lock (the "lock")?](#what-is-the-difference-between-gopkgtoml-the-manifest-and-gopkglock-the-lock)
10-
* [When should I use dependencies, overrides or required in the manifest?](#when-should-i-use-dependencies-overrides-required-or-ignored-in-the-manifest)
10+
* [When should I use `constraint`, `override` `required`, or `ignored` in the Gopkg.toml?](#when-should-i-use-constraint-override-required-or-ignored-in-gopkgtoml)
1111
* [What is a direct or transitive dependency?](#what-is-a-direct-or-transitive-dependency)
1212
* [Should I commit my vendor directory?](#should-i-commit-my-vendor-directory)
1313
* [Why is it `dep ensure` instead of `dep install`?](#why-is-it-dep-ensure-instead-of-dep-install)
@@ -18,6 +18,12 @@ Summarize the question and quote the reply, linking back to the original comment
1818
* [Can I put the manifest and lock in the vendor directory?](#can-i-put-the-manifest-and-lock-in-the-vendor-directory)
1919
* [Why did dep use a different revision for package X instead of the revision in the lock file?](#why-did-dep-use-a-different-revision-for-package-x-instead-of-the-revision-in-the-lock-file)
2020
* [Why is `dep` slow?](#why-is-dep-slow)
21+
* [How does `dep` handle symbolic links?](#how-does-dep-handle-symbolic-links)
22+
* [How do I roll releases that `dep` will be able to use?](#how-do-i-roll-releases-that-dep-will-be-able-to-use)
23+
* [How does `dep` decide what version of a dependency to use?](#how-does-dep-decide-what-version-of-a-dependency-to-use)
24+
* [What semver version should I use?](#what-semver-version-should-i-use)
25+
* [Is it OK to make backwards-incompatible changes now?](#is-it-ok-to-make-backwards-incompatible-changes-now)
26+
* [My dependers don't use `dep` yet. What should I do?](#my-dependers-dont-use-dep-yet-what-should-i-do)
2127

2228
## What is the difference between Gopkg.toml (the "manifest") and Gopkg.lock (the "lock")?
2329

@@ -26,10 +32,10 @@ Summarize the question and quote the reply, linking back to the original comment
2632
> This flexibility is important because it allows us to provide easy commands (e.g. `dep ensure -update`) that can manage an update process for you, within the constraints you specify, AND because it allows your project, when imported by someone else, to collaboratively specify the constraints for your own dependencies.
2733
-[@sdboyer in #281](https://github.com/golang/dep/issues/281#issuecomment-284118314)
2834

29-
## When should I use dependencies, overrides, required, or ignored in the manifest?
35+
## When should I use `constraint`, `override`, `required`, or `ignored` in `Gopkg.toml`?
3036

31-
* Use `dependencies` to constrain a [direct dependency](#what-is-a-direct-or-transitive-dependency) to a specific branch, version range, revision, or specify an alternate source such as a fork.
32-
* Use `overrides` to constrain a [transitive dependency](#what-is-a-direct-or-transitive-dependency). See [How do I constrain a transitive dependency's version?](#how-do-i-constrain-a-transitive-dependencys-version) for more details on how overrides differ from dependencies. Overrides should be used cautiously, sparingly, and temporarily.
37+
* Use `constraint` to constrain a [direct dependency](#what-is-a-direct-or-transitive-dependency) to a specific branch, version range, revision, or specify an alternate source such as a fork.
38+
* Use `override` to constrain a [transitive dependency](#what-is-a-direct-or-transitive-dependency). See [How do I constrain a transitive dependency's version?](#how-do-i-constrain-a-transitive-dependencys-version) for more details on how overrides differ from dependencies. Overrides should be used cautiously, sparingly, and temporarily.
3339
* Use `required` to explicitly add a dependency that is not imported directly or transitively, for example a development package used for code generation.
3440
* Use `ignored` to ignore a package and any of that package's unique dependencies.
3541

@@ -113,7 +119,7 @@ behave differently:
113119
Overrides are also discussed with some visuals in [the gps docs](https://github.com/sdboyer/gps/wiki/gps-for-Implementors#overrides).
114120

115121
## `dep` deleted my files in the vendor directory!
116-
First, sorry! 😞 We hope you were able to recover your files...
122+
If you just ran `dep init`, there should be a copy of your original vendor directory named `_vendor-TIMESTAMP` in your project root. The other commands do not make a backup before modifying the vendor directory.
117123

118124
> dep assumes complete control of vendor/, and may indeed blow things away if it feels like it.
119125
-[@peterbourgon in #206](https://github.com/golang/dep/issues/206#issuecomment-277139419)
@@ -178,4 +184,118 @@ gateway to all of these improvements.
178184

179185
There's another major performance issue that's much harder - the process of picking versions itself is an NP-complete problem in `dep`'s current design. This is a much trickier problem 😜
180186

187+
## How does `dep` handle symbolic links?
181188

189+
> because we're not crazy people who delight in inviting chaos into our lives, we need to work within one GOPATH at a time.
190+
-[@sdboyer in #247](https://github.com/golang/dep/pull/247#issuecomment-284181879)
191+
192+
Out of convenience, one might create a symlink to a directory within their `GOPATH`, e.g. `ln -s ~/go/src/github.com/golang/dep dep`. When `dep` is invoked it will resolve the current working directory accordingly:
193+
194+
- If the cwd is a symlink outside a `GOPATH` and links to directory within a `GOPATH`, or vice versa, `dep` chooses whichever path is within the `GOPATH`. If neither path is within a `GOPATH`, `dep` produces an error.
195+
- If both the cwd and resolved path are in the same `GOPATH`, an error is thrown since the users intentions and expectations can't be accurately deduced.
196+
- If the symlink is within a `GOPATH` and the real path is within a *different* `GOPATH` - an error is thrown.
197+
198+
This is the only symbolic link support that `dep` really intends to provide. In keeping with the general practices of the `go` tool, `dep` tends to either ignore symlinks (when walking) or copy the symlink itself, depending on the filesystem operation being performed.
199+
200+
## How do I roll releases that `dep` will be able to use?
201+
202+
In short: make sure you've committed your `Gopkg.toml` and `Gopkg.lock`, then
203+
just create a tag in your version control system and push it to the canonical
204+
location. `dep` is designed to work automatically with this sort of metadata
205+
from `git`, `bzr`, and `hg`.
206+
207+
It's strongly preferred that you use [semver](http://semver.org)-compliant tag
208+
names. We hope to develop documentation soon that describes this more precisely,
209+
but in the meantime, the [npm](https://docs.npmjs.com/misc/semver) docs match
210+
our patterns pretty well.
211+
212+
## How does `dep` decide what version of a dependency to use?
213+
214+
The full algorithm is complex, but the most important thing to understand is
215+
that `dep` tries versions in a [certain
216+
order](https://godoc.org/github.com/golang/dep/internal/gps#SortForUpgrade),
217+
checking to see a version is acceptable according to specified constraints.
218+
219+
- All semver versions come first, and sort mostly according to the semver 2.0
220+
spec, with one exception:
221+
- Semver versions with a prerelease are sorted after *all* non-prerelease
222+
semver. Within this subset they are sorted first by their numerical
223+
component, then lexicographically by their prerelease version.
224+
- The default branch(es) are next; the semantics of what "default branch" means
225+
are specific to the underlying source type, but this is generally what you'd
226+
get from a `go get`.
227+
- All other branches come next, sorted lexicographically.
228+
- All non-semver versions (tags) are next, sorted lexicographically.
229+
- Revisions, if any, are last, sorted lexicographically. Revisions do not
230+
typically appear in version lists, so the only invariant we maintain is
231+
determinism - deeper semantics, like chronology or topology, do not matter.
232+
233+
So, given a slice of the following versions:
234+
235+
- Branch: `master` `devel`
236+
- Semver tags: `v1.0.0` `v1.1.0` `v1.1.0-alpha1`
237+
- Non-semver tags: `footag`
238+
- Revision: `f6e74e8d`
239+
Sorting for upgrade will result in the following slice.
240+
241+
`[v1.1.0 v1.0.0 v1.1.0-alpha1 footag devel master f6e74e8d]`
242+
243+
There are a number of factors that can eliminate a version from consideration,
244+
the simplest of which is that it doesn't match a constraint. But if you're
245+
trying to figure out why `dep` is doing what it does, understanding that its
246+
basic action is to attempt versions in this order should help you to reason
247+
about what's going on.
248+
249+
## What semver version should I use?
250+
251+
This can be a nuanced question, and the community is going to have to work out
252+
some accepted standards for how semver should be applied to Go projects. At the
253+
highest level, though, these are the rules:
254+
255+
* Below `v1.0.0`, anything goes. Use these releases to figure out what you want
256+
your API to be.
257+
* Above `v1.0.0`, the general Go best practices continue to apply - don't make
258+
backwards-incompatible changes - exported identifiers can be added to, but
259+
not changed or removed.
260+
* If you must make a backwards-incompatible change, then bump the major version.
261+
262+
It's important to note that having a `v1.0.0` does not preclude you from having
263+
alpha/beta/etc releases. The semver spec allows for [prerelease
264+
versions](http://semver.org/#spec-item-9), and `dep` is careful to _not_ allow
265+
such versions unless `Gopkg.toml` contains a range constraint that explicitly
266+
includes prereleases: if there exists a version `v1.0.1-alpha4`, then the
267+
constraint `>=1.0.0` will not match it, but `>=1.0.1-alpha1` will.
268+
269+
Some work has been done towards [a tool
270+
to](https://github.com/bradleyfalzon/apicompat) that will analyze and compare
271+
your code with the last release, and suggest the next version you should use.
272+
273+
## Is it OK to make backwards-incompatible changes now?
274+
275+
Yes. But.
276+
277+
`dep` will make it possible for the Go ecosystem to handle
278+
backwards-incompatible changes more gracefully. However, `dep` is not some
279+
magical panacea. Version and dependency management is hard, and dependency hell
280+
is real. The longstanding community wisdom about avoiding breaking changes
281+
remains important. Any `v1.0.0` release should be accompanied by a plan for how
282+
to avoid future breaking API changes.
283+
284+
One good strategy may be to add to your API instead of changing it, deprecating
285+
old versions as you progress. Then, when the time is right, you can roll a new
286+
major version and clean out a bunch of deprecated symbols all at once.
287+
288+
Note that providing an incremental migration path across breaking changes (i.e.,
289+
shims) is tricky, and something we [don't have a good answer for
290+
yet](https://groups.google.com/forum/#!topic/go-package-management/fp2uBMf6kq4).
291+
292+
## My dependers don't use `dep` yet. What should I do?
293+
294+
For the most part, you needn't do anything differently.
295+
296+
The only possible issue is if your project is ever consumed as a library. If
297+
so, then you may want to be wary about committing your `vendor/` directory, as
298+
it can [cause
299+
problems](https://groups.google.com/d/msg/golang-nuts/AnMr9NL6dtc/UnyUUKcMCAAJ).
300+
If your dependers are using `dep`, this is not a concern, as `dep` takes care of
301+
stripping out nested `vendor` directories.

Gopkg.lock

+9-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

+6-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
1-
required = ["github.com/Masterminds/semver"]
2-
3-
[[dependencies]]
1+
[[constraint]]
42
branch = "2.x"
53
name = "github.com/Masterminds/semver"
64

7-
[[dependencies]]
5+
[[constraint]]
86
name = "github.com/Masterminds/vcs"
9-
version = "^1.11.0"
7+
version = "1.11.0"
108

11-
[[dependencies]]
9+
[[constraint]]
1210
branch = "master"
1311
name = "github.com/pelletier/go-toml"
1412

15-
[[dependencies]]
13+
[[constraint]]
1614
name = "github.com/pkg/errors"
17-
version = ">=0.8.0, <1.0.0"
15+
version = "0.8.0"

README.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@ Dep is a prototype dependency management tool. It requires Go 1.7 or newer to co
99
## Current status
1010

1111
**Alpha**.
12-
Functionality is known to be broken, missing or incomplete. Command and file format changes are still planned.
12+
Functionality is known to be broken, missing or incomplete. Changes are planned
13+
to the CLI commands soon.
1314
The repository is open to solicit feedback and contributions from the community.
1415
Please see below for feedback and contribution guidelines.
1516

17+
`Gopkg.toml` and `Gopkg.lock` have reached a stable structure, and it is safe to
18+
commit them in your projects. We plan to add more to these files, but we
19+
guarantee these changes will be backwards-compatible.
20+
1621
## Context
1722

1823
- [The Saga of Go Dependency Management](https://blog.gopheracademy.com/advent-2016/saga-go-dependency-management/)
@@ -44,11 +49,7 @@ To update a dependency to a new version, you might run
4449
$ dep ensure github.com/pkg/errors@^0.8.0
4550
```
4651

47-
See the help text for much more detailed usage instructions.
48-
49-
Note that **the manifest and lock file formats are not finalized**, and will likely change before the tool is released.
50-
We make no compatibility guarantees for the time being.
51-
Please don't commit any code or files created with the tool.
52+
See the help text for more detailed usage instructions.
5253

5354
## Feedback
5455

analyzer.go

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import (
88
"os"
99
"path/filepath"
1010

11+
"github.com/golang/dep/internal/fs"
1112
"github.com/golang/dep/internal/gps"
1213
)
1314

@@ -17,7 +18,7 @@ func (a Analyzer) DeriveManifestAndLock(path string, n gps.ProjectRoot) (gps.Man
1718
// TODO: If we decide to support other tools manifest, this is where we would need
1819
// to add that support.
1920
mf := filepath.Join(path, ManifestName)
20-
if fileOK, err := IsRegular(mf); err != nil || !fileOK {
21+
if fileOK, err := fs.IsRegular(mf); err != nil || !fileOK {
2122
// Do not return an error, when does not exist.
2223
return nil, nil, nil
2324
}

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ deploy: false
3434

3535
test_script:
3636
- go build github.com/golang/dep/cmd/dep
37-
- for /f "" %%G in ('go list github.com/golang/dep/... ^| find /i /v "/vendor/"') do @go test %%G
37+
- for /f "" %%G in ('go list github.com/golang/dep/... ^| find /i /v "/vendor/"') do ( go test %%G & IF ERRORLEVEL == 1 EXIT 1)

0 commit comments

Comments
 (0)