-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
chore: update core dep #1641
chore: update core dep #1641
Conversation
MarcoPolo
commented
Jul 5, 2022
•
edited
Loading
edited
- Upgrades rcmgr and core by a patch release
- Dowgrades grpc indirect dep to avoid breaking downstream users unnecessarily (see: Broken grpc.WithBalancerName weaveworks/common#239)
- removed btcd dep
go.mod
Outdated
@@ -110,7 +108,7 @@ require ( | |||
golang.org/x/net v0.0.0-20220630215102-69896b714898 // indirect | |||
golang.org/x/tools v0.1.11 // indirect | |||
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect | |||
google.golang.org/grpc v1.47.0 // indirect | |||
google.golang.org/grpc v1.36.0 // indirect |
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.
What made us update this dependency since the v0.20.0 release? In v0.20.0 we were using v1.31.1.
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.
You updated this in this pr: https://github.com/libp2p/go-libp2p/pull/1634/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6R113
I think I picked 1.36 by looking at the go mod graph.
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.
Actually we can get rid of grpc dep completely. Need this first: libp2p/go-libp2p-testing#63
@@ -110,7 +108,6 @@ require ( | |||
golang.org/x/net v0.0.0-20220630215102-69896b714898 // indirect | |||
golang.org/x/tools v0.1.11 // indirect | |||
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect | |||
google.golang.org/grpc v1.47.0 // indirect |
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.
❤️