-
Notifications
You must be signed in to change notification settings - Fork 296
bump CAPI to v1.1.0 #1137
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
Merged
Merged
bump CAPI to v1.1.0 #1137
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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,31 +1,120 @@ | ||
| module sigs.k8s.io/cluster-api-provider-openstack | ||
|
|
||
| go 1.16 | ||
| go 1.17 | ||
|
|
||
| require ( | ||
| github.com/go-logr/logr v0.4.0 | ||
| github.com/go-logr/logr v1.2.0 | ||
| github.com/golang/mock v1.6.0 | ||
| github.com/google/gofuzz v1.2.0 | ||
| github.com/gophercloud/gophercloud v0.16.0 | ||
| github.com/gophercloud/utils v0.0.0-20210323225332-7b186010c04f | ||
| github.com/onsi/ginkgo v1.16.4 | ||
| github.com/onsi/gomega v1.16.0 | ||
| github.com/onsi/ginkgo v1.16.5 | ||
| github.com/onsi/gomega v1.17.0 | ||
| github.com/pkg/errors v0.9.1 | ||
| github.com/prometheus/client_golang v1.11.0 | ||
| github.com/spf13/pflag v1.0.5 | ||
| golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 | ||
| gopkg.in/ini.v1 v1.63.2 | ||
| k8s.io/api v0.22.2 | ||
| k8s.io/apimachinery v0.22.2 | ||
| k8s.io/client-go v0.22.2 | ||
| k8s.io/component-base v0.22.2 | ||
| k8s.io/klog/v2 v2.9.0 | ||
| k8s.io/api v0.23.0 | ||
| k8s.io/apimachinery v0.23.0 | ||
| k8s.io/client-go v0.23.0 | ||
| k8s.io/component-base v0.23.0 | ||
| k8s.io/klog/v2 v2.30.0 | ||
| k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b | ||
| sigs.k8s.io/cluster-api v1.0.4 | ||
| // cluster-api/test by commit to pull in kubernetes-sigs/cluster-api#6080 | ||
| sigs.k8s.io/cluster-api/test v1.0.5-0.20220209113217-e5b9f43cba6b | ||
| sigs.k8s.io/controller-runtime v0.10.3 | ||
| sigs.k8s.io/cluster-api v1.1.0 | ||
| sigs.k8s.io/cluster-api/test v1.1.0 | ||
| sigs.k8s.io/controller-runtime v0.11.0 | ||
| sigs.k8s.io/yaml v1.3.0 | ||
| ) | ||
|
|
||
| replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.0.4 | ||
| require ( | ||
| github.com/BurntSushi/toml v0.3.1 // indirect | ||
| github.com/MakeNowJust/heredoc v1.0.0 // indirect | ||
| github.com/Microsoft/go-winio v0.5.0 // indirect | ||
| github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
| github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
| github.com/alessio/shellescape v1.4.1 // indirect | ||
| github.com/antlr/antlr4/runtime/Go/antlr v0.0.0-20210826220005-b48c857c3a0e // indirect | ||
| github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a // indirect | ||
| github.com/beorn7/perks v1.0.1 // indirect | ||
| github.com/blang/semver v3.5.1+incompatible // indirect | ||
| github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
| github.com/containerd/containerd v1.5.9 // indirect | ||
| github.com/coredns/caddy v1.1.0 // indirect | ||
| github.com/coredns/corefile-migration v1.0.14 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/docker/distribution v2.7.1+incompatible // indirect | ||
| github.com/docker/docker v20.10.12+incompatible // indirect | ||
| github.com/docker/go-connections v0.4.0 // indirect | ||
| github.com/docker/go-units v0.4.0 // indirect | ||
| github.com/drone/envsubst/v2 v2.0.0-20210730161058-179042472c46 // indirect | ||
| github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
| github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
| github.com/fsnotify/fsnotify v1.5.1 // indirect | ||
| github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
| github.com/go-openapi/jsonreference v0.19.5 // indirect | ||
| github.com/go-openapi/swag v0.19.14 // indirect | ||
| github.com/gobuffalo/flect v0.2.4 // indirect | ||
| github.com/gogo/protobuf v1.3.2 // indirect | ||
| github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
| github.com/golang/protobuf v1.5.2 // indirect | ||
| github.com/google/cel-go v0.9.0 // indirect | ||
| github.com/google/go-cmp v0.5.6 // indirect | ||
| github.com/google/go-github/v33 v33.0.0 // indirect | ||
| github.com/google/go-querystring v1.0.0 // indirect | ||
| github.com/google/uuid v1.2.0 // indirect | ||
| github.com/googleapis/gnostic v0.5.5 // indirect | ||
| github.com/hashicorp/hcl v1.0.0 // indirect | ||
| github.com/imdario/mergo v0.3.12 // indirect | ||
| github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
| github.com/josharian/intern v1.0.0 // indirect | ||
| github.com/json-iterator/go v1.1.12 // indirect | ||
| github.com/magiconair/properties v1.8.5 // indirect | ||
| github.com/mailru/easyjson v0.7.6 // indirect | ||
| github.com/mattn/go-isatty v0.0.14 // indirect | ||
| github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
| github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
| github.com/mitchellh/mapstructure v1.4.2 // indirect | ||
| github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
| github.com/modern-go/reflect2 v1.0.2 // indirect | ||
| github.com/nxadm/tail v1.4.8 // indirect | ||
| github.com/opencontainers/go-digest v1.0.0 // indirect | ||
| github.com/opencontainers/image-spec v1.0.2 // indirect | ||
| github.com/pelletier/go-toml v1.9.4 // indirect | ||
| github.com/prometheus/client_model v0.2.0 // indirect | ||
| github.com/prometheus/common v0.28.0 // indirect | ||
| github.com/prometheus/procfs v0.6.0 // indirect | ||
| github.com/sirupsen/logrus v1.8.1 // indirect | ||
| github.com/spf13/afero v1.6.0 // indirect | ||
| github.com/spf13/cast v1.4.1 // indirect | ||
| github.com/spf13/cobra v1.2.1 // indirect | ||
| github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
| github.com/spf13/viper v1.9.0 // indirect | ||
| github.com/stoewer/go-strcase v1.2.0 // indirect | ||
| github.com/subosito/gotenv v1.2.0 // indirect | ||
| github.com/valyala/fastjson v1.6.3 // indirect | ||
| golang.org/x/net v0.0.0-20210825183410-e898025ed96a // indirect | ||
| golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect | ||
| golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect | ||
| golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect | ||
| golang.org/x/text v0.3.7 // indirect | ||
| golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
| gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect | ||
| google.golang.org/appengine v1.6.7 // indirect | ||
| google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2 // indirect | ||
| google.golang.org/grpc v1.42.0 // indirect | ||
| google.golang.org/protobuf v1.27.1 // indirect | ||
| gopkg.in/inf.v0 v0.9.1 // indirect | ||
| gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
| gopkg.in/yaml.v2 v2.4.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
| k8s.io/apiextensions-apiserver v0.23.0 // indirect | ||
| k8s.io/apiserver v0.23.0 // indirect | ||
| k8s.io/cluster-bootstrap v0.23.0 // indirect | ||
| k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect | ||
| sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect | ||
| sigs.k8s.io/kind v0.11.1 // indirect | ||
| sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect | ||
| ) | ||
|
|
||
| replace sigs.k8s.io/cluster-api => sigs.k8s.io/cluster-api v1.1.0 | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Any idea where this appeared from?
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.
yes, I didn't do it manually...
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.
and I think it do no harm ? I don't know why update to 1.1.0 introduce so much changes
the //indirect is not something familiar to me , will do some home work..
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.
https://github.com/kubernetes-sigs/cluster-api/blob/main/go.mod#L51
capi also has this kind of stuffs
not find the real solution yet, but seems other folks has same questions as well
https://stackoverflow.com/questions/61115111/how-to-avoid-indirect-dependencies-in-go-mod-file
Also curious why only this update (maybe go16->17?) trigger this...
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.
I saw this happening locally when upgrading from go 1.16 to 1.17. I just checked and it's in the release notes for 1.17: https://go.dev/doc/go1.17#graph-pruning