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

Commit e709116

Browse files
committed
Update CHANGELOG
1 parent 3201ef6 commit e709116

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ NEW FEATURES:
1212
* `dep ensure` now explains what changes to the code or Gopkg.toml have induced solving ([#1912](https://github.com/golang/dep/pull/1912)).
1313
* Hash digests of vendor contents are now stored in `Gopkg.lock`, and the contents of vendor are only rewritten on change or hash mismatch ([#1912](https://github.com/golang/dep/pull/1912)).
1414
* Added support for ppc64/ppc64le.
15+
* New subcommand `dep check` quickly reports if imports, Gopkg.toml, Gopkg.lock, and vendor are out of sync ([#1932](https://github.com/golang/dep/pull/1932)).
1516

1617
BUG FIXES:
1718

@@ -23,6 +24,7 @@ IMPROVEMENTS:
2324
* Reduce network access by trusting local source information and only pulling from upstream when necessary ([#1250](https://github.com/golang/dep/pull/1250)).
2425
* Update our dependency on Masterminds/semver to follow upstream again now that [Masterminds/semver#67](https://github.com/Masterminds/semver/pull/67) is merged([#1792](https://github.com/golang/dep/pull/1792)).
2526
* `inputs-digest` was removed from `Gopkg.lock` ([#1912](https://github.com/golang/dep/pull/1912)).
27+
* Hash digests of vendor contents are now stored in `Gopkg.lock`, and the contents of vendor are only rewritten on change or hash mismatch ([#1912](https://github.com/golang/dep/pull/1912)).
2628
* Don't exclude `Godeps` folder ([#1822](https://github.com/golang/dep/issues/1822)).
2729

2830
WIP:

cmd/dep/check.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const checkLongHelp = `
2121
Check determines if your project is in a good state. If problems are found, it
2222
prints a description of each issue, then exits 1. Passing -q suppresses output.
2323
24-
Flags control which specific checks will be run. By default,dep check verifies
24+
Flags control which specific checks will be run. By default, dep check verifies
2525
that Gopkg.lock is in sync with Gopkg.toml and the imports in your project's .go
2626
files, and that the vendor directory is in sync with Gopkg.lock. These checks
2727
can be disabled with -skip-lock and -skip-vendor, respectively.

0 commit comments

Comments
 (0)