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

Merge release 0.42.9 #423

Merged
merged 106 commits into from
Feb 7, 2022
Merged

Commits on Mar 9, 2021

  1. fixed broken links, typos (#8783) (#8823)

    * fixed broken links, typos
    
    * Update docs/ibc/overview.md
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    
    * Update docs/intro/sdk-app-architecture.md
    
    Co-authored-by: Marko <markobaricevic3778@gmail.com>
    
    * Update docs/building-modules/simulator.md
    
    Co-authored-by: Marko <markobaricevic3778@gmail.com>
    
    Co-authored-by: chrly <chrly@chrlys-MacBook-Pro.local>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
    Co-authored-by: Marko <markobaricevic3778@gmail.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    (cherry picked from commit 24ed401)
    
    Co-authored-by: Charly <16255463+charleenfei@users.noreply.github.com>
    mergify[bot] and charleenfei committed Mar 9, 2021
    Configuration menu
    Copy the full SHA
    98e122f View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2021

  1. add trust to macOS Keychain for calling apps by default (#8826) (#8835)

    This commit automatically trusts the calling application with its data,
    avoiding all the annoying keychain popups that appears when dealing with
    keys (list, add...).
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    (cherry picked from commit d761f08)
    
    Co-authored-by: Gianguido Sora <gsora@users.noreply.github.com>
    mergify[bot] and gsora committed Mar 10, 2021
    Configuration menu
    Copy the full SHA
    339484a View commit details
    Browse the repository at this point in the history
  2. store/cachekv: use typed types/kv.List instead of container/list.List…

    … (#8811) (#8817)
    
    Reduces CPU burn by using a typed List to avoid the expensive type
    assertions from using an interface. This is the only option for now
    until Go makes generics generally available.
    
    The change brings time spent on the time assertion cummulatively to:
        580ms down from 6.88s
    
    Explanation:
    The type assertions were showing up heavily in profiles:
    * Before this commit
    ```shell
    Total: 42.18s
    ROUTINE ======================== github.com/cosmos/cosmos-sdk/store/cachekv.newMemIterator
    in /Users/emmanuelodeke/go/src/github.com/cosmos/cosmos-sdk/store/cachekv/memiterator.go
        14.01s     18.87s (flat, cum) 44.74% of Total
             .          .     17:	items      []*kv.Pair
             .          .     18:	ascending  bool
             .          .     19:}
             .          .     20:
             .          .     21:func newMemIterator(start, end []byte, items *list.List, ascending bool) *memIterator {
             .      620ms     22:	itemsInDomain := make([]*kv.Pair, 0, items.Len())
             .          .     23:
             .          .     24:	var entered bool
             .          .     25:
         510ms      870ms     26:	for e := items.Front(); e != nil; e = e.Next() {
         6.85s      6.88s     27:		item := e.Value.(*kv.Pair)
         5.71s      8.19s     28:		if !dbm.IsKeyInDomain(item.Key, start, end) {
         120ms      120ms     29:			if entered {
             .          .     30:				break
             .          .     31:			}
             .          .     32:
             .          .     33:			continue
             .          .     34:		}
             .          .     35:
         820ms      980ms     36:		itemsInDomain = append(itemsInDomain, item)
             .          .     37:		entered = true
             .          .     38:	}
             .          .     39:
             .      1.21s     40:	return &memIterator{
             .          .     41:		start:     start,
             .          .     42:		end:       end,
             .          .     43:		items:     itemsInDomain,
             .          .     44:		ascending: ascending,
             .          .     45:	}
    ```
    
    and given that the list only uses that type, it is only right to lift the
    code from container/list.List, and only modify Element.Value's type.
    
    For emphasis, the code is basically just a retrofit of
    container/list/list.go but with a typing, and we'll keep it as is
    until perhaps Go1.17 or Go1.18 or when everyone uses Go1.17+ after
    generics have landed.
    
    * After this commit
    ```shell
    Total: 45.25s
    ROUTINE ======================== github.com/cosmos/cosmos-sdk/store/cachekv.newMemIterator
    in /Users/emmanuelodeke/go/src/github.com/cosmos/cosmos-sdk/store/cachekv/memiterator.go
         4.84s      6.77s (flat, cum) 14.96% of Total
             .          .     16:	items      []*kv.Pair
             .          .     17:	ascending  bool
             .          .     18:}
             .          .     19:
             .          .     20:func newMemIterator(start, end []byte, items *kv.List, ascending bool) *memIterator {
             .      330ms     21:	itemsInDomain := make([]*kv.Pair, 0, items.Len())
             .          .     22:
             .          .     23:	var entered bool
             .          .     24:
          60ms      160ms     25:	for e := items.Front(); e != nil; e = e.Next() {
         580ms      580ms     26:		item := e.Value
         3.68s      4.78s     27:		if !dbm.IsKeyInDomain(item.Key, start, end) {
          80ms       80ms     28:			if entered {
             .          .     29:				break
             .          .     30:			}
             .          .     31:
             .          .     32:			continue
             .          .     33:		}
             .          .     34:
         440ms      580ms     35:		itemsInDomain = append(itemsInDomain, item)
             .          .     36:		entered = true
             .          .     37:	}
             .          .     38:
             .      260ms     39:	return &memIterator{
             .          .     40:		start:     start,
             .          .     41:		end:       end,
             .          .     42:		items:     itemsInDomain,
             .          .     43:		ascending: ascending,
             .          .     44:	}
    ```
    
    Fixes #8810
    
    (cherry picked from commit c2d5b24)
    
    Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com>
    mergify[bot] and odeke-em committed Mar 10, 2021
    Configuration menu
    Copy the full SHA
    1391ea6 View commit details
    Browse the repository at this point in the history
  3. fixes: permalinks for docs (#8838) (#8846)

    * fixed broken links, typos
    
    * Update docs/ibc/overview.md
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    
    * Update docs/intro/sdk-app-architecture.md
    
    Co-authored-by: Marko <markobaricevic3778@gmail.com>
    
    * Update docs/building-modules/simulator.md
    
    Co-authored-by: Marko <markobaricevic3778@gmail.com>
    
    * build(deps): bump JamesIves/github-pages-deploy-action from 4.0.0 to 4.1.0 (#8792)
    
    Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.0.0 to 4.1.0.
    - [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
    - [Commits](JamesIves/github-pages-deploy-action@4.0.0...3dbacc7)
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    
    * fix multisig account pubkeys migration (#8794)
    
    closes: #8776
    
    * Update mergify (#8784)
    
    * Update mergify
    
    Prep for the v0.42 release series.
    
    * retire v0.41, the hub can upgrade to v0.42 smoothly
    
    * perf change (#8796)
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    
    * Supply by denom Migrations (#8780)
    
    * Add back supply proto
    
    * Add migration for supply
    
    * Fix lint
    
    * Update x/bank/spec/01_state.md
    
    * Fix test
    
    * Proto gen
    
    * Update x/bank/spec/01_state.md
    
    * Make proto gen
    
    Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
    
    * fix make protoc error (#8799)
    
    * reduce gas costs by 10x for transient store operations (#8790)
    
    * reduce gas costs by 10x for transient store operations
    
    * fix TestTransientGasConfig for ReadCostFlat
    
    * added changelog entry
    
    * fix changelog
    
    * fix changelog
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    
    * x/gov: fix NormalizeProposalType() return values (#8808)
    
    Closes: #8806
    
    * store/cachekv: use typed types/kv.List instead of container/list.List (#8811)
    
    Reduces CPU burn by using a typed List to avoid the expensive type
    assertions from using an interface. This is the only option for now
    until Go makes generics generally available.
    
    The change brings time spent on the time assertion cummulatively to:
        580ms down from 6.88s
    
    Explanation:
    The type assertions were showing up heavily in profiles:
    * Before this commit
    ```shell
    Total: 42.18s
    ROUTINE ======================== github.com/cosmos/cosmos-sdk/store/cachekv.newMemIterator
    in /Users/emmanuelodeke/go/src/github.com/cosmos/cosmos-sdk/store/cachekv/memiterator.go
        14.01s     18.87s (flat, cum) 44.74% of Total
             .          .     17:	items      []*kv.Pair
             .          .     18:	ascending  bool
             .          .     19:}
             .          .     20:
             .          .     21:func newMemIterator(start, end []byte, items *list.List, ascending bool) *memIterator {
             .      620ms     22:	itemsInDomain := make([]*kv.Pair, 0, items.Len())
             .          .     23:
             .          .     24:	var entered bool
             .          .     25:
         510ms      870ms     26:	for e := items.Front(); e != nil; e = e.Next() {
         6.85s      6.88s     27:		item := e.Value.(*kv.Pair)
         5.71s      8.19s     28:		if !dbm.IsKeyInDomain(item.Key, start, end) {
         120ms      120ms     29:			if entered {
             .          .     30:				break
             .          .     31:			}
             .          .     32:
             .          .     33:			continue
             .          .     34:		}
             .          .     35:
         820ms      980ms     36:		itemsInDomain = append(itemsInDomain, item)
             .          .     37:		entered = true
             .          .     38:	}
             .          .     39:
             .      1.21s     40:	return &memIterator{
             .          .     41:		start:     start,
             .          .     42:		end:       end,
             .          .     43:		items:     itemsInDomain,
             .          .     44:		ascending: ascending,
             .          .     45:	}
    ```
    
    and given that the list only uses that type, it is only right to lift the
    code from container/list.List, and only modify Element.Value's type.
    
    For emphasis, the code is basically just a retrofit of
    container/list/list.go but with a typing, and we'll keep it as is
    until perhaps Go1.17 or Go1.18 or when everyone uses Go1.17+ after
    generics have landed.
    
    * After this commit
    ```shell
    Total: 45.25s
    ROUTINE ======================== github.com/cosmos/cosmos-sdk/store/cachekv.newMemIterator
    in /Users/emmanuelodeke/go/src/github.com/cosmos/cosmos-sdk/store/cachekv/memiterator.go
         4.84s      6.77s (flat, cum) 14.96% of Total
             .          .     16:	items      []*kv.Pair
             .          .     17:	ascending  bool
             .          .     18:}
             .          .     19:
             .          .     20:func newMemIterator(start, end []byte, items *kv.List, ascending bool) *memIterator {
             .      330ms     21:	itemsInDomain := make([]*kv.Pair, 0, items.Len())
             .          .     22:
             .          .     23:	var entered bool
             .          .     24:
          60ms      160ms     25:	for e := items.Front(); e != nil; e = e.Next() {
         580ms      580ms     26:		item := e.Value
         3.68s      4.78s     27:		if !dbm.IsKeyInDomain(item.Key, start, end) {
          80ms       80ms     28:			if entered {
             .          .     29:				break
             .          .     30:			}
             .          .     31:
             .          .     32:			continue
             .          .     33:		}
             .          .     34:
         440ms      580ms     35:		itemsInDomain = append(itemsInDomain, item)
             .          .     36:		entered = true
             .          .     37:	}
             .          .     38:
             .      260ms     39:	return &memIterator{
             .          .     40:		start:     start,
             .          .     41:		end:       end,
             .          .     42:		items:     itemsInDomain,
             .          .     43:		ascending: ascending,
             .          .     44:	}
    ```
    
    Fixes #8810
    
    * Move all migration scripts to v043 (#8814)
    
    * Move all migration scripts to v043
    
    * Fix permaling
    
    * Fix test
    
    * Fix test again
    
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    
    * permalinks
    
    Co-authored-by: chrly <chrly@chrlys-MacBook-Pro.local>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
    Co-authored-by: Marko <markobaricevic3778@gmail.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Akhil Kumar P <36399231+akhilkumarpilli@users.noreply.github.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Marko <marbar3778@yahoo.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    Co-authored-by: Albert Chon <albert@injectiveprotocol.com>
    Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com>
    (cherry picked from commit 55fc465)
    
    Co-authored-by: Charly <charly@interchain.berlin>
    mergify[bot] and charleenfei committed Mar 10, 2021
    Configuration menu
    Copy the full SHA
    c9f36a8 View commit details
    Browse the repository at this point in the history
  4. Security/ghsa mvm6 gfm2 89xj (#8852)

    * Merge pull request from GHSA-mvm6-gfm2-89xj
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    
    * v0.42.1 Changelog update (#8851)
    
    Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    3 people committed Mar 10, 2021
    Configuration menu
    Copy the full SHA
    2ffe530 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2021

  1. keyring: update documentation (#8839) (#8858)

    * keyring: update documentation
    
    * Update docs/run-node/keyring.md
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    
    * Update docs/run-node/keyring.md
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    (cherry picked from commit 3954c24)
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    mergify[bot] and Alessio Treglia committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    2196c9b View commit details
    Browse the repository at this point in the history
  2. Merge tag 'v0.42.1' into release/v0.42.x

    Release v0.42.1
    Alessio Treglia committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    7ea2760 View commit details
    Browse the repository at this point in the history
  3. Fix SendToModuleAccountTest (bp #8857) (#8860)

    * Fix SendToModuleAccountTest (#8857)
    
    (cherry picked from commit 280ee4f)
    
    Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    3 people committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    c6462e6 View commit details
    Browse the repository at this point in the history
  4. all: skip noisy/faulty benchmarks + add b.ReportAllocs for every benc…

    …hmark (bp #8856) (#8859)
    
    * all: skip noisy/faulty benchmarks + add b.ReportAllocs for every benchmark (#8856)
    
    * Skips very noisy benchmarks that end up running only for b.N=1 because
    their entire time is spent in setup, and varying parameters doesn't change
    much given that the number of stores is what dominates the expense. To
    ensure we can provide reliable benchmarks, progressively for the project,
    skip these until there is a proper re-work of what the benchmarks need to do
    
    * Previously sub-benchmarks: b.Run(...) did not b.ReportAllocs() due to a faulty
    assumption that invoking b.ReportAllocs() at the top would be inherited by
    all sub-benchmarks. This change fixes that
    
    Fixes #8779
    Fixes #8855
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    (cherry picked from commit b9f3db1)
    
    * Remove stray code that got pulled in by mergify but not essential
    
    Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    3 people committed Mar 11, 2021
    Configuration menu
    Copy the full SHA
    1d98b2a View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2021

  1. add --output-document to multisign-batch (#8873) (#8877)

    Closes: #8870
    
    Co-authored-by: SaReN <sahithnarahari@gmail.com>
    (cherry picked from commit 5f71e93)
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    mergify[bot] and Alessio Treglia committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    e23c0ce View commit details
    Browse the repository at this point in the history
  2. Fix multisig LegacyAminoPubKey Amino marshaling (bp #8841) (#8878)

    (cherry picked from commit d4d27e1)
    
    closes: #8776
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    Co-authored-by: Anil Kumar Kammari <anil@vitwit.com>
    4 people committed Mar 15, 2021
    Configuration menu
    Copy the full SHA
    1e17860 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    eb09ee1 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2021

  1. Update docs (bp #8751) (#8894)

    closes: #8750
    
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    (cherry picked from commit 36f68eb)
    
    Co-authored-by: Pash <pashashocky@gmail.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Mar 16, 2021
    Configuration menu
    Copy the full SHA
    51b163e View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2021

  1. add orderBy parameter to TxsByEvents (bp #8815) (#8883)

    Closes: #8686
    
    (cherry picked from commit 553aac5)
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: MD Aleem <72057206+aleem1314@users.noreply.github.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Jonathan Gimeno <jgimeno@gmail.com>
    Co-authored-by: aleem1314 <aleem@vitwit.com>
    6 people committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    177672f View commit details
    Browse the repository at this point in the history
  2. Fix typo (#8905) (#8910)

    Co-authored-by: Marko <marbar3778@yahoo.com>
    (cherry picked from commit 0836361)
    
    Co-authored-by: Hanjun Kim <hallazzang@gmail.com>
    mergify[bot] and hallazzang committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    a619b1d View commit details
    Browse the repository at this point in the history
  3. Docs: Anys Usage, Events & small cleanups (bp #8895) (#8911)

    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    (cherry picked from commit 1a4418b)
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    4 people committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    16187a8 View commit details
    Browse the repository at this point in the history
  4. update changelog and RELEASE NOTES (#8912)

    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    3 people committed Mar 17, 2021
    Configuration menu
    Copy the full SHA
    c111c3e View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2021

  1. add +nobuild flags to all relevant test cases (bp #8934) (#8938)

    Closes: #8923
    (cherry picked from commit 7b09f95)
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    mergify[bot] and Alessio Treglia committed Mar 19, 2021
    Configuration menu
    Copy the full SHA
    c57f4cb View commit details
    Browse the repository at this point in the history
  2. backport test detection ci fix (#8924) (#8942)

    cherry-pick 641b13e
    Alessio Treglia committed Mar 19, 2021
    Configuration menu
    Copy the full SHA
    8db5c2b View commit details
    Browse the repository at this point in the history
  3. update changelog

    Alessio Treglia committed Mar 19, 2021
    Configuration menu
    Copy the full SHA
    4749feb View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. Staking spec updates (bp #8843) (#8939)

    * Staking spec updates (#8843)
    
    * Overview of keepers in object capability model (OCM)
    
    * Updates to the spec, making clarifications
    
    * Create a sequence diagram of a (fresh) delegation
    
    * Misc notes, not yet decided where to put them
    
    * Description of the shares abstraction in validators
    
    * Model all keeper dependencies and move the UML file to docs
    
    * Move and rename delegation sequence diagram
    
    * Move shares description
    
    * Remove TODO
    
    * Diagram touch-ups
    
    * Add how consensus power is calculated
    
    * remove temp file
    
    * Diagram improvements
    
    * Describe slashing in more detail
    
    * Describe redelegation
    
    * Describe unbonding
    
    * Delegation updates
    
    * Delegation updates
    
    * Make a diagram describing overall transaction flow
    
    * Add delegation flows for the events of tokens being bonded/unbonding/etc.
    
    * Grammar fix
    
    * Diagram updates: distinguish alts, remove numbering.
    
    * Use groups instead of "func:" participants
    
    * Remove unused keepers from dependency diagram
    
    * Add title to unbonding diagram
    
    * Move keeper dependencies
    
    * small doc updates
    
    * remove numbers on sequence diagram
    
    * !!!WIP EndBlock
    
    * Explain "Last"-prefix in storage
    
    * Remove `panic` step (they are supposed to never happen)
    
    * EndBlock sequence diagram (with TODOs)
    
    * Add TODO
    
    * More visible TODOs
    
    * Remove numbering
    
    * Complete EndBlock
    
    * Remove numbering
    
    * Remove TODOs and update title
    
    * add title back
    
    * remove endblock seq-diagram
    
    * spec updates
    
    * Make power index update conditional on not being jailed
    
    * update title
    
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    (cherry picked from commit 0b24970)
    Co-authored-by: Rikard Hjort <8545447+hjorthjort@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    8212771 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4695808 View commit details
    Browse the repository at this point in the history
  3. finalise release changelog and notes (#8987)

    Alessio Treglia committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    7648bfc View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2021

  1. [Backport] Add ledger/multisig detection in SignTx functions (#9026) …

    …(#9041)
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    amaury1093 and Alessio Treglia committed Apr 1, 2021
    Configuration menu
    Copy the full SHA
    1e03826 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2021

  1. [Backport] fix: grpc-gateway error codes (#9015) (#9078)

    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    3 people committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    c029a93 View commit details
    Browse the repository at this point in the history
  2. Backport #9081: bump tendermint core (#9082)

    * bump tendermint core
    
    Depends on 0.34.9.
    
    * fix FTBFS
    Alessio Treglia committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    13418f1 View commit details
    Browse the repository at this point in the history
  3. update changelog for v0.42.4 (#9083)

    * update changelog for v0.42.4
    
    * Update RELEASE_NOTES.md
    
    * Update CHANGELOG.md
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    
    * Update CHANGELOG.md
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    
    * Update RELEASE_NOTES.md
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    
    * Update CHANGELOG.md
    
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    3 people committed Apr 8, 2021
    Configuration menu
    Copy the full SHA
    c4864e9 View commit details
    Browse the repository at this point in the history

Commits on Apr 16, 2021

  1. fix show multisig query (#9108)

    closes: #9056
    atheeshp committed Apr 16, 2021
    Configuration menu
    Copy the full SHA
    455c009 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2021

  1. update legacy rest swagger (#9049) (#9087)

    Co-authored-by: SaReN <sahithnarahari@gmail.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    3 people committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    95ec514 View commit details
    Browse the repository at this point in the history
  2. crypto/types: check for overflow and unreasonably large element count…

    … (#9173)
    
    From: #9163
    Fixes: #9162
    Thanks: @odeke-em for the patch.
    
    Co-authored-by: Emmanuel T Odeke <emmanuel@orijtech.com>
    Alessio Treglia and odeke-em committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    aba621c View commit details
    Browse the repository at this point in the history
  3. backport: make NewDecFromStr returns error for too large decimal (#9175)

    From: #9157
    Closes: #9160
    
    Co-authored-by: Cuong Manh Le <cuong.manhle.vn@gmail.com>
    Alessio Treglia and cuonglm committed Apr 22, 2021
    Configuration menu
    Copy the full SHA
    80a99b3 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2021

  1. backport 0.42.x: Fix IBC doc links (#9210)

    closes: #9180
    colin-axner committed Apr 27, 2021
    Configuration menu
    Copy the full SHA
    63bdda4 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2021

  1. setup: reuses proto container (backport #9192) (#9203)

    Co-authored-by: marbar3778 <marbar3778@yahoo.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    (cherry picked from commit 71b7fb8)
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    4 people committed Apr 28, 2021
    Configuration menu
    Copy the full SHA
    c6f53ef View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2021

  1. Add more details in error message for invalid vote option (#9185) (#9…

    …217)
    
    Co-authored-by: Marko <marbar3778@yahoo.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    (cherry picked from commit 15edf3c)
    
    Co-authored-by: Devashish Dixit <devashish@crypto.com>
    mergify[bot] and devashishdxt committed Apr 29, 2021
    Configuration menu
    Copy the full SHA
    e0ad579 View commit details
    Browse the repository at this point in the history
  2. x/gov/keeper: fix flaky TestPaginatedVotesQuery (backport #9223) (#9225)

    * x/gov/keeper: fix flaky TestPaginatedVotesQuery (#9223)
    
    When testing with -race, sometimes the random source generate the same
    string for consecutive calls, causing duplicated voter address. So the
    number of votes in DB is not 20.
    
    To fix this, we ensure unique addresses are generated, by using a map
    for tracking which one was produced, and skip the duplicated address and
    generated new one. Testing with:
    
    	go test -race -v -count=1000 -run=TestPaginatedVotesQuery
    
    now passes.
    
    Updates #9010
    
    (cherry picked from commit 6ad84c5)
    
    # Conflicts:
    #	x/gov/keeper/querier_test.go
    
    * fi merge conflict
    
    Co-authored-by: Cuong Manh Le <cuong@orijtech.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Apr 29, 2021
    Configuration menu
    Copy the full SHA
    75f84b5 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2021

  1. Keyring migrate command doc (#8979) (#9254)

    Co-authored-by: SaReN <sahithnarahari@gmail.com>
    Co-authored-by: Barrie Byron <barrie.byron@tendermint.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    (cherry picked from commit d5f5fe6)
    Co-authored-by: Andrei Ivasko <cyberbono3@gmail.com>
    6 people committed May 3, 2021
    Configuration menu
    Copy the full SHA
    78e9ce9 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2021

  1. store/internal: validate keys before calling ProofsFromMap (backport …

    …#9235) (#9247)
    
    Fixes #9233
    
    (cherry picked from commit 711976e)
    Co-authored-by: Cuong Manh Le <cuong@orijtech.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    mergify[bot] committed May 6, 2021
    Configuration menu
    Copy the full SHA
    81b1049 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2021

  1. Update chain migration docs to use v0.42 (#9090) (#9317)

    * Update docs
    
    * Tweak
    
    Co-authored-by: Marko <marbar3778@yahoo.com>
    (cherry picked from commit 47c399f)
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    mergify[bot] and amaury1093 committed May 12, 2021
    Configuration menu
    Copy the full SHA
    f9d13e6 View commit details
    Browse the repository at this point in the history
  2. Update IBC overview document to latest ICS-24 link (backport #9044) (…

    …#9316)
    
    * Update overview.md (#9044)
    
    Co-authored-by: SaReN <sahithnarahari@gmail.com>
    (cherry picked from commit cad3987)
    
    # Conflicts:
    #	docs/ibc/overview.md
    
    * Fix conflits
    
    Co-authored-by: Calvin Lau <38898718+calvinaco@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed May 12, 2021
    Configuration menu
    Copy the full SHA
    29db772 View commit details
    Browse the repository at this point in the history

Commits on May 17, 2021

  1. fix arm (#9345)

    tac0turtle committed May 17, 2021
    Configuration menu
    Copy the full SHA
    7c21653 View commit details
    Browse the repository at this point in the history
  2. Add client config subcommand to CLI (backport #8953) (#9255)

    * Add client config subcommand to CLI (#8953)
    
    * add client config
    
    * addressed reviewers comments
    
    * refactored,ready for review
    
    * fixed linter issues and addressed reviewers comments
    
    * Bump golangci-lint
    
    * fix linter warnings
    
    * fix some tests
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    
    * Fix build
    
    Co-authored-by: Andrei Ivasko <cyberbono3@gmail.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    3 people committed May 17, 2021
    Configuration menu
    Copy the full SHA
    be34d52 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4aef38b View commit details
    Browse the repository at this point in the history
  4. Add env variable to cmd flags (backport #9040) (#9318)

    * Add env variable to cmd flags (#9040)
    
    * first draft
    
    * add tests in config_test package
    
    * refactored, all tests pass, r4r
    
    * ready for review
    
    * add envPrefix
    
    * Update simapp/simd/cmd/root.go
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    
    * fix linter issues
    
    * minor fixes
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
    (cherry picked from commit a465ae1)
    
    # Conflicts:
    #	client/context.go
    #	simapp/simd/cmd/root.go
    
    * Remove line
    
    Co-authored-by: Andrei Ivasko <cyberbono3@gmail.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    4 people committed May 17, 2021
    Configuration menu
    Copy the full SHA
    5531aaf View commit details
    Browse the repository at this point in the history

Commits on May 18, 2021

  1. Update Changelog and RL for v0.42.5 (#9350)

    * Update Changelog and RL for v0.42.5
    
    * Reword
    
    * Tweak
    amaury1093 committed May 18, 2021
    Configuration menu
    Copy the full SHA
    1327224 View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. fix client config don't take effect (backport #9211) (#9360)

    * fix client config don't take effect (#9211)
    
    * fix client keyring config
    
    * fix output flag of keys commads
    
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    (cherry picked from commit b4d1a5e)
    
    # Conflicts:
    #	client/keys/add.go
    
    * Fix conflicts
    
    Co-authored-by: yihuang <huang@crypto.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed May 19, 2021
    Configuration menu
    Copy the full SHA
    9fe61a7 View commit details
    Browse the repository at this point in the history
  2. fix: add missing nil check in store.GetStore (#9354) (#9359)

    * fix: add missing nil check in store.GetStore
    
    * check nil in rootmulti as well
    
    (cherry picked from commit b065e20)
    
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    mergify[bot] and robert-zaremba committed May 19, 2021
    Configuration menu
    Copy the full SHA
    842b060 View commit details
    Browse the repository at this point in the history

Commits on May 25, 2021

  1. Configuration menu
    Copy the full SHA
    3550f15 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2021

  1. Fix the liveliness test Docker error (#9396) (#9402)

    (cherry picked from commit 44a4138)
    
    Co-authored-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
    mergify[bot] and RiccardoM committed May 27, 2021
    Configuration menu
    Copy the full SHA
    7075c49 View commit details
    Browse the repository at this point in the history

Commits on Jun 8, 2021

  1. docs: fix broken interfaces links (backport #9448) (#9478)

    * fix interfaces links (#9448)
    
    Co-authored-by: ryanchrypto <12519942+ryanchrypto@users.noreply.github.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    (cherry picked from commit 37fc37d)
    
    # Conflicts:
    #	docs/building-modules/messages-and-queries.md
    #	docs/building-modules/module-interfaces.md
    #	docs/building-modules/module-manager.md
    #	docs/building-modules/query-services.md
    
    * resolve merge conflicts
    
    * revert rename codec
    
    Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>
    Co-authored-by: ryanchrypto <12519942+ryanchrypto@users.noreply.github.com>
    3 people committed Jun 8, 2021
    Configuration menu
    Copy the full SHA
    63980fa View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2021

  1. backport: fix ibc genesis export bug (#9401)

    * correctly set next identifier sequence in genesis export for clients/connections/channels
    
    * add changelog
    colin-axner committed Jun 9, 2021
    Configuration menu
    Copy the full SHA
    e9674d5 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2021

  1. fix linting (#9531)

    tac0turtle committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    35e9e7a View commit details
    Browse the repository at this point in the history
  2. fix: testnet cli command update genesis supply (backport #9497) (#9513)

    * fix: testnet cli command update genesis supply (#9497)
    
    <!--
    The default pull request template is for types feat, fix, or refactor.
    For other templates, add one of the following parameters to the url:
    - template=docs.md
    - template=other.md
    -->
    
    ## Description
    
    closes: #9372
    
    <!-- Add a description of the changes that this PR introduces and the files that
    are the most critical to review. -->
    
    ### This PR makes the `testnet` command update the bank genesis supply.
    
    When using the `testnet` cli command, it creates nodes and balances, but does **not** update the supply. When using this in conjunction with `add-genesis-account` which **does** update the supply, it creates an invalid genesis file. This PR updates the testnet command to properly set the supply.
    
    ---
    
    ### 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...
    
    - [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))
    - [x] provided a link to the relevant issue or specification
    - [x] 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
    - [x] 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 179c819)
    
    # Conflicts:
    #	simapp/simd/cmd/testnet.go
    
    * fix errors
    
    * changelog entry
    
    Co-authored-by: Tyler <48813565+technicallyty@users.noreply.github.com>
    Co-authored-by: technicallyty <48813565+tytech3@users.noreply.github.com>
    3 people committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    4a2527c View commit details
    Browse the repository at this point in the history
  3. feat: add header hash to Context (backport #9390) (#9395)

    * feat: add header hash to `Context` (#9390)
    
    * baseapp, types: add header hash to
    
    * changelog
    
    (cherry picked from commit 151d6c5)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * Fix conflicts
    
    Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    850da8a View commit details
    Browse the repository at this point in the history
  4. fix: x/gov deposits querier (Initial Deposit) (backport #9288) (#9453)

    * fix: x/gov deposits querier (Initial Deposit) (#9288)
    
    * copied from old PR
    
    * fix errors
    
    * add test
    
    * Update x/gov/client/utils/query.go
    
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    
    * fix tests
    
    * fix failing test
    
    * add test
    
    * update test
    
    * fix tests
    
    * fix deposit query
    
    * fix test
    
    * update tests
    
    * add more tests
    
    * address lint error
    
    * address lint error
    
    * review changes
    
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    (cherry picked from commit 66ee994)
    
    # Conflicts:
    #	CHANGELOG.md
    #	x/gov/client/cli/query.go
    #	x/gov/client/testutil/cli_test.go
    #	x/gov/client/utils/query.go
    
    * resolve conflicts
    
    Co-authored-by: MD Aleem <72057206+aleem1314@users.noreply.github.com>
    Co-authored-by: aleem1314 <aleem@vitwit.com>
    3 people committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    e79fa63 View commit details
    Browse the repository at this point in the history
  5. feat: add RefundGas function to GasMeter (backport #9403) (#9444)

    * feat: add `RefundGas` function to `GasMeter` (#9403)
    
    * feat: add RefundGas function to GasMeter
    
    * changelog
    
    * add comment about use case
    
    * Apply suggestions from code review
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    (cherry picked from commit 90edeb6)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * conflicts
    
    * fix
    
    * Update CHANGELOG.md
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    
    Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
    Co-authored-by: Federico Kunze <federico.kunze94@gmail.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    4 people committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    d773c88 View commit details
    Browse the repository at this point in the history
  6. fix: Bank module init genesis optimization (backport #9428) (#9440)

    * fix: Bank module init genesis optimization (#9428)
    
    * optimize the bank module genesis initialization
    
    * remove k.setBalances & k.clearBalances and update changelog
    
    * fix lint
    
    Co-authored-by: Aaron Craelius <aaron@regen.network>
    (cherry picked from commit 2ae7875)
    
    # Conflicts:
    #	CHANGELOG.md
    #	x/bank/keeper/genesis.go
    #	x/bank/keeper/send.go
    
    * fix conflicts
    
    * Update CHANGELOG.md
    
    Co-authored-by: yys <sw.yunsuk@gmail.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    a2a56c3 View commit details
    Browse the repository at this point in the history
  7. fix: update simapp to use correct default broadcast mode (backport #9…

    …408) (#9527)
    
    * fix: update simapp to use correct default broadcast mode (#9408)
    
    (cherry picked from commit 80330ec)
    
    * Add changelog
    
    Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    bc3521c View commit details
    Browse the repository at this point in the history
  8. Backport: IBC query header/node-state fixes (#9385)

    * fix ibc query header/node-state cmds
    
    * changelog
    
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    colin-axner and amaury1093 committed Jun 17, 2021
    Configuration menu
    Copy the full SHA
    7aa514d View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2021

  1. build(deps): tendermint version (backport #9541) (#9542)

    * build(deps): tendermint version (#9541)
    
    * bump tendermint version
    
    * go mod tidy
    
    (cherry picked from commit e4673ad)
    
    * add changelog entry
    
    * Update CHANGELOG.md
    
    * Update CHANGELOG.md
    
    Co-authored-by: Marko <marbar3778@yahoo.com>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    3 people committed Jun 18, 2021
    Configuration menu
    Copy the full SHA
    96ad153 View commit details
    Browse the repository at this point in the history
  2. feat: add cosmos-sdk Version (backport #9429) (#9543)

    * feat: add cosmos-sdk Version (#9429)
    
    <!-- < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < ☺
    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
    
    Add CosmosSDKVersion to nodeInfo.
    
    closes: #9420
    
    (cherry picked from commit 105ad99)
    
    # Conflicts:
    #	CHANGELOG.md
    #	CONTRIBUTING.md
    #	docs/core/proto-docs.md
    
    * resolve conflicts
    
    * resolve conflicts
    
    Co-authored-by: Marko <marbar3778@yahoo.com>
    mergify[bot] and tac0turtle committed Jun 18, 2021
    Configuration menu
    Copy the full SHA
    79d369c View commit details
    Browse the repository at this point in the history

Commits on Jun 21, 2021

  1. fix: set header hash every block (backport #9552) (#9555)

    * fix: set header hash every block (#9552)
    
    ## Description
    
    - Sets the header hash on every block (ref #9390). Previously was only set during initialization for `deliverState`.
    - Closes #9514
    
    <!-- Add a description of the changes that this PR introduces and the files that
    are the most critical to review. -->
    
    ---
    
    ### 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](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [ ] 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
    - [ ] 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 all author checklist items have been addressed
    - [ ] confirmed that this PR does not change production code
    
    (cherry picked from commit 81747b4)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * fix conflicts
    
    Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
    Co-authored-by: Federico Kunze <federico.kunze94@gmail.com>
    3 people committed Jun 21, 2021
    Configuration menu
    Copy the full SHA
    b46718b View commit details
    Browse the repository at this point in the history
  2. chore: Update release notes and Changelog for 0.42.6 (#9544)

    * Update release notes
    
    * Clean up changelog
    amaury1093 committed Jun 21, 2021
    Configuration menu
    Copy the full SHA
    a7e19ad View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2021

  1. Fixed parse key issue (backport #9299) (#9561)

    * 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>
    3 people committed Jun 22, 2021
    Configuration menu
    Copy the full SHA
    80cd793 View commit details
    Browse the repository at this point in the history

Commits on Jun 25, 2021

  1. feat: return trace value from baseapp (backport #9578) (#9580)

    * 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. -->
    
    ---
    
    ### 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](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [ ] 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
    - [ ] 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 all author checklist items have been addressed
    - [ ] confirmed that this PR does not change production code
    
    (cherry picked from commit bb61e28)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * conflicts
    
    Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
    Co-authored-by: Federico Kunze <federico.kunze94@gmail.com>
    3 people committed Jun 25, 2021
    Configuration menu
    Copy the full SHA
    919ae01 View commit details
    Browse the repository at this point in the history

Commits on Jun 29, 2021

  1. fix: Dumping upgrade info interrupted by cosmovisor (#9384) (#9608)

    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.
    
    ---
    
    Before we can merge this PR, please make sure that all the following items have been
    checked off. If any of the checklist items are not applicable, please leave them but
    write a little note why.
    
    - [x] Targeted PR against correct branch (see [CONTRIBUTING.md](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
    - [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work.
    - [x] Code follows the [module structure standards](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules/structure.md).
    - [ ] Wrote unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
    - [ ] Updated relevant documentation (`docs/`) or specification (`x/<module>/spec/`)
    - [ ] Added relevant `godoc` [comments](https://blog.golang.org/godoc-documenting-go-code).
    - [ ] Added a relevant changelog entry to the `Unreleased` section in `CHANGELOG.md`
    - [x] Re-reviewed `Files changed` in the Github PR explorer
    - [x] Review `Codecov Report` in the comment section below once CI passes
    
    (cherry picked from commit 0540ed2)
    
    Co-authored-by: yihuang <huang@crypto.com>
    mergify[bot] and yihuang committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    7b48375 View commit details
    Browse the repository at this point in the history

Commits on Jun 30, 2021

  1. feat: Error on blank chain-id in multisign command (backport #9593) (…

    …#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>
    3 people committed Jun 30, 2021
    Configuration menu
    Copy the full SHA
    6c49c4a View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2021

  1. Configuration menu
    Copy the full SHA
    3776793 View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2021

  1. fix: correct ibc metric labels (#9645)

    * backport cosmos/ibc-go#223
    
    * add changelog
    
    * fix unnecessary changes
    colin-axner committed Jul 7, 2021
    Configuration menu
    Copy the full SHA
    cc47294 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2021

  1. fix: Fix IBC Transfer Event (#9640)

    * fix event type
    
    * CHANGELOG
    
    * Update CHANGELOG.md
    
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    AdityaSripal and amaury1093 committed Jul 9, 2021
    Configuration menu
    Copy the full SHA
    3350f25 View commit details
    Browse the repository at this point in the history
  2. chore: v0.42.7 release notes & changelog (#9661)

    * chore: v0.42.7 release notes & changelog
    
    * Add ibc
    amaury1093 committed Jul 9, 2021
    Configuration menu
    Copy the full SHA
    9104a45 View commit details
    Browse the repository at this point in the history
  3. fix(keyring): update keyring for kwallet fix (backport #9563) (#9579)

    * fix(keyring): update keyring for kwallet fix (#9563)
    
    ## Description
    
    Closes: #9562
    
    ---
    
    ### 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...
    
    - [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))
    - [x] provided a link to the relevant issue or specification
    - [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
    - [x] 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...
    
    - [x] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [x] 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 e845a50)
    
    # Conflicts:
    #	CHANGELOG.md
    #	go.sum
    
    * resolve conflicts
    
    * Update CHANGELOG.md
    
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    3 people committed Jul 9, 2021
    Configuration menu
    Copy the full SHA
    84c3321 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2021

  1. docs: add v0.43 release version option (backport #9506) (#9677)

    * docs: add v0.43 version option (#9506)
    
    Co-authored-by: ryanchrypto <12519942+ryanchrypto@users.noreply.github.com>
    (cherry picked from commit 325dabd)
    
    # Conflicts:
    #	docs/versions
    
    * fix conflicts
    
    Co-authored-by: Ryan Christoffersen <12519942+ryanchristo@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Jul 12, 2021
    Configuration menu
    Copy the full SHA
    1ef55e6 View commit details
    Browse the repository at this point in the history

Commits on Jul 20, 2021

  1. Configuration menu
    Copy the full SHA
    1d25de1 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2021

  1. fix: support output flag on tx commands (backport #9717) (#9772)

    * fix: support output flag on tx commands (#9717)
    
    <!--
    The default pull request template is for types feat, fix, or refactor.
    For other templates, add one of the following parameters to the url:
    - template=docs.md
    - template=other.md
    -->
    
    ## Description
    
    Closes: #9684
    
    <!-- Add a description of the changes that this PR introduces and the files that
    are the most critical to review. -->
    
    ---
    
    ### 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](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [ ] added `!` to the type prefix if API or client breaking change
    - [ ] 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 9253503)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * Fix changelog
    
    Co-authored-by: Sai Kumar <17549398+gsk967@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Jul 26, 2021
    Configuration menu
    Copy the full SHA
    c26244c View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2021

  1. feat: Query txs by signature and by address+seq (backport #9750) (#9783)

    * feat: Query txs by signature and by address+seq (#9750)
    
    <!--
    The default pull request template is for types feat, fix, or refactor.
    For other templates, add one of the following parameters to the url:
    - template=docs.md
    - template=other.md
    -->
    
    ## Description
    
    Closes: #9741
    
    <!-- Add a description of the changes that this PR introduces and the files that
    are the most critical to review. -->
    
    ---
    
    ### 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](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [ ] added `!` to the type prefix if API or client breaking change
    - [ ] 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 7c19434)
    
    # Conflicts:
    #	CHANGELOG.md
    #	x/auth/client/cli/cli_test.go
    #	x/auth/client/cli/query.go
    
    * Fix conflicts
    
    * Fix build
    
    * Fix IBC test
    
    * use createBankMsg from master
    
    Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
    mergify[bot] and amaury1093 committed Jul 28, 2021
    Configuration menu
    Copy the full SHA
    9db413b View commit details
    Browse the repository at this point in the history
  2. fix: hardcoded ledger algo on keys add (backport #9766) (#9804)

    * fix: hardcoded ledger algo on `keys add` (#9766)
    
    <!--
    The default pull request template is for types feat, fix, or refactor.
    For other templates, add one of the following parameters to the url:
    - template=docs.md
    - template=other.md
    -->
    
    ## Description
    
    Closes: #9734
    
    cc: @jleni
    
    <!-- Add a description of the changes that this PR introduces and the files that
    are the most critical to review. -->
    
    ---
    
    ### 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...
    
    - [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))
    - [x] provided a link to the relevant issue or specification
    - [x] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
    - [x] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
    - [x] added a changelog entry to `CHANGELOG.md`
    - [x] included comments for [documenting Go code](https://blog.golang.org/godoc)
    - [x] updated the relevant documentation or specification
    - [x] reviewed "Files changed" and left comments if necessary
    - [x] 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...
    
    - [x] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [x] 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
    - [x] reviewed tests and test coverage
    - [ ] manually tested (if applicable)
    
    (cherry picked from commit f1e6487)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * fix conflict
    
    Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
    Co-authored-by: Amaury M <1293565+amaurym@users.noreply.github.com>
    3 people committed Jul 28, 2021
    Configuration menu
    Copy the full SHA
    6fb1a17 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2021

  1. chore: Add Changelog and Release Notes for v0.42.8 (#9807)

    * chore: Add Changelog and Release Notes for v0.42.8
    
    * Change date
    amaury1093 committed Jul 30, 2021
    Configuration menu
    Copy the full SHA
    ef823ea View commit details
    Browse the repository at this point in the history

Commits on Aug 2, 2021

  1. feat: Improve withdraw-all-rewards UX (backport #9781) (#9825)

    * feat: Improve withdraw-all-rewards UX (#9781)
    
    ## Description
    Related to #9489, this PR improves the UX when using the `withdraw-all-rewards` command by forcing the broadcast mode to `block` if the chunk size is greater than 0. This will ensure that the transactions do not fail even if the user uses invalid broadcast modes for this command (`sync` and `async`).
    
    ---
    
    ### 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...
    
    - [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
    - [ ] 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))
    - [x] provided a link to the relevant issue or specification
    - [x] 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)
    - [x] updated the relevant documentation or specification
    - [x] 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 90157fc)
    
    # Conflicts:
    #	CHANGELOG.md
    
    * Update CHANGELOG.md
    
    Co-authored-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    3 people committed Aug 2, 2021
    Configuration menu
    Copy the full SHA
    81988ac View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2021

  1. fix: Capability Issue on Restart, Backport to v0.42 (#9835)

    * implement BeginBlock fix
    
    * add changelog
    
    * fix lint
    
    * address reviews
    
    * Update CHANGELOG.md
    
    Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
    
    * address reviews
    
    * Apply suggestions from code review
    
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    
    * move store check
    
    * add api breaking changelog
    
    * fix lint
    
    Co-authored-by: Aleksandr Bezobchuk <alexanderbez@users.noreply.github.com>
    Co-authored-by: Robert Zaremba <robert@zaremba.ch>
    3 people committed Aug 4, 2021
    Configuration menu
    Copy the full SHA
    7f41de9 View commit details
    Browse the repository at this point in the history
  2. Fixed the --recover flag not working properly inside the init command…

    … (#9201) (#9850)
    
    Co-authored-by: Alessio Treglia <alessio@tendermint.com>
    (cherry picked from commit fdbc32e)
    
    Co-authored-by: Riccardo Montagnin <riccardo.montagnin@gmail.com>
    mergify[bot] and RiccardoM committed Aug 4, 2021
    Configuration menu
    Copy the full SHA
    63fc386 View commit details
    Browse the repository at this point in the history
  3. chore: prepare 0.42.9 release (#9852)

    * prepare 0.42.9 release
    
    * add 9201 to changelog
    robert-zaremba committed Aug 4, 2021
    Configuration menu
    Copy the full SHA
    ed5d165 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2021

  1. feat: async store pruning

    iproudhon committed Dec 4, 2021
    Configuration menu
    Copy the full SHA
    b4ef05e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b9789d8 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2021

  1. Configuration menu
    Copy the full SHA
    eb113bc View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2021

  1. Configuration menu
    Copy the full SHA
    c3e3f47 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2021

  1. Configuration menu
    Copy the full SHA
    a52007c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bba3148 View commit details
    Browse the repository at this point in the history

Commits on Jan 17, 2022

  1. Configuration menu
    Copy the full SHA
    0e6330f View commit details
    Browse the repository at this point in the history
  2. fix: test error

    iproudhon committed Jan 17, 2022
    Configuration menu
    Copy the full SHA
    ee7d9ee View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ce795c1 View commit details
    Browse the repository at this point in the history

Commits on Jan 25, 2022

  1. Configuration menu
    Copy the full SHA
    da7e889 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fab1706 View commit details
    Browse the repository at this point in the history

Commits on Jan 26, 2022

  1. build(deps): bump github.com/prometheus/client_golang (#417)

    Bumps [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) from 1.11.0 to 1.12.0.
    - [Release notes](https://github.com/prometheus/client_golang/releases)
    - [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
    - [Commits](prometheus/client_golang@v1.11.0...v1.12.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/prometheus/client_golang
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    8c28450 View commit details
    Browse the repository at this point in the history
  2. chore: bump up iavl version

    iproudhon committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    eec7521 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ae711e7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9e457a1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7ce68c6 View commit details
    Browse the repository at this point in the history
  6. style: lint error

    iproudhon committed Jan 26, 2022
    Configuration menu
    Copy the full SHA
    f394cc0 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2022

  1. Merge release v0.42.9

    v0.42.9 Release
    iproudhon committed Jan 27, 2022
    Configuration menu
    Copy the full SHA
    06b81cc View commit details
    Browse the repository at this point in the history

Commits on Feb 4, 2022

  1. fix: go test race

    iproudhon committed Feb 4, 2022
    Configuration menu
    Copy the full SHA
    c3af992 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f04633d View commit details
    Browse the repository at this point in the history
  3. chore: bump up iavl

    iproudhon committed Feb 4, 2022
    Configuration menu
    Copy the full SHA
    06655da View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    b035ba6 View commit details
    Browse the repository at this point in the history
  5. chore: bump up iavl

    iproudhon committed Feb 4, 2022
    Configuration menu
    Copy the full SHA
    0d6d3e4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    687ff6a View commit details
    Browse the repository at this point in the history
  7. ci: more prefetch coverage

    iproudhon committed Feb 4, 2022
    Configuration menu
    Copy the full SHA
    f7c6bc2 View commit details
    Browse the repository at this point in the history