aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/golang/protobuf/proto
Commit message (Collapse)AuthorAgeFilesLines
* vendor: deleteTaras Madan2025-01-2312-3177/+0
|
* dashboard/app: update to go116 (#2959)Taras Madan2022-01-052-9/+3
| | | | | | 1. Updated the "include"s. 2. No logs read API in the AppEngine anymore. Replaced by the GCP logging API. 3. Use "GO111MODULE=off gcloud beta app deploy ./dashboard/app/app.yaml --no-promote" to test new deployment. 4. Updated the documentation.
* go.mod: upgrade some dependenciesDmitry Vyukov2020-07-0425-11527/+2935
| | | | | | | Since we started using modules, it's a good time to update some deps. Update to latest official versions packages that have newer versions. Update #1247
* vendor: update vendored filesDmitry Vyukov2020-01-2914-350/+428
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor: add github.com/ianlancetaylor/demangleDmitry Vyukov2018-06-2817-3019/+6642
| | | | | | 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.
* vendor: update all packagesDmitry Vyukov2017-08-082-3/+3
| | | | | | google.golang.org/api/compute/v0.beta again changed public interfaces which causes breakages in other build environments. Update everything to HEAD.
* vendor: switch from dep to godepDmitry Vyukov2017-06-1320-10867/+0
| | | | | | | 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.
* vendor: vendor dependenciesDmitry Vyukov2017-06-1333-0/+18941
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215