aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/golang
Commit message (Collapse)AuthorAgeFilesLines
* vendor: deleteTaras Madan2025-01-2330-5837/+0
|
* vendor: fetch the dependenciesAleksandr Nogikh2025-01-2213-0/+2302
|
* vendor: updateTaras Madan2024-09-109-716/+0
|
* vendor: spannerTaras Madan2024-06-209-0/+716
|
* mod: bump cloud.google.com/go/logging from 1.9.0 to 1.10.0dependabot[bot]2024-06-038-645/+0
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/logging](https://github.com/googleapis/google-cloud-go) from 1.9.0 to 1.10.0. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/dlp/v1.9.0...dlp/v1.10.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/logging dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* mod: bump cloud.google.com/go/storage from 1.39.0 to 1.40.0dependabot[bot]2024-04-021-3/+4
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.39.0 to 1.40.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/spanner/v1.39.0...spanner/v1.40.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/storage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* mod: bump cloud.google.com/go/secretmanager from 1.11.5 to 1.12.0dependabot[bot]2024-04-023-1158/+0
| | | | | | | | | | | | | | | Bumps [cloud.google.com/go/secretmanager](https://github.com/googleapis/google-cloud-go) from 1.11.5 to 1.12.0. - [Release notes](https://github.com/googleapis/google-cloud-go/releases) - [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md) - [Commits](https://github.com/googleapis/google-cloud-go/compare/secretmanager/v1.11.5...dlp/v1.12.0) --- updated-dependencies: - dependency-name: cloud.google.com/go/secretmanager dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* mod: do: bump github.com/prometheus/client_golang from 1.14.0 to 1.16.0dependabot[bot]2023-07-241-1/+7
| | | | | | | | | | | | | | | Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.14.0 to 1.16.0. - [Release notes](https://github.com/prometheus/client_golang/releases) - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md) - [Commits](https://github.com/prometheus/client_golang/compare/v1.14.0...v1.16.0) --- updated-dependencies: - dependency-name: github.com/prometheus/client_golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
* dependencies: updateTaras Madan2023-02-241-62/+0
| | | | | | set go min requirements to 1.19 update dependencies update vendor
* go.mod, vendor: update (#3358)Taras Madan2022-09-056-472/+1214
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * go.mod, vendor: remove unnecessary dependencies Commands: 1. go mod tidy 2. go mod vendor * go.mod, vendor: update cloud.google.com/go Commands: 1. go get -u cloud.google.com/go 2. go mod tidy 3. go mod vendor * go.mod, vendor: update cloud.google.com/* Commands: 1. go get -u cloud.google.com/storage cloud.google.com/logging 2. go mod tidy 3. go mod vendor * go.mod, .golangci.yml, vendor: update *lint* Commands: 1. go get -u golang.org/x/tools github.com/golangci/golangci-lint@v1.47.0 2. go mod tidy 3. go mod vendor 4. edit .golangci.yml to suppress new errors (resolved in the same PR later) * all: fix lint errors hash.go: copy() recommended by gosimple parse.go: ent is never nil verifier.go: signal.Notify() with unbuffered channel is bad. Have no idea why. * .golangci.yml: adjust godot rules check-all is deprecated, but still work if you're hesitating too - I'll remove this commit
* dashboard/app: update to go116 (#2959)Taras Madan2022-01-057-9/+112
| | | | | | 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.
* vendor: add cloud.google.com/go/pubsubDmitry Vyukov2020-09-301-200/+0
| | | | | | Required to talk to KCIDB. Update #2144
* go.mod: upgrade some dependenciesDmitry Vyukov2020-07-0447-20694/+3913
| | | | | | | 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-2934-671/+5449
| | | | | | Required to switch dashboard/app to go1.11. Update #1461
* vendor: add github.com/ianlancetaylor/demangleDmitry Vyukov2018-06-2828-3571/+8682
| | | | | | 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-0811-3/+1037
| | | | | | 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-1384-26212/+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-13104-0/+36818
All dependencies are vendored with: go get github.com/golang/dep dep init If necessary, can be updated with: dep ensure -update Fixes #215