You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The package was bumped up to v0.33.0by #164, but because of the replace instruction replace golang.org/x/net => golang.org/x/net v0.24.0 in the go.mod it doesn't work.
BTW, curious are the replace instructions in the go.mod necessary?
The text was updated successfully, but these errors were encountered:
BTW, curious are the replace instructions in the go.mod necessary?
Yes, since some of the downstream deps (we don't have many) point to an older version. So when running go mod tidy you will end up with older versions in that file which triggers some systems.
The package
golang.org/x/net
(versionv0.24.0
) in the latest release contains CVE CVE-2024-45338: https://pkg.go.dev/vuln/GO-2024-3333, it should be bumped up tov0.33.0
.The package was bumped up to
v0.33.0
by #164, but because of the replace instructionreplace golang.org/x/net => golang.org/x/net v0.24.0
in thego.mod
it doesn't work.BTW, curious are the
replace
instructions in thego.mod
necessary?The text was updated successfully, but these errors were encountered: