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

chores: bump sdk v0.42.7 #97

Merged
merged 9 commits into from
Jul 9, 2021
Merged

chores: bump sdk v0.42.7 #97

merged 9 commits into from
Jul 9, 2021

Conversation

daeMOn63
Copy link
Contributor

@daeMOn63 daeMOn63 commented Jul 9, 2021

No description provided.

mergify bot and others added 9 commits July 9, 2021 18:24
* Fixed parse key issue (#9299)

* Fixed parse key issue

* Added getconfig in root command

* uncommented changes in parse.go

(cherry picked from commit d7dd1d7)

# Conflicts:
#	simapp/simd/cmd/root.go

* Add changelog

Co-authored-by: Prathyusha Lakkireddy <prathyusha@vitwit.com>
Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
* feat: return trace value from baseapp (#9578)

## Description

Closes: #XXXX

<!-- Add a description of the changes that this PR introduces and the files that
are the most critical to review. -->
Solution:
- dumping upgrade info before emit `UPGRADED NEEDED` log which will
  cause cosmovisor to kill chain process

<!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺
v                               ✰  Thanks for creating a PR! ✰
v    Before smashing the submit button please review the checkboxes.
v    If a checkbox is n/a - please still include it but + a little note why
☺ > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >  -->

## Description

The problematic procedure:

1. chain process output UPGRADE NEEDED log
2. cosmovisor see the message and kill the chain binary
3. chain process dump upgrade info and panic itself

the step 2 and 3 runs concurrently, so the dumping process can be interrupted by cosmovisor's terminate signal. The proposed solution is to dump upgrade info before emitting the log.
there are two problematic situation:
1. the upgrade info file is created, but content is not written or flushed before killed, when the chain process restart, it'll panic because of json parsing error.
2. the upgrade info file is not created at all, when the chain process restart, the [store upgrades](https://github.com/crypto-org-chain/chain-main/blob/master/app/app.go#L436) are not activated, will cause app hash mismatch error later on.
…#9605)

* feat: Error on blank chain-id in multisign command (#9593)

Error on `tx multisign` command if chain-id is blank. This is a common cause of signature verification failures when combining signatures and the error message doesn't provide any clues to this common cause.

I have...

- [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [x] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [ ] added a changelog entry to `CHANGELOG.md`
- [ ] included comments for [documenting Go code](https://blog.golang.org/godoc)
- [ ] 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](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) 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)

(cherry picked from commit f65b6c9)

# Conflicts:
#	CHANGELOG.md

* fix conflicts

* less change diff

Co-authored-by: Zaki Manian <zaki@manian.org>
Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
* backport cosmos/ibc-go#223

* add changelog

* fix unnecessary changes
* fix event type

* CHANGELOG

* Update CHANGELOG.md

Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
* chore: v0.42.7 release notes & changelog

* Add ibc
* fix(keyring): update keyring for kwallet fix (#9563)

## Description

Closes: #9562
@daeMOn63 daeMOn63 requested a review from ejfitzgerald July 9, 2021 16:29
@codecov-commenter
Copy link

Codecov Report

Merging #97 (17d1636) into master (7d3a610) will increase coverage by 0.00%.
The diff coverage is 94.91%.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #97   +/-   ##
=======================================
  Coverage   62.05%   62.06%           
=======================================
  Files         624      624           
  Lines       35946    35960   +14     
=======================================
+ Hits        22306    22317   +11     
- Misses      11285    11287    +2     
- Partials     2355     2356    +1     
Impacted Files Coverage Δ
baseapp/baseapp.go 76.98% <0.00%> (-0.31%) ⬇️
x/auth/client/cli/tx_multisign.go 64.15% <0.00%> (-0.58%) ⬇️
simapp/simd/cmd/root.go 62.01% <100.00%> (+0.59%) ⬆️
x/capability/keeper/keeper.go 78.61% <100.00%> (+1.17%) ⬆️
x/ibc/applications/transfer/keeper/relay.go 88.70% <100.00%> (ø)
x/ibc/applications/transfer/module.go 60.68% <100.00%> (ø)
x/ibc/applications/transfer/simulation/params.go 100.00% <100.00%> (ø)
x/ibc/core/02-client/keeper/client.go 98.27% <100.00%> (ø)
x/ibc/core/02-client/keeper/proposal.go 100.00% <100.00%> (ø)
x/ibc/core/keeper/msg_server.go 64.20% <100.00%> (ø)
... and 1 more

@daeMOn63 daeMOn63 merged commit 717e05b into master Jul 9, 2021
@daeMOn63 daeMOn63 deleted the sdk_v0.42.7 branch July 9, 2021 16:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants