-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
fix(reflection): Fix gogoproto import paths #14838
Conversation
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.
tACK with hubl.
cosmos/gogoproto should as well be bumped in this PR.
tools/confix/go.mod
Outdated
@@ -35,7 +35,7 @@ require ( | |||
github.com/cosmos/cosmos-proto v1.0.0-beta.1 // indirect | |||
github.com/cosmos/go-bip39 v1.0.0 // indirect | |||
github.com/cosmos/gogogateway v1.2.0 // indirect | |||
github.com/cosmos/gogoproto v1.4.3 // indirect | |||
github.com/cosmos/gogoproto v1.4.4 // 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.
https://github.com/cosmos/cosmos-sdk/actions/runs/4047744533/jobs/6962151076
I think our script go mod update all is fundamentally broken, as it updates all the dependencies, regardless if they are actually needed or not.
Here, for instance, we use 0.47-rc1 so it should not have updated this to v1.4.4 (as there is no reason to)
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.
Do you have a recommendation for this PR? Bumping all to v1.4.4 seems to break some tests (like confix).
I reverted all of the bumps, then only bumped to v1.4.4 the ones that don't depend on [email protected] (e.g. root, store, api), then ./scripts/go-mod-tidy-all. And committed the result.
In any case, the cleanest way might be to tag rc2 after this PR, and bump every remaining module to rc2+v1.4.4
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, makes sense. Before rc2, I think we need to, though: #14818
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.
Sounds good, I'll let you decide when's the best time to tag rc2
…smos-sdk into am/14713-fix-invalid-fds
(cherry picked from commit d0a5bd1) # Conflicts: # api/go.mod # api/go.sum # go.mod # store/go.mod # store/go.sum # tests/go.mod # x/circuit/go.mod # x/circuit/go.sum # x/evidence/go.mod # x/evidence/go.sum # x/feegrant/go.mod # x/feegrant/go.sum # x/nft/go.mod # x/nft/go.sum # x/upgrade/go.mod # x/upgrade/go.sum
Co-authored-by: Amaury <[email protected]>
Description
Closes: #14713
Depends on:
Author Checklist
All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.
I have...
!
to the type prefix if API or client breaking changeCHANGELOG.md
Reviewers Checklist
All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.
I have...
!
in the type prefix if API or client breaking change