aboutsummaryrefslogtreecommitdiff
path: root/go.sum
AgeCommit message (Collapse)Author
2025-11-19build(deps): bump golang.org/x/crypto (#435)dependabot[bot]
Bumps the go_modules group with 1 update in the / directory: [golang.org/x/crypto](https://github.com/golang/crypto). Updates `golang.org/x/crypto` from 0.41.0 to 0.45.0 - [Commits](https://github.com/golang/crypto/compare/v0.41.0...v0.45.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-version: 0.45.0 dependency-type: direct:production dependency-group: go_modules ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-11-04Upgrade github.com/urfave/cliEric Biggers
Ran the following commands, using Go 1.23.12: go get github.com/urfave/cli go mod tidy
2025-11-04Upgrade golang.org/x/toolsEric Biggers
Ran the following commands, using Go 1.23.12: go get golang.org/x/tools@v0.36.0 go mod tidy ... where v0.36.0 is the latest version that supports Go 1.23.
2025-11-04Upgrade honnef.co/go/toolsEric Biggers
Ran the following commands, using Go 1.23.12: go get honnef.co/go/tools go mod tidy
2025-11-04Upgrade google.golang.org/protobufEric Biggers
Ran the following commands, using Go 1.23.12: go get google.golang.org/protobuf go mod tidy make gen
2025-11-04Upgrade golang.org/x/cryptoEric Biggers
Ran the following commands, using Go 1.23.12: go get golang.org/x/crypto@v0.41.0 go mod tidy ... where v0.41.0 is the latest version that supports Go 1.23.
2025-11-04Upgrade golang.org/x/termEric Biggers
Ran the following commands, using Go 1.23.12: go get golang.org/x/term@v0.34.0 go mod tidy ... where v0.34.0 is the latest version that supports Go 1.23.
2025-11-04Upgrade golang.org/x/sysEric Biggers
Ran the following commands, using Go 1.23.12: go get golang.org/x/sys@v0.35.0 go mod tidy ... where v0.35.0 is the latest version that supports Go 1.23.
2025-11-04Bump up required Go version to 1.23Eric Biggers
2025-02-17build(deps): bump golang.org/x/crypto in the go_modules groupdependabot[bot]
Bumps the go_modules group with 1 update: [golang.org/x/crypto](https://github.com/golang/crypto). Updates `golang.org/x/crypto` from 0.17.0 to 0.31.0 - [Commits](https://github.com/golang/crypto/compare/v0.17.0...v0.31.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production dependency-group: go_modules ... Signed-off-by: dependabot[bot] <support@github.com>
2024-03-19Upgrade google.golang.org/protobuf to v1.33.0Eric Biggers
2023-12-26build(deps): bump golang.org/x/crypto from 0.13.0 to 0.17.0dependabot[bot]
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.13.0 to 0.17.0. - [Commits](https://github.com/golang/crypto/compare/v0.13.0...v0.17.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
2023-09-09Bump up required Go version to 1.18Eric Biggers
2023-09-09Upgrade github.com/urfave/cliEric Biggers
2023-09-09Upgrade honnef.co/go/toolsEric Biggers
2023-09-09Upgrade google.golang.org/protobufEric Biggers
2023-09-09Upgrade golang.org/x/toolsEric Biggers
2023-09-09Upgrade golang.org/x/cryptoEric Biggers
2023-09-09Upgrade golang.org/x/termEric Biggers
2023-09-09Upgrade golang.org/x/sysEric Biggers
2023-09-09Stop using golang.org/x/lintEric Biggers
golint is not supported anymore. See https://github.com/golang/go/issues/38968. We already use both 'go vet' and 'staticcheck' which are maintained.
2022-04-08Switch to google.golang.org/protobuf/protoEric Biggers
github.com/golang/protobuf/proto has been deprecated in favor of google.golang.org/protobuf/proto, so migrate to the non-deprecated one.
2022-04-08Regenerate go.mod and go.sum with go 1.16Joe Richey
Signed-off-by: Joe Richey <joerichey@google.com>
2022-04-08Upgrade honnef.co/go/tools to latest versionEric Biggers
The version of 'staticcheck' (part of honnef.co/go/tools) we were pinning is incompatible with Go 1.18, as per https://github.com/dominikh/go-tools/issues/1165. To allow 'make lint' to work with Go 1.18 and later, upgrade honnef.co/go/tools to the latest version. This requires that several other modules be upgraded too.
2021-04-22cmd/fscrypt: use golang.org/x/termTobias Klauser
The golang.org/x/crypto/ssh/terminal package is deprecated and merely a wrapper around golang.org/x/term. Thus, use the latter directly.
2019-11-27Upgrade to latest golang.org/x/sys moduleEric Biggers
Upgrade to get the new fscrypt declarations from Linux v5.4.
2019-10-25Manage tool versioning with Go modules (#161)Joseph Richey
See: https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module The tool code is never actually built, but the versions are still lock in `go.mod` and `go.sum`. We can also simplify the Makefile.
2018-08-30Update dependancies to lastest versionJoe Richey joerichey@google.com
2018-08-30Transition from dep to golang's module systemJoe Richey joerichey@google.com