Skip to content
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.

Releases: tools/godep

v30: Adds option to get subcommand to download test package dependencies.

03 Dec 00:18
Compare
Choose a tag to compare
Adds option to get subcommand to download test package dependencies.

v29: Temp work around to fix issue with LICENSE files.

17 Nov 17:57
Compare
Choose a tag to compare
Fixed issue where LICENSE files within dependencies vendor directories
would be re-vendored, resulting in failing builds.

Added test case for legal files within vendored directory

v28: Better version command

09 Nov 17:04
Compare
Choose a tag to compare
Makes this a real command, listed in the help output.

v27: run command once during restore -v

06 Nov 18:54
Compare
Choose a tag to compare

Running godep restore -v would always error out because the CombinedOutput command did a Run under the hood, and the second Run at the end of restore would error out.

Along the way, I added some more context (and a couple of newlines) to the restore error prints to figure out what was going on.

v26: path.Clean update args (paths)

06 Nov 04:31
Compare
Choose a tag to compare
This is a better alternative as it cleans all possible crazy input.

/cc @kr

v25: `godep update package/` == `godep update package`

06 Nov 01:57
Compare
Choose a tag to compare

v24: Honor -t during update. Fixes #312

06 Nov 01:42
Compare
Choose a tag to compare
I'm not sure this is a great long term solution, but it would unblock
people running into this now.

v23: Do not use --debug to find hg identify revision

05 Nov 19:41
Compare
Choose a tag to compare
When an hg extension uses a post-identify hook it also outputs a debug statement notifying that the hook has executed.  godep uses 'identify --id --debug' to get the current full revision identifier.  The --debug causes the post-identify hook debug statement to be output which godep sees as being a 'dirty working tree' and fails

v22

05 Nov 00:28
Compare
Choose a tag to compare
v22
Fix GO15VENDOREXPERIMENT thinko.

v21: Fixes #310

04 Nov 01:51
Compare
Choose a tag to compare
If your fs is case insensitive and your $GOPATH contains a path with a
capital letter (ex. ~/Documents/go), but you work in the lower case
version (ex. ~/documents/go) then godep save will spit out errors about
skipping untracked files.

This is because go list will output the lower case paths, but the
various file inspections godep does end up with upper case names.

So use strings.EqualFold to check across cases.