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

Commit 276ead9

Browse files
authored
Merge branch 'master' into recursive-ignore
2 parents 4376248 + 07298e2 commit 276ead9

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,22 @@
33
NEW FEATURES:
44

55
* Wildcard ignore support. (#1156)
6+
* Disable SourceManager lock by setting `DEPNOLOCK` environment variable.
7+
(#1206)
68

79
BUG FIXES:
810

11+
* gps: Fix case mismatch error with multiple dependers. (#1233)
912
* Skip broken `vendor` symlink rather than returning an error. (#1191)
1013
* Fix `status` shows incorrect reason for lock mismatch when ignoring packages.
1114
(#1216)
1215

1316
IMPROVEMENTS:
1417

18+
* Allow `dep ensure -add` and `-update` when lock is out-of-sync. (#1225)
19+
* gps: vcs: Dedupe git version list (#1212)
20+
* gps: Add prune functions to gps. (#1020)
21+
* gps: Skip broken vendor symlinks. (#1191)
1522
* `dep ensure -add` now concurrently fetches the source and adds the projects.
1623
(#1218)
1724
* File name case check is now performed on `Gopkg.toml` and `Gopkg.lock`.
@@ -21,6 +28,13 @@ IMPROVEMENTS:
2128
Improving performance when updating dependencies with `-update`. (#1175)
2229
* `dep status` now concurrently fetches repo info. Improving status performance.
2330
(#1135)
31+
* gps: Add SourceURLsForPath() to SourceManager. (#1166)
32+
* gps: Include output in error. (#1180)
33+
34+
WIP:
35+
36+
* gps: Process canonical import paths. (#1017)
37+
* gps: Persistent cache. (#1127, #1215)
2438

2539

2640
# v0.3.1

CONTRIBUTING.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html
3030
before sending patches.
3131

3232
The
33-
[help-wanted](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3Ahelp-wanted)
33+
[help wanted](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3Ahelp wanted)
3434
label highlights issues that are well-suited for folks to jump in on. The
35-
[good-first-pr](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3Agood-first-pr)
35+
[good first issue](https://github.com/golang/dep/issues?q=is%3Aissue+is%3Aopen+label%3Agood first issue)
3636
label further identifies issues that are particularly well-sized for newcomers.
3737

3838
Unless otherwise noted, the `dep` source files are distributed under
@@ -79,6 +79,7 @@ again.
7979
### Issue management
8080

8181
* We use [Zenhub](https://www.zenhub.com) to manage the queue, in addition to what we do with labels.
82+
* You will need to install [ZenHub extension](https://www.zenhub.com/extension) to your browser to show the board.
8283
* Pipelines, and [the board](https://github.com/golang/dep#boards) are one thing we try to utilize:
8384
* **New Issues Pipeline**: When someone creates a new issue, it goes here first. Keep an eye out for issues that fall into your area. Add labels to them, and if it's something we should do, put it in the `Backlog` pipeline. If you aren't sure, throw it in the `Icebox`. It helps to sort this pipeline by date.
8485
* **Icebox Pipeline**: Issues that we aren't immediately closing but aren't really ready to be prioritized and started on. It's not a wontfix bucket, but a "not sure if we should/can fix right now" bucket.

hack/validate-gofmt.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# and is passing for certain directories in the project.
88
#
99
# Here we use `go list` to help determine which packages
10-
# we need to check for `go gmt`
10+
# we need to check for `go fmt`
1111
#
1212
# EXIT 0 - The check is successful
1313
# EXIT 1 - The check has failed
@@ -35,4 +35,4 @@ for PKG in $PKGS; do
3535
exit 1
3636
fi
3737
done;
38-
exit 0
38+
exit 0

0 commit comments

Comments
 (0)