Skip to content
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

Bump github.com/containerd/containerd from 1.7.6 to 1.7.11 #109

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
237 changes: 125 additions & 112 deletions go.mod

Large diffs are not rendered by default.

1,118 changes: 335 additions & 783 deletions go.sum

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion pkg/action/util.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ func NewUncachedClient(getter action.RESTClientGetter) (client.Client, error) {
}

func NewUncachedClientForConfig(cfg *rest.Config) (client.Client, error) {
mapper, err := apiutil.NewDynamicRESTMapper(cfg)
hc, err := rest.HTTPClientFor(cfg)
if err != nil {
return nil, err
}
mapper, err := apiutil.NewDynamicRESTMapper(cfg, hc)
if err != nil {
return nil, err
}
Expand Down
201 changes: 201 additions & 0 deletions vendor/github.com/AdaLogics/go-fuzz-headers/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

93 changes: 93 additions & 0 deletions vendor/github.com/AdaLogics/go-fuzz-headers/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading