| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Godep is long deprecated and modules is the future.
Updating dependencies with godep is painful and non-transparent.
This will hopefully help to create custom golangci-lint linters.
The change was created with:
go mod init
rm -rf vendor
go mod vendor
Fixes #1247
|
| |
|
|
| |
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
|
| |
|
|
|
|
| |
Required to switch dashboard/app to go1.11.
Update #1461
|
| |
|
|
|
| |
To pick up fix for:
https://github.com/google/go-cmp/issues/103
|
| |
|
|
|
|
| |
Add the new package required by pkg/report/fuchsia.go.
Also update everything else because there does not seem
to be a way to add a package without a wholesale update.
|
| |
|
|
| |
This package simplifies diffing complex objects in tests.
|
| |
|
|
|
|
| |
google.golang.org/api/compute/v0.beta again changed public interfaces
which causes breakages in other build environments.
Update everything to HEAD.
|
| |
|
|
| |
For sending emails from appengine apps.
|
| | |
|
| | |
|
|
|
dep tool vendored too much code (100MB) including tests and unused packages.
godep vendored significantly less (12MB) without tests and unused packages.
The main advantage is that pre-Go1.9 toolchain does not run tests
of all vendor packages now.
|