aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/cloud.google.com/go/pubsub/message.go
Commit message (Collapse)AuthorAgeFilesLines
* vendor: deleteTaras Madan2025-01-231-192/+0
|
* mod: do: bump golang.org/x/oauth2 from 0.5.0 to 0.10.0dependabot[bot]2023-07-251-4/+4
| | | | | | | | | | | | | Bumps [golang.org/x/oauth2](https://github.com/golang/oauth2) from 0.5.0 to 0.10.0. - [Commits](https://github.com/golang/oauth2/compare/v0.5.0...v0.10.0) --- updated-dependencies: - dependency-name: golang.org/x/oauth2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* dependencies: updateTaras Madan2023-02-241-76/+145
| | | | | | set go min requirements to 1.19 update dependencies update vendor
* vendor: add cloud.google.com/go/pubsubDmitry Vyukov2020-09-301-0/+123
| | | | | | Required to talk to KCIDB. Update #2144
* vendor: switch from dep to godepDmitry Vyukov2017-06-131-97/+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-131-0/+97
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215