aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/cloud.google.com/go/pubsub/iterator.go
Commit message (Collapse)AuthorAgeFilesLines
* vendor: deleteTaras Madan2025-01-231-1050/+0
|
* mod: bump cloud.google.com/go/pubsub from 1.42.0 to 1.43.0dependabot[bot]2024-10-011-18/+35
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/pubsub](https://github.com/googleapis/google-cloud-go) from 1.42.0 to 1.43.0. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.42.0...pubsub/v1.43.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/pubsub dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* vendor: updateTaras Madan2024-09-101-94/+287
|
* mod: bump cloud.google.com/go/pubsub from 1.37.0 to 1.38.0dependabot[bot]2024-06-041-3/+27
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/pubsub](https://github.com/googleapis/google-cloud-go) from 1.37.0 to 1.38.0. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.37.0...pubsub/v1.38.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/pubsub dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* mod: bump cloud.google.com/go/pubsub from 1.36.1 to 1.36.2dependabot[bot]2024-03-041-2/+6
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/pubsub](https://github.com/googleapis/google-cloud-go) from 1.36.1 to 1.36.2. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.36.1...pubsub/v1.36.2) --- updated-dependencies: - dependency-name: cloud.google.com/go/pubsub dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
* mod: do: bump golang.org/x/oauth2 from 0.5.0 to 0.10.0dependabot[bot]2023-07-251-23/+63
| | | | | | | | | | | | | 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-148/+387
| | | | | | set go min requirements to 1.19 update dependencies update vendor
* vendor: add cloud.google.com/go/pubsubDmitry Vyukov2020-09-301-0/+533
| | | | | | Required to talk to KCIDB. Update #2144
* vendor: switch from dep to godepDmitry Vyukov2017-06-131-524/+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/+524
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215