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

Update joining mainnet documentation #1146

Merged
merged 18 commits into from
Jan 28, 2022
Merged

Conversation

glnro
Copy link
Contributor

@glnro glnro commented Jan 6, 2022

Current Joining Mainnet Hub Docs are out of date and often leave newcomers confused as to the best way to bootstrap a node. Changes include a more robust section on the types of syncing available , and how to configure/implement each. A preview can be viewed at here

@zmanian
Copy link
Member

zmanian commented Jan 6, 2022

Initial read through is this amazing

Copy link
Contributor

@nooomski nooomski left a comment

Choose a reason for hiding this comment

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

Thanks so much @glnro !! This looks good!

I do have some suggestions for the future, which may warrant a better write up in an issue, but for now:

I think we should create two flows, one for beginners, one for advanced users. The Osmosis joining mainnet doc is super simple, and it's generally sufficient for people just trying to connect and get started. I really love their simplicity and I think it's something that we should be able to serve as well as the more complex options.

Right now, we offer both options in one big doc, but I would recommend we either format this page to delineate more clearly between easy / advanced, or to create two separate docs.

More practically for now: I would move all easy options as a first. So in particular, about syncing, I would suggest having Quicksync snapshots as a first, and Sync From Scratch as the final, more advanced option. Then merge, and figure out a more beginner friendly flow.

In the end we should probably just have a simple guideline with no config explainers (and have our defaults like state-sync set properly), and offer all the juicy details separately, imo.

docs/hub-tutorials/join-mainnet.md Outdated Show resolved Hide resolved
docs/hub-tutorials/join-mainnet.md Outdated Show resolved Hide resolved
make install
gaiad start --x-crisis-skip-assert-invariants --p2p.seeds bf8328b66dceb4987e5cd94430af66045e59899f@public-seed.cosmos.vitwit.com:26656,[email protected]:26656,[email protected]:26656,ba3bacc714817218562f743178228f23678b2873@public-seed-node.cosmoshub.certus.one:26656,[email protected]:26656
```
The current Cosmos Hub mainnet `cosmoshub-4` has been performing in place store migration upgrades as of the [Delta Upgrade](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-delta-upgrade.md) July 2021. The most recent upgrade was [Vega](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-vega-upgrade.md) December 2021. This type of upgrade preserves the same chain-id but is otherwise similar to a traditional hub upgrade, meaning historical state is lost after the upgrade takes place (still accessible of course by a v4.2.1 full node). Visit the [migration section](https://github.com/cosmos/gaia/tree/main/docs/migration) of the Hub's docs for more information on previous chain migrations.

Choose a reason for hiding this comment

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

Most of this history isn't particularly actionable for a user, starting in the present moment (our future) doing the thing that this tutorial instructs. (e.g. it's not a guide for upgrading delta/vaga, so they don't need to know about the past.)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Fair enough, this section was derived from material that was already there. Moving forward we'll be officially treating cosmos/mainnet as an archive repo so this might fit best there.

Before syncing a node, make sure the following prerequisites are completed:
- Choose the proper hardware/server configuration. See the [hardware guide](#hardware).
- Ensure Gaia is properly installed. See the [installation guide](https://hub.cosmos.network/main/getting-started/installation.html) for a walkthrough.
- Compile the Gaia binary (also in the installation guide). The version of Gaia will depend on [which way the node is synced](#Choosing-a-Sync-Mode). If syncing from scratch checkout version [`v4.2.1`](https://github.com/cosmos/gaia/releases/tag/v4.2.1). If syncing via state sync, checkout the [latest release](https://github.com/cosmos/gaia/releases/tag/v6.0.0). If unsure, see [releases](#Releases-amp-Upgrades) for more information on the appropriate version to build.

Choose a reason for hiding this comment

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

The (also in the installation guide,) parenthetical is a bit distracting. Either we should deduplicate the compilation instructions and redirect to the single location for that procedure, or we just say "if you haven't already compiled giad, do it again."

Copy link
Contributor

Choose a reason for hiding this comment

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

agree, "Ensure Gaia is properly installed" is essentially the same instruction as "Compile the Gaia binary".

Maybe what we're really trying to say is: "Decide what you actually want to do." Then we can provide instructions for each of the responses.

  • Get a node online and in sync with cosmoshub-4 as fast as possible regardless of data guarantees
    • ...with very little historical data => Quick Sync Pruned
    • ...with some historical data => Quick Sync Default
    • ...with all cosmoshub-4 historical data => Quick Sync Archive
  • Get a node online and in sync with cosmoshub-4 as fast as possible with high data guarantees but little historical data => State Sync
  • Get a node online and in sync with high data guarantees with all cosmoshub-4 historical data => Block Sync
  • Get a node online with all cosmoshub-3 historical data => Block Sync with gaia v2.0.x
  • Get a node online with all cosmoshub-2 historical data => Block Sync with gaia v1.0.x
  • Get a node online with all cosmoshub-1 historical data => Block Sync with gaia v0.0.x

Copy link
Contributor Author

@glnro glnro Jan 19, 2022

Choose a reason for hiding this comment

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

We can just get rid of the redundancy and instead provide a table of recommended ways to sync. I think given we'll be providing a separate quickstart document that we can put this in the syncing options section.

# A custom human readable name for this node
moniker = "<your_custom_moniker>"
```
Before choosing a method of syncing a node, make sure to walk through the basic setup and configuration. Operators will need to initialize gaiad, download the genesis file for `cosmoshub-4`, and set persistent peers and/or seeds for startup.

Choose a reason for hiding this comment

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

Avoid the "before..." clause

Copy link
Contributor Author

Choose a reason for hiding this comment

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

👍


Alternatively, node operators can also download the [Quicksync address book]( https://quicksync.io/addrbook.cosmos.json). Make sure this is moved to `~/.gaia/config/addrbook.json`.

Choose a reason for hiding this comment

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

  • is moved is passive. if we're going to tell people to do something we should actually do it?
  • is this alternative important? I feel like there should only be path through a document like this.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

👍

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I updated to
Node operators can optionally download the Quicksync address book. Make sure to move this to ~/.gaia/config/addrbook.json.

This document will serve as a longform tutorial on joining mainnet while #1206 will serve as a definitive guide to bootstrapping a mainnet node with a single path through (for both state sync and quicksync).

@@ -134,23 +102,29 @@ Transactions on the Cosmos Hub network need to include a transaction fee in orde
fees = ceil(gas * gasPrices)
```

The `gas` is dependent on the transaction. Different transaction require different amount of `gas`. The `gas` amount for a transaction is calculated as it is being processed, but there is a way to estimate it beforehand by using the `auto` value for the `gas` flag. Of course, this only gives an estimate. You can adjust this estimate with the flag `--gas-adjustment` (default `1.0`) if you want to be sure you provide enough `gas` for the transaction.
The `gas` is dependent on the transaction. Different transaction require different amount of `gas`. The `gas` amount for a transaction is calculated as it is being processed, but there is a way to estimate it beforehand by using the `auto` value for the `gas` flag. Of course, this only gives an estimate. This estimate is adjustable with the flag `--gas-adjustment` (default `1.0`) to ensure enough `gas` is provided for the transaction.

Choose a reason for hiding this comment

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

gas depends on the of the transaction, based upon the work required to process the transaction.

might be a more clear way to organize this sentence.


using "of course" conveys a judgement that isn't super useful.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sure thing, this was another copy paste from the original document. I might even rewrite/combine some things like the first two sentences.

To be best prepared for eventual upgrades, it is recommended to setup [Cosmovisor](https://docs.cosmos.network/master/run-node/cosmovisor.html), a small process manager, which can swap in new `gaiad` binaries. Read more about setting this up [here](upgrade-node.md).
## Choosing a Sync Mode

There are three main ways to sync a node on the Cosmos Hub. The way a node operator will want to sync is partially dependent on the type of node they will operate. This guide will focus on two types of common nodes; archive/full and pruned. For further information on syncing to run a validator node, see the section on [Validators](https://hub.cosmos.network/main/validators/overview.html).

Choose a reason for hiding this comment

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

There are three main ways to sync a node: .

I think we need to just make decisions for people? I think it's good to scope the document to not have validators, but it seems like that kind of decision should (and probably ways) made much earlier in the document.

I'd also just call them "full nodes" and not create ambiguity with the word "archive".


While it might be the case that in the current release running a node without blocksync (formerly fastsync) is possible, in the future it won't be, and all nodes (except seed nodes, say) will run blocksync, and while there's a theoretical possibility of not running blocksync, I don't think this is a thing that is worth highlighting in the documentation, as it's mostly a way for operators to get stuck.


### State Sync

Enabling state sync can be one of the most efficient ways to bootstrap a node. On startup, the node will ask its peers for available snapshots. Once a snapshot has been accepted, it will begin requesting snapshot chunks from peers. Once the snapshot is verified, the node will begin to process blocks in realtime until it catches up with the head of the chain. For more information on state sync, see [Tendermint's documentation](https://docs.tendermint.com/master/spec/p2p/messages/state-sync.html).

Choose a reason for hiding this comment

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

Statesync can apply multiple snapshots, after which the node can start using blocksync/fastsync (or consensus replay).

Having said that I might say: "statesync is an efficient way to bootstrap a new node, and it works by replaying larger chunks of application state directly rather than replaying individual blocks or consensus rounds." which is probably closer to what readers care about most?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

👍

It is highly recommended that node operators use the same value for snapshot-interval in order to aid snapshot discovery. Discovery is easier when more nodes are serving the same snapshots.


## Hardware

Choose a reason for hiding this comment

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

this feels like it should go near the top of the document, as it's a logical prerequisite.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Agreed. We've since updated gaia to enable snapshotting with these values as the default so the wording will have to change and be moved to the top of this block

```

## Export State

## Exporting State

Gaia can dump the entire application state into a JSON file. This application state dump is useful for manual analysis and can also be used as the genesis file of a new network.
Copy link
Contributor

Choose a reason for hiding this comment

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

Should mention that the node can't be running when exporting state otherwise you can expect a 'resource temporarily unavailable' error.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

👍

@glnro glnro mentioned this pull request Jan 12, 2022
4 tasks
@glnro
Copy link
Contributor Author

glnro commented Jan 12, 2022

After a few discussions, I'm proposing that instead of adding a Quickstart section to the top of the Joining Mainnet docs in the Tutorials section, that instead we create a separate Quickstart section after the Installation guide in the Getting Started section. I think it's still important to at least keep mainnet up to date with the current proposed changes in this PR, however, that content in addition to a streamlined quickstart via quicksync can be ported to a new section in either this PR or a separate PR. My opinion would be to create that document in a separate PR and first work to merge these changes in so there's at least an up to date document for anyone looking to spin up a node without having to open an issue in the repo when they can't find peers to sync to or some other issue that this PR addresses.

@glnro glnro added the scope: docs Improvements or additions to documentation label Jan 12, 2022
@glnro glnro force-pushed the update-join-mainnet-docs branch from 9d62bd2 to aa45686 Compare January 12, 2022 13:51
* Give your node a moniker and configure it
* Download compressed genesis state
* Put the `genesis.json` file in the correct location
The current Cosmos Hub mainnet `cosmoshub-4` has been performing in place store migration upgrades as of the [Delta Upgrade](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-delta-upgrade.md) July 2021. The most recent upgrade was [Vega](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-vega-upgrade.md) December 2021. This type of upgrade preserves the same chain-id but is otherwise similar to a traditional hub upgrade, meaning historical state is lost after the upgrade takes place (still accessible of course by a v4.2.1 full node). Visit the [migration section](https://github.com/cosmos/gaia/tree/main/docs/migration) of the Hub's docs for more information on previous chain migrations.
Copy link
Contributor

Choose a reason for hiding this comment

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

Suggested change
The current Cosmos Hub mainnet `cosmoshub-4` has been performing in place store migration upgrades as of the [Delta Upgrade](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-delta-upgrade.md) July 2021. The most recent upgrade was [Vega](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-vega-upgrade.md) December 2021. This type of upgrade preserves the same chain-id but is otherwise similar to a traditional hub upgrade, meaning historical state is lost after the upgrade takes place (still accessible of course by a v4.2.1 full node). Visit the [migration section](https://github.com/cosmos/gaia/tree/main/docs/migration) of the Hub's docs for more information on previous chain migrations.
The current Cosmos Hub mainnet, `cosmoshub-4`, has been performing in place store migration upgrades as of the [Delta Upgrade](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-delta-upgrade.md) July 2021. The most recent upgrade was [Vega](https://github.com/cosmos/gaia/blob/main/docs/migration/cosmoshub-4-vega-upgrade.md) December 2021. This type of upgrade preserves the same chain-id but state before the upgrade height is only accessible by corresponding versions of the binary (ie. queries of state between height `6910000` and `8695000` should use `gaia v5.0.x` (Delta) but after `86950000` should use `gaia v6.0.x` (Vega) to guarantee correctly encoded responses). Visit the [migration section](https://github.com/cosmos/gaia/tree/main/docs/migration) of the Hub's docs for more information on previous chain migrations.

| ----------- | --------------------- | ----------- |
| Validator | 16GB (32 Recommended) | 500GB-2TB* |
| Full/Archive | 8GB (16 Recommended) | 2TB |
| Default | 8GB (16 Recommended) | 1TB |
Copy link
Contributor

Choose a reason for hiding this comment

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

this table is our recommendation, we should just put the actual number we recommend, 32, 16, 16, 8

@glnro glnro force-pushed the update-join-mainnet-docs branch from aa45686 to 81214d8 Compare January 20, 2022 13:40
@okwme okwme merged commit 118aaa7 into cosmos:main Jan 28, 2022
dongsam added a commit to b-harvest/gravity-dex that referenced this pull request Feb 3, 2022
* main:
  Update cosmos-hub-roadmap-2.0.md (cosmos#1224)
  Fix rocksdb build tag usage (cosmos#1135)
  versions (cosmos#1100)
  Update cosmos-hub-roadmap-2.0.md Liquidity (cosmos#1220)
  Updates to Validator Docs (cosmos#1207)
  Update joining mainnet documentation (cosmos#1146)
  Update Ledger doc with Keplr (cosmos#1205)

# Conflicts:
#	go.sum
yaruwangway added a commit that referenced this pull request Mar 16, 2022
* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
yaruwangway added a commit that referenced this pull request Mar 16, 2022
* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
yaruwangway added a commit that referenced this pull request Mar 16, 2022
* merge theta-main to release/v7.0.0-rc0 (#1339)

* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* chore: add CHANGELOG

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
okwme added a commit that referenced this pull request Mar 24, 2022
* merge theta-main to release/v7.0.0-rc0 (#1339)

* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* chore: add CHANGELOG

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
yaruwangway added a commit that referenced this pull request Mar 24, 2022
* merge theta-main to release/v7.0.0-rc0 (#1339)

* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* chore: add CHANGELOG

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
yaruwangway added a commit that referenced this pull request Mar 24, 2022
* update changelog

* make ica host allow msg types const

* merge Release/v7.0.0 rc0 to release/v7.0.x (#1340) (#1351)

* merge theta-main to release/v7.0.0-rc0 (#1339)

* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* chore: add CHANGELOG

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* resolve conflict from cherrry pick 04b0191

* resolve conflit from cherry pick 611e338

* resolve conflit from cherry pick 1722cf8

* resolve conflit from cherry pick d6f7b57

* fix e2e gaia package version

* chore: fix lint

Co-authored-by: Yaru Wang <[email protected]>
Co-authored-by: yaruwangway <[email protected]>
Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
Co-authored-by: Aleksandr Bezobchuk <[email protected]>
yaruwangway added a commit that referenced this pull request Mar 24, 2022
* Theta main (#1356)

* update changelog

* make ica host allow msg types const

* merge Release/v7.0.0 rc0 to release/v7.0.x (#1340) (#1351)

* merge theta-main to release/v7.0.0-rc0 (#1339)

* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* chore: add CHANGELOG

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* resolve conflict from cherrry pick 04b0191

* resolve conflit from cherry pick 611e338

* resolve conflit from cherry pick 1722cf8

* resolve conflit from cherry pick d6f7b57

* fix e2e gaia package version

* chore: fix lint

Co-authored-by: Yaru Wang <[email protected]>
Co-authored-by: yaruwangway <[email protected]>
Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
Co-authored-by: Aleksandr Bezobchuk <[email protected]>

* update CHANGELOG

Co-authored-by: Gaurav Raghuvanshy <[email protected]>
Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
Co-authored-by: Aleksandr Bezobchuk <[email protected]>
okwme added a commit that referenced this pull request Mar 24, 2022
* Theta main (#1356)

* update changelog

* make ica host allow msg types const

* merge Release/v7.0.0 rc0 to release/v7.0.x (#1340) (#1351)

* merge theta-main to release/v7.0.0-rc0 (#1339)

* Theta prepare merge to theta main (#1337)

* chore: update changelog (#1060)

* add changelog for backport release v5.0.8 (#1061)

* Change golangci-lint version to the latest version of golangci-lint (v1.42.1) (#1043)

Co-authored-by: yaruwangway <[email protected]>

* Update DOCS_README with switch to GH Actions (#1049)

* Update DOCS_README with switch to GH Actions

* update to repo makefile

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1051: reenable displying params in gov docs

* Update cosmos-hub-roadmap-2.0.md (#1065)

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md

* Update cosmos-hub-roadmap-2.0.md (#1066)

* Update cosmos-hub-roadmap-2.0.md (#1068)

* Update CODEOWNERS (#1031)

* Update CODEOWNERS

* Update .github/CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update CODEOWNERS

Co-authored-by: Marko <[email protected]>

* Update README.md (#1063)

* hide top banner (#1062)

Co-authored-by: billy rennekamp <[email protected]>

* Update Readme.md (#1046)

* Update Readme.md

Added a 'How to Use' section and a line on learning more about the Cosmos Hub.

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update README.md (#1069)

* Create statesync.bash (#1027)

* Create statesync.bash

Co-authored-by: billy rennekamp <[email protected]>

* Update interchain-security.md (#1071)

* Update cosmos-hub-roadmap-2.0.md (#1076)

* Vega 6.0.0 (#1077)

* fix: delete new modules from fromVM map to not skip init genesis

* fix: migrate auth module after staking

* gaia: add NewSetUpContextDecorator to antedecorator (#1078)

* Update upgrade-node.md (#1080)

add more info

* Add IOBScan to Cosmos Hub Explorers list (#1075)

* Update Readme (#1083)

* Update Readme

* Update README.md

* Update README.md

* Update README.md

Co-authored-by: billy rennekamp <[email protected]>

* Update Dockerfile.test (#1026)

Co-authored-by: billy rennekamp <[email protected]>

* Update cosmos-hub-roadmap-2.0.md (#1085)

* Update cosmos-hub-roadmap-2.0.md (#1088)

* Merge pull request #1050: Create Governance proposal template

* add first draft proposal templates

* add new PR template for governance

* edit for small fixes (#1086)

* Update validator-faq.md (#1087)

more editorial love for this essential content

* docs: fix links in governance section (#1089)

* rm dev discord links

* update and relativize links

* align with link style elsewhere in docs

* docs: vega upgrade instruction (#1096)

* docs: vega upgrade instruction

* chore: change upgrade time

* Update cosmoshub-4-vega-upgrade.md

chore: formatting

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: yaruwangway <[email protected]>

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: billy rennekamp <[email protected]>

* doc: change doc for vega upgrade instruction (#1098)

* doc: change doc for vega upgrade instruction

* Update cosmoshub-4-vega-upgrade.md

typo fix

* docs minor typo fix (#1104)

Cross Chain Validator (CCV)
relay validator set composition

* add dependabot (#1103)

Co-authored-by: Marko Baricevic <[email protected]>

* Update interchain-security.md (#1105)

Co-authored-by: billy rennekamp <[email protected]>

* Update gaiad installation docs, update docs install/run instructions, and clean up left menu ordering (#1095)

Make requested changes

Make ordering consistent

* Fix broken installation links (#1120)

* Bump technote-space/get-diff-action from 4 to 5.0.2 (#1108)

Bumps [technote-space/get-diff-action](https://github.com/technote-space/get-diff-action) from 4 to 5.0.2.
- [Release notes](https://github.com/technote-space/get-diff-action/releases)
- [Changelog](https://github.com/technote-space/get-diff-action/blob/main/.releasegarc)
- [Commits](technote-space/get-diff-action@v4...v5.0.2)

---
updated-dependencies:
- dependency-name: technote-space/get-diff-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1119)

Bumps [github.com/spf13/cobra](https://github.com/spf13/cobra) from 1.2.1 to 1.3.0.
- [Release notes](https://github.com/spf13/cobra/releases)
- [Changelog](https://github.com/spf13/cobra/blob/master/CHANGELOG.md)
- [Commits](spf13/cobra@v1.2.1...v1.3.0)

---
updated-dependencies:
- dependency-name: github.com/spf13/cobra
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump codecov/codecov-action from 1 to 2.1.0 (#1114)

Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 1 to 2.1.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/master/CHANGELOG.md)
- [Commits](codecov/codecov-action@v1...v2.1.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 3.7.1 to 4.1.8 (#1128)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 3.7.1 to 4.1.8.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@3.7.1...4.1.8)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump github.com/cosmos/ibc-go/v2 from 2.0.0 to 2.0.2 (#1124)

Bumps [github.com/cosmos/ibc-go/v2](https://github.com/cosmos/ibc-go) from 2.0.0 to 2.0.2.
- [Release notes](https://github.com/cosmos/ibc-go/releases)
- [Changelog](https://github.com/cosmos/ibc-go/blob/v2.0.2/CHANGELOG.md)
- [Commits](cosmos/ibc-go@v2.0.0...v2.0.2)

---
updated-dependencies:
- dependency-name: github.com/cosmos/ibc-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump github.com/tendermint/tm-db from 0.6.4 to 0.6.6 (#1116)

Bumps [github.com/tendermint/tm-db](https://github.com/tendermint/tm-db) from 0.6.4 to 0.6.6.
- [Release notes](https://github.com/tendermint/tm-db/releases)
- [Changelog](https://github.com/tendermint/tm-db/blob/master/CHANGELOG.md)
- [Commits](tendermint/tm-db@v0.6.4...v0.6.6)

---
updated-dependencies:
- dependency-name: github.com/tendermint/tm-db
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump gaurav-nelson/github-action-markdown-link-check (#1112)

Bumps [gaurav-nelson/github-action-markdown-link-check](https://github.com/gaurav-nelson/github-action-markdown-link-check) from 0.6.0 to 1.0.13.
- [Release notes](https://github.com/gaurav-nelson/github-action-markdown-link-check/releases)
- [Commits](gaurav-nelson/github-action-markdown-link-check@0.6.0...1.0.13)

---
updated-dependencies:
- dependency-name: gaurav-nelson/github-action-markdown-link-check
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/setup-go from 2.1.3 to 2.1.5 (#1130)

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 2.1.3 to 2.1.5.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v2.1.3...v2.1.5)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Update broken links in docs (#1131)

* update links in docs

* cleanup

* Bump actions/stale from 3 to 4.1.0 (#1113)

Bumps [actions/stale](https://github.com/actions/stale) from 3 to 4.1.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](actions/stale@v3...v4.1.0)

---
updated-dependencies:
- dependency-name: actions/stale
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/checkout from 2.3.1 to 2.4.0 (#1110)

Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.1 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2.3.1...v2.4.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marko <[email protected]>

* Bump actions/cache from 1 to 2.1.7 (#1107)

Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.7.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](actions/cache@v1...v2.1.7)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Fix links to hub-tutorials (#1132)

* Fix links to hub-tutorials

Some of the links are broken due to the change of the gaia-tutorials folder. This should fix them.

* Update installation.md

* Update stale.yml to exclude issues (#1138)

Taken from https://github.com/cosmos/cosmos-sdk/blob/master/.github/workflows/stale.yml

* Update the upgrade time (#1102)

* Update cosmoshub-4-vega-upgrade.md

update the upgrade time

* Update docs/migration/cosmoshub-4-vega-upgrade.md

Co-authored-by: Noam <[email protected]>

* docs: add system requirement

Co-authored-by: Noam <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* Update Roadmap to mention Vega is completed (#1140)

* Update Roadmap to mention Vega is completed

And some little things to make sure the page is parsed well for the new cosmos hub roadmap page.

* Updates to gravity bridge mentions

Updated to signal Gravity Bridge is an external chain that was released around Vega.

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: billy rennekamp <[email protected]>

* Added instructions on depositing to a proposal (#1142)

* Added instructions on depositing to a proposal

Also replaced the Hubble instructions with Mintscan.

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

* Update docs/governance/submitting.md

Co-authored-by: billy rennekamp <[email protected]>

* Merge pull request #1090: docs: Set up locales for existing translations

* set up locales for translations

* remove es translations from gov section

* update links in locale readmes

* add initial instruction on locales in DOCS_README

* add labels and selectText

* remove frontmatter in es README

* Module Readiness Github Issue & Docs (#1172)

* add tempalte and dir

* Update template.md

* add issue template

* Add module readiness template

* Add readiness readme and adr template

* Edit adr template

* Update ADR template

Co-authored-by: billy rennekamp <[email protected]>

* Update module-readiness.md

* Docs: Restructure governance section (#1126)

* rm gov gaiad page use getting started

* restructure proposal type readmes and formatting

* rename files to use - vs _

* update links and order pages

* move all best practices into a single doc

* Apply suggestions from code review

Co-authored-by: billy rennekamp <[email protected]>

Co-authored-by: billy rennekamp <[email protected]>

* Bump vuepress-theme-cosmos from 1.0.182 to 1.0.183 in /docs (#1161)

Bumps [vuepress-theme-cosmos](https://github.com/cosmos/vuepress-theme-cosmos) from 1.0.182 to 1.0.183.
- [Release notes](https://github.com/cosmos/vuepress-theme-cosmos/releases)
- [Commits](https://github.com/cosmos/vuepress-theme-cosmos/commits)

---
updated-dependencies:
- dependency-name: vuepress-theme-cosmos
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump JamesIves/github-pages-deploy-action from 4.1.8 to 4.2.2 (#1152)

Bumps [JamesIves/github-pages-deploy-action](https://github.com/JamesIves/github-pages-deploy-action) from 4.1.8 to 4.2.2.
- [Release notes](https://github.com/JamesIves/github-pages-deploy-action/releases)
- [Commits](JamesIves/github-pages-deploy-action@4.1.8...v4.2.2)

---
updated-dependencies:
- dependency-name: JamesIves/github-pages-deploy-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* 1159 update state sync configs (#1160)

* Update default snapshot configs

* Refactor

* Fix override to include default template

Co-authored-by: billy rennekamp <[email protected]>

* Add tabbing for markdown docs (#1217)

* Add tabbing for markdown docs

* Add package-lock

* Theta update (#1211)

* Update cosmos-hub-roadmap-2.0.md

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update docs/roadmap/cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update cosmos-hub-roadmap-2.0.md

Co-authored-by: lg <[email protected]>

* Update Ledger doc with Keplr (#1205)

* Update Ledger doc with Keplr

Replaced Lunie instructions with Keplr

* Removed leftover Lunie content

* Update ledger.md

Co-authored-by: billy rennekamp <[email protected]>

* Update joining mainnet documentation (#1146)

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

* Update joining mainnet documentation

* Minor fixes for updated joining mainnet documentation

* Update menu order

* Make requested changes

* Additional updates

* Make requested changes for hardware config

* Update config header

* Fix tabbing header

Co-authored-by: billy rennekamp <[email protected]>

* Updates to Validator Docs (#1207)

* Updated validator documentation.

* Small updates

* fixes from yaru feedback

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

* Update docs/validators/validator-setup.md

Co-authored-by: lg <[email protected]>

Co-authored-by: lg <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>

* bump cosmsos-sdk v0.44.5 to v0.45.0, ibc-go v2 to v3-alpha2, fix in-place migration ordering

* fix: panic when forget to add modules to SetOrder{BeginBlocker, EndBlocker, InitGenesis, ExportGenesis} functions

* fix: store.StoreUpgrades{}

* bump: replace dependencies to depend on sdk 0.45.0

* bump: liquidity module to v1.4.5

* bump: cosmos-sdk to v0.45.1

* fix: server.Generate* is deprecated, it is moved to testutil

* fix: upgrade module should run first in SetOrderBeginBlockers

* fix:  client.ReadFromClientConfig -> client.ReadPersistentCommandFlags

* bump: gaia module: v6 -> v7

* bump: ibc-go to v3.0.0-beta1

* fix: router module

* style: adjust package import order

* fix: SetOrderEndBlockers

* fix: adjust capability module's beginblocker position

* Update app.go

style: remove extra print

* fix: SetOrderInitGenesis

* fix: lint

* add migration logs

* feat: add ica

* fix: lint

* bump: ibc-to to v3.0.0-rc0

* fix: ica init

* fix: fromVersionMap

* set ica params

* bump: liquidity to v1.5.0

* update upgrade name

* bump: packet-forward-module

* fix: ica in upgrade

* bump: packet-forward module to v1.0.2

* bump: ibc-go to v3.0.0-rc1

* chore: add log

* fix: upgrade add store

* block all module acct to receive tokens by MsgSend

* bump: ibc-go to v3.0.0-rc2

* remove unused function GetMaccPerms

* bump: liquidity module to v1.5.0

* chore: rename ibcmodule to transferIBCModule

* fix: delete ica controller module and allow more msg types in ica

* fix: add icacontroller store to avoid panic

* bump: ibc-go to v3.0.0 and remove ica controller

* bump: packet-forward module to v2.1.1

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* fix: fromVM

* chore: correct docs, comments, go.sum

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* chore: add CHANGELOG

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>

* resolve conflict from cherrry pick 04b0191

* resolve conflit from cherry pick 611e338

* resolve conflit from cherry pick 1722cf8

* resolve conflit from cherry pick d6f7b57

* fix e2e gaia package version

* chore: fix lint

Co-authored-by: Yaru Wang <[email protected]>
Co-authored-by: yaruwangway <[email protected]>
Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
Co-authored-by: Aleksandr Bezobchuk <[email protected]>

* update CHANGELOG

Co-authored-by: Gaurav Raghuvanshy <[email protected]>
Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
Co-authored-by: Aleksandr Bezobchuk <[email protected]>

Co-authored-by: Gaurav Raghuvanshy <[email protected]>
Co-authored-by: psh4nk <[email protected]>
Co-authored-by: dcwalk <[email protected]>
Co-authored-by: billy rennekamp <[email protected]>
Co-authored-by: Marko <[email protected]>
Co-authored-by: Daria K <[email protected]>
Co-authored-by: tmckenzie51 <[email protected]>
Co-authored-by: Jacob Gadikian <[email protected]>
Co-authored-by: Zhiwei(Jeffrey) Hu <[email protected]>
Co-authored-by: Jessica Dosseh <[email protected]>
Co-authored-by: Jack Zampolin <[email protected]>
Co-authored-by: Barrie Byron <[email protected]>
Co-authored-by: Marko Baricevic <[email protected]>
Co-authored-by: Gavin <[email protected]>
Co-authored-by: lg <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: fkneeland-figure <[email protected]>
Co-authored-by: Noam <[email protected]>
Co-authored-by: Aleksandr Bezobchuk <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: docs Improvements or additions to documentation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants