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

build(deps): bump ibc-go to v3.0.0 and wasmd to v0.27.0 #875

Merged
merged 16 commits into from
May 30, 2022

Conversation

leobragaz
Copy link
Contributor

@leobragaz leobragaz commented May 20, 2022

Description

Superseeds #874
Closes: #872
Closes: #873

Bumps wasmd to v0.27.0

Includes also the changes of #874 since the two are strictly dependent.


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...

  • included the correct type prefix in the PR title
  • added ! to the type prefix if API or client breaking change
  • targeted the correct branch (see PR Targeting)
  • provided a link to the relevant issue or specification
  • followed the guidelines for building modules
  • included the necessary unit and integration tests
  • added a changelog entry to CHANGELOG.md
  • included comments for documenting Go code
  • updated the relevant documentation or specification
  • reviewed "Files changed" and left comments if necessary
  • confirmed all CI checks have passed

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...

  • confirmed the correct type prefix in the PR title
  • confirmed ! in the type prefix if API or client breaking change
  • confirmed all author checklist items have been addressed
  • reviewed state machine logic
  • reviewed API design and naming
  • reviewed documentation is accurate
  • reviewed tests and test coverage
  • manually tested (if applicable)

updated cosmos-sdk-fork dep to v0.45.4
…s into leonardo/update-wasmd-dep-0.27.0

� Conflicts:
�	go.mod
�	go.sum
updated wasmd to v0.27.0
@github-actions github-actions bot added kind/build Related to the build of the project x/CLI x/profiles Module that allows to create and manage decentralized social profiles x/relationships labels May 20, 2022
@leobragaz leobragaz added dependencies Pull requests that update a dependency file and removed x/profiles Module that allows to create and manage decentralized social profiles x/CLI kind/build Related to the build of the project x/relationships labels May 20, 2022
@github-actions github-actions bot added kind/build Related to the build of the project x/CLI x/profiles Module that allows to create and manage decentralized social profiles x/relationships labels May 20, 2022
@leobragaz leobragaz requested a review from RiccardoM May 20, 2022 20:29
@leobragaz leobragaz added cosmwasm Extend functionality to devs and removed x/profiles Module that allows to create and manage decentralized social profiles x/CLI kind/build Related to the build of the project x/relationships labels May 25, 2022
@leobragaz leobragaz requested a review from dadamu May 25, 2022 18:46
@RiccardoM RiccardoM changed the title build(deps): Bump github.com/CosmWasm/wasmd to v0.27.0 build(deps): bump ibc-go to v3.0.0 and wasmd to v0.27.0 May 26, 2022
…update-wasmd-dep-0.27.0

� Conflicts:
�	go.mod
�	go.sum
Signed-off-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
@github-actions github-actions bot added kind/build Related to the build of the project x/CLI x/profiles Module that allows to create and manage decentralized social profiles x/relationships labels May 26, 2022
Signed-off-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
Signed-off-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
@codecov
Copy link

codecov bot commented May 26, 2022

Codecov Report

Merging #875 (153fbff) into master (a091bdd) will increase coverage by 0.01%.
The diff coverage is 100.00%.

@@            Coverage Diff             @@
##           master     #875      +/-   ##
==========================================
+ Coverage   81.76%   81.77%   +0.01%     
==========================================
  Files         110      110              
  Lines        9240     9248       +8     
==========================================
+ Hits         7555     7563       +8     
  Misses       1363     1363              
  Partials      322      322              
Impacted Files Coverage Δ
x/profiles/client/cli/cli_app_links.go 43.93% <ø> (ø)
x/profiles/keeper/relay_app_links.go 86.81% <ø> (ø)
x/profiles/types/genesis.go 100.00% <ø> (ø)
x/profiles/types/msgs_app_links.go 87.32% <ø> (ø)
app/ante.go 64.70% <100.00%> (ø)
app/app.go 86.72% <100.00%> (+0.17%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ae7f4a3...153fbff. Read the comment docs.

app/app.go Outdated
@@ -536,7 +544,8 @@ func NewDesmosApp(
)

// Add wasm module route to the ibc router, then set and seal it
ibcRouter.AddRoute(wasm.ModuleName, wasm.NewIBCHandler(app.WasmKeeper, app.IBCKeeper.ChannelKeeper))
// TODO re-add this in a further PR to update wasmd
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't it be re-added since this PR also includes the wasmd updation?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dadamu Added back, thanks!

Signed-off-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
app/app.go Outdated Show resolved Hide resolved
Signed-off-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
Signed-off-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
@@ -35,7 +35,7 @@ func NewCoordinator(t *testing.T, n int) *Coordinator {
chains := make(map[string]*TestChain)

for i := 0; i < n; i++ {
chainID := GetChainID(i)
chainID := GetChainID(i + 1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why plus 1 here?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is just to reflect the following change that has been made inside the standard Coordinator implementation with ibc-go v3.0.0:

(testing) cosmos/ibc-go#774 Added ChainID arg to SetupWithGenesisValSet on the testing app. Coordinator generated ChainIDs now starts at index 1

Copy link
Contributor

@dadamu dadamu left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ready to go~

@RiccardoM RiccardoM added the automerge Automatically merge PR once all prerequisites pass label May 30, 2022
@mergify mergify bot merged commit 6753a0c into master May 30, 2022
@mergify mergify bot deleted the leonardo/update-wasmd-dep-0.27.0 branch May 30, 2022 06:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Automatically merge PR once all prerequisites pass cosmwasm Extend functionality to devs dependencies Pull requests that update a dependency file kind/build Related to the build of the project x/CLI x/profiles Module that allows to create and manage decentralized social profiles x/relationships
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Update wasmd to 0.27.0 Update ibc-go to v3.0.0
3 participants