-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
security(daemon): upgrade golang.org/x/net to v0.33.0 (#999)
Address CVE-2024-45338 by upgrading golang.org/x/net to v0.33.0 go get golang.org/x/[email protected] go: upgraded golang.org/x/net v0.23.0 => v0.33.0 go: upgraded golang.org/x/sys v0.18.0 => v0.28.0 go: upgraded golang.org/x/text v0.14.0 => v0.21.0
- Loading branch information
Showing
2 changed files
with
10 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
module github.com/newrelic/newrelic-php-agent/daemon | ||
|
||
go 1.21 | ||
|
||
toolchain go1.23.1 | ||
|
||
require ( | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/google/flatbuffers v23.5.26+incompatible | ||
golang.org/x/net v0.23.0 | ||
golang.org/x/net v0.33.0 | ||
google.golang.org/grpc v1.61.0 | ||
google.golang.org/protobuf v1.33.0 | ||
) | ||
|
||
require ( | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231106174013-bbf56f31fb17 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters