forked from opendatahub-io/rest-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): Upgrade golang.org/x/net and golang.org/grpc (opendatahu…
…b-io#30) Issues addressed: - https://github.com/kserve/rest-proxy/security/dependabot/1 - https://github.com/kserve/rest-proxy/security/dependabot/2 - https://github.com/kserve/rest-proxy/security/dependabot/3 - https://github.com/kserve/rest-proxy/security/dependabot/4 - https://github.com/kserve/rest-proxy/security/dependabot/5 - https://www.cve.org/CVERecord?id=CVE-2023-37788 --------- Signed-off-by: Spolti <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
18 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 |
---|---|---|
|
@@ -23,7 +23,7 @@ require ( | |
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.24.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect | ||
|
@@ -36,7 +36,10 @@ require ( | |
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
) | ||
|
||
// remove when upgrade to controller-runtime 0.15.xor apimachinery to 0.27.x | ||
// Fixes github.com/elazarl/goproxy Denial of Service (DoS) | ||
// This dependency was remove from apimachinery 0.27.0 | ||
replace k8s.io/apimachinery => k8s.io/apimachinery v0.27.0 | ||
replace ( | ||
// fixes pkg/mod/github.com/golang/[email protected]/internal/logsink/logsink.go:123:41: undeclared name: any (requires version go1.18 or later) | ||
// remove when updating to go lang 1.19 | ||
github.com/golang/glog => github.com/golang/glog v1.0.0 | ||
golang.org/x/net => golang.org/x/net v0.17.0 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.27.0 | ||
) |
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