Skip to content

Commit f1b76a2

Browse files
Merge pull request #261 from terra-money/upgrade/v0.47.x
feat: upgrade sdk 0.47
2 parents 6d5a17d + 4a0b529 commit f1b76a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3069
-660
lines changed
File renamed without changes.
File renamed without changes.

.github/workflows/test.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -180,12 +180,12 @@ jobs:
180180
with:
181181
name: "${{ github.sha }}-e2e-coverage"
182182
continue-on-error: true
183-
- name: sonarcloud
184-
if: env.GIT_DIFF
185-
uses: SonarSource/sonarcloud-github-action@master
186-
env:
187-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
188-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
183+
# - name: sonarcloud
184+
# if: env.GIT_DIFF
185+
# uses: SonarSource/sonarcloud-github-action@master
186+
# env:
187+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
188+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
189189

190190
liveness-test:
191191
runs-on: ubuntu-latest
@@ -271,11 +271,11 @@ jobs:
271271
run: |
272272
cd simapp
273273
go test -mod=readonly -timeout 30m -tags='app_v1 norace ledger test_ledger_mock rocksdb_build' ./...
274-
- name: sonarcloud
275-
if: env.GIT_DIFF
276-
uses: SonarSource/sonarcloud-github-action@master
277-
env:
278-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
279-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
280-
with:
281-
projectBaseDir: simapp/
274+
# - name: sonarcloud
275+
# if: env.GIT_DIFF
276+
# uses: SonarSource/sonarcloud-github-action@master
277+
# env:
278+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
279+
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
280+
# with:
281+
# projectBaseDir: simapp/

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,24 @@ Ref: https://keepachangelog.com/en/1.0.0/
3737

3838
## [Unreleased]
3939

40+
## [v0.47.5](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.5) - 2023-09-01
41+
42+
### Features
43+
44+
* (client/rpc) [#17274](https://github.com/cosmos/cosmos-sdk/pull/17274) Add `QueryEventForTxCmd` cmd to subscribe and wait event for transaction by hash.
45+
* (keyring) [#17424](https://github.com/cosmos/cosmos-sdk/pull/17424) Allows to import private keys encoded in hex.
46+
4047
### Improvements
4148

49+
* (x/gov) [#17387](https://github.com/cosmos/cosmos-sdk/pull/17387) Add `MsgSubmitProposal` `SetMsgs` method.
4250
* (x/gov) [#17354](https://github.com/cosmos/cosmos-sdk/issues/17354) Emit `VoterAddr` in `proposal_vote` event.
4351
* (x/group, x/gov) [#17220](https://github.com/cosmos/cosmos-sdk/pull/17220) Add `--skip-metadata` flag in `draft-proposal` to skip metadata prompt.
4452
* (x/genutil) [#17296](https://github.com/cosmos/cosmos-sdk/pull/17296) Add `MigrateHandler` to allow reuse migrate genesis related function.
4553
* In v0.46, v0.47 this function is additive to the `genesis migrate` command. However in v0.50+, adding custom migrations to the `genesis migrate` command is directly possible.
4654

4755
### Bug Fixes
4856

57+
* (server) [#17181](https://github.com/cosmos/cosmos-sdk/pull/17181) Fix `db_backend` lookup fallback from `config.toml`.
4958
* (runtime) [#17284](https://github.com/cosmos/cosmos-sdk/pull/17284) Properly allow to combine depinject-enabled modules and non-depinject-enabled modules in app v2.
5059
* (baseapp) [#17159](https://github.com/cosmos/cosmos-sdk/pull/17159) Validators can propose blocks that exceed the gas limit.
5160
* (baseapp) [#16547](https://github.com/cosmos/cosmos-sdk/pull/16547) Ensure a transaction's gas limit cannot exceed the block gas limit.

RELEASE_NOTES.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
1-
# Cosmos SDK v0.47.4 Release Notes
1+
# Cosmos SDK v0.47.5 Release Notes
22

33
💬 [**Release Discussion**](https://github.com/orgs/cosmos/discussions/categories/announcements)
44

55
## 🚀 Highlights
66

7-
Missed the v0.47.0 announcement? Read it [here](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.47.0).
8-
For this fourth patch release of the `v0.47.x` line, some of the notable changes include:
7+
Get ready for v0.50.0 and start integrating with the next [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.0-rc.0) release.
98

10-
* An improvement in `<appd> prune` UX.
11-
* Improving the error handling when there is a snapshot creation failure.
9+
For this 5th patch release of the `v0.47.x` line, some of the notable changes include:
1210

13-
Check out the [changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.47.4/CHANGELOG.md) for an exhaustive list of changes or [compare changes](https://github.com/cosmos/cosmos-sdk/compare/release/v0.47.3...v0.47.4) from last release.
11+
* A new command for importing private keys encoded in hex. This complements the existing `import` command that supports mnemonic and key files.
12+
Use `<appd> keys import <name> <hex>` to import a private key encoded in hex.
13+
* A new command, `rpc.QueryEventForTxCmd` for querying a transaction by its hash and blocking until the transaction is included in a block. It is useful as an alternative to the legacy `--sync block`.
14+
15+
Check out the [changelog](https://github.com/cosmos/cosmos-sdk/blob/v0.47.5/CHANGELOG.md) for an exhaustive list of changes or [compare changes](https://github.com/cosmos/cosmos-sdk/compare/release/v0.47.4...v0.47.5) from last release.
1416

1517
Refer to the [upgrading guide](https://github.com/cosmos/cosmos-sdk/blob/release/v0.47.x/UPGRADING.md) when migrating from `v0.46.x` to `v0.47.0`.

client/docs/statik/statik.go

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)