-
Notifications
You must be signed in to change notification settings - Fork 20
Bump golang.org/x/net from 0.17.0 to 0.33.0 #113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,20 @@ | ||
| module github.com/gravitational/trace | ||
|
|
||
| go 1.15 | ||
| go 1.20 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Dependencies want various increased Go versions, as follows:
These are all fairly old, past EOL Go versions. Since this is a library it makes sense to keep Go requirements as soft as can be, so I've updated trace to require 1.20. This and the security patch probably both warrant a new tag. |
||
|
|
||
| require ( | ||
| github.com/stretchr/testify v1.8.3 | ||
| golang.org/x/net v0.17.0 | ||
| golang.org/x/net v0.33.0 | ||
| google.golang.org/grpc v1.56.3 | ||
| ) | ||
|
|
||
| require ( | ||
| golang.org/x/sys v0.15.0 // indirect | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure why dependabot took out all indirects, but once I upped the Go version it all came back. |
||
| golang.org/x/text v0.14.0 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/golang/protobuf v1.5.3 // indirect | ||
| github.com/pmezard/go-difflib v1.0.0 // indirect | ||
| golang.org/x/sys v0.28.0 // indirect | ||
| golang.org/x/text v0.21.0 // indirect | ||
| google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect | ||
| google.golang.org/protobuf v1.33.0 // indirect | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. protobuf needs to be at least v1.33.0 to dodge more CVEs. |
||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| ) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated to match the go-version-file example here: https://github.com/actions/setup-go?tab=readme-ov-file#getting-go-version-from-the-gomod-file.
Also updated other files so actions use consistent versions.