-
Notifications
You must be signed in to change notification settings - Fork 8.9k
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
Try to upgrade ginkgo to v2 #3202
Conversation
23ff0cb
to
a47cef4
Compare
@denyeart , ref to #2954 (comment) |
4398260
to
8fb53d5
Compare
/azp run |
Commenter does not have sufficient privileges for PR 3202 in repo hyperledger/fabric |
can someone help with rerun unit test in CI? |
upgrade related go files to ginkgo v2 refer: https://onsi.github.io/ginkgo/MIGRATING_TO_V2 Signed-off-by: Sam Yuan <[email protected]>
2613d12
to
00fe686
Compare
Thanks @yacovm , as CI passed, and current go mod changes without protobuf changes. |
@@ -21,8 +21,9 @@ require ( | |||
github.com/frankban/quicktest v1.11.3 // indirect | |||
github.com/fsouza/go-dockerclient v1.7.0 | |||
github.com/go-kit/kit v0.9.0 | |||
github.com/golang/protobuf v1.3.3 | |||
github.com/golang/protobuf v1.5.2 |
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.
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, It is correct. It is recorded here: #2185 (comment).
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.
One more issue for reference: https://jira.hyperledger.org/browse/FAB-18363
google.golang.org/grpc v1.31.0 | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
gopkg.in/cheggaaa/pb.v1 v1.0.28 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
) | ||
|
||
replace github.com/onsi/gomega => github.com/onsi/gomega v1.9.0 | ||
replace github.com/golang/protobuf => github.com/golang/protobuf v1.3.3 |
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.
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.
yuanyi@yuanyideMacBook-Pro fabric % go mod why github.com/golang/protobuf
# github.com/golang/protobuf
(main module does not need package github.com/golang/protobuf)
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 think you need to wait until the Protobuf update from the other PR is merged.
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 see
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.
Just blocking this until the protobuf upgrade
May I know is there any schedule for protobuf upgrade? |
please let me know if this pr is ready for merge/review once I rebased with latest. |
Will reopen after etcd one merged. @denyeart |
Type of change
Description
upgrade ginkgo to v2
upgrade related go files to ginkgo v2
Additional details
ref: https://onsi.github.io/ginkgo/MIGRATING_TO_V2
Related issues
resolve #3184