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

bump up to 2d437b057eac6e33e1fcccb41d603630d2f3447a #1077

Merged
merged 31 commits into from
Aug 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4f96389
Release finschia-sdk v0.47.0 (#988)
zemyblue Apr 25, 2023
565ffd3
chore(deps): Bump golang.org/x/crypto from 0.0.0-20200622213623-75b28…
dependabot[bot] Apr 28, 2023
8bbbce0
chore(deps): Bump github.com/prometheus/client_golang from 1.14.0 to …
dependabot[bot] Apr 28, 2023
34753f2
chore(deps): Bump github.com/coinbase/rosetta-sdk-go from 0.8.2 to 0.…
dependabot[bot] Apr 28, 2023
c626995
Merge branch 'main' into feat/apply_v1.0.0
zemyblue May 2, 2023
bf4815b
Merge pull request #992 from zemyblue/feat/apply_v1.0.0
zemyblue May 2, 2023
a0c02c4
chore(deps): Bump github.com/prometheus/client_golang from 1.15.0 to …
dependabot[bot] May 8, 2023
d192860
chore(deps): Bump github.com/prometheus/common from 0.42.0 to 0.43.0 …
dependabot[bot] May 9, 2023
4e69766
docs: fix local swagger url (#997)
dudong2 May 11, 2023
46a5123
chore(deps): Bump actions/setup-go from 3.5.0 to 4.0.0 (#973)
dependabot[bot] May 11, 2023
1e6bae4
chore(deps): Bump golang.org/x/crypto from 0.8.0 to 0.9.0 (#996)
dependabot[bot] May 11, 2023
8e8a3d8
chore(deps): Bump codecov/codecov-action from 3.1.3 to 3.1.4 (#1004)
dependabot[bot] May 16, 2023
c357b6a
chore(deps): Bump actions/setup-go from 4.0.0 to 4.0.1 (#1003)
dependabot[bot] May 16, 2023
32b9736
chore(deps): Bump github.com/grpc-ecosystem/go-grpc-middleware from 1…
dependabot[bot] May 22, 2023
db2dc68
chore(deps): Bump github.com/spf13/cast from 1.5.0 to 1.5.1 (#1005)
dependabot[bot] May 22, 2023
97b255e
chore(deps): Bump github.com/stretchr/testify from 1.8.2 to 1.8.3 (#1…
dependabot[bot] May 22, 2023
13ae1f6
feat: support custom r/w gRPC options (#1017)
zemyblue May 27, 2023
227ee73
chore(deps): Bump github.com/stretchr/testify from 1.8.3 to 1.8.4 (#1…
dependabot[bot] Jun 5, 2023
6d8639a
chore(deps): Bump github.com/prometheus/common from 0.43.0 to 0.44.0 …
dependabot[bot] Jun 5, 2023
d8ceec3
chore(deps): Bump github.com/spf13/viper from 1.15.0 to 1.16.0 (#1020)
dependabot[bot] Jun 6, 2023
910a66b
feat!: migrate x/foundation FoundationTax into x/params (#999)
0Tech May 17, 2023
a9762dc
feat: add the api for querying next account number (#1011)
zemyblue May 22, 2023
616ff41
Merge pull request #1035 from zemyblue/feat/apply_changes_v0.47.x
zemyblue Jul 11, 2023
97b78db
refactor: change the proof.proto path to third_party/proto/confio (#1…
170210 Jul 14, 2023
3e775ff
fix: unable to connect ledger nano S on Ubuntu (#1040)
jaeseung-bae Jul 20, 2023
43555be
build: update golang version to 1.20 (#1043)
0Tech Jul 25, 2023
f8840ed
fix: make x/foundation MsgExec propagate events (#1053)
0Tech Jul 25, 2023
c3279ef
chore(deps): Bump github.com/prometheus/client_golang from 1.15.1 to …
dependabot[bot] Jul 31, 2023
6613064
chore(deps): Bump google.golang.org/protobuf from 1.30.0 to 1.31.0 (#…
dependabot[bot] Jul 31, 2023
2d437b0
chore: Bump up Ostracon to 1.1.1 (#1057)
tnasu Aug 1, 2023
2312c15
Merge commit '2d437b057eac6e33e1fcccb41d603630d2f3447a' into chore/bu…
ulbqb Aug 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
Copy link
Contributor

Choose a reason for hiding this comment

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

Are there any plans to update the golang version of ramus as well?

Copy link
Member Author

Choose a reason for hiding this comment

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

Yes. Latest ostracon requires 1.20 so all depending on it needs to be updated.

go-version: '1.20'
- uses: actions/checkout@v3
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
**/**.go
go.mod
go.sum
- uses: golangci/golangci-lint-action@master
- uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.49.0
version: v1.51
args: --timeout 10m
github-token: ${{ secrets.GITHUB_TOKEN }}
if: env.GIT_DIFF
4 changes: 2 additions & 2 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: ./.github/actions/generate-swagger
- name: diff
run: git diff
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/release-sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip-sims') && contains(github.event.pull_request.labels.*.name, 'release')"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- run: |
make build

install-runsim:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: install runsim
run: |
export GO111MODULE="on" && go install github.com/cosmos/tools/cmd/runsim@v1.0.0
Expand All @@ -53,9 +53,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: actions/cache@v3.3.1
with:
path: ~/go/bin
Expand All @@ -73,9 +73,9 @@ jobs:
needs: [build, install-runsim, test-sim-multi-seed-long-part1]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: actions/cache@v3.3.1
with:
path: ~/go/bin
Expand All @@ -93,9 +93,9 @@ jobs:
needs: [build, install-runsim, test-sim-multi-seed-long-part2]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: actions/cache@v3.3.1
with:
path: ~/go/bin
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip-sims')"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- run: make build
Expand All @@ -35,9 +35,9 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- name: Install runsim
Expand All @@ -52,9 +52,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: technote-space/get-diff-action@v6.1.2
Expand All @@ -79,9 +79,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: technote-space/get-diff-action@v6.1.2
Expand All @@ -108,9 +108,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: technote-space/get-diff-action@v6.1.2
Expand All @@ -137,9 +137,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: technote-space/get-diff-action@v6.1.2
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/sims_normal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip-sims')"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- run: make build
Expand All @@ -22,9 +22,9 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- name: Install runsim
Expand All @@ -39,9 +39,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: actions/cache@v3.3.1
Expand All @@ -57,9 +57,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: actions/cache@v3.3.1
Expand All @@ -75,9 +75,9 @@ jobs:
needs: [build, install-runsim]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: actions/cache@v3.3.1
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
install-tparse:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- name: install tparse
Expand All @@ -49,9 +49,9 @@ jobs:
- run: sudo apt update && sudo apt install -y ${{ matrix.package }} qemu-user-binfmt
if: "matrix.package != ''"
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: technote-space/get-diff-action@v6.1.2
id: git_diff
with:
Expand All @@ -68,9 +68,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- name: Display go version
run: go version
- uses: technote-space/get-diff-action@v6.1.2
Expand Down Expand Up @@ -120,9 +120,9 @@ jobs:
part: ["00", "01", "02", "03"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
sed -i.bak "/$(echo $filename | sed 's/\//\\\//g')/d" coverage.txt
done
if: env.GIT_DIFF
- uses: codecov/codecov-action@v3.1.3
- uses: codecov/codecov-action@v3.1.4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
Expand All @@ -208,9 +208,9 @@ jobs:
part: ["00", "01", "02", "03"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4.0.0
- uses: actions/setup-go@v4.0.1
with:
go-version: 1.19
go-version: '1.20'
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
Expand Down Expand Up @@ -267,7 +267,7 @@ jobs:
# - uses: actions/checkout@v3
# - uses: actions/setup-go@v2.1.3
# with:
# go-version: 1.19
# go-version: '1.20'
# - uses: technote-space/get-diff-action@v6.1.2
# id: git_diff
# with:
Expand Down
69 changes: 10 additions & 59 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,76 +35,27 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## [Unreleased](https://github.com/Finschia/finschia-sdk/compare/v0.46.0...HEAD)
## [Unreleased](https://github.com/Finschia/finschia-sdk/compare/v0.47.0...HEAD)

### Features
* (baseapp) [\#840](https://github.com/Finschia/finschia-sdk/pull/840) allow querying the state based on `CheckState`.
* (x/foundation) [\#848](https://github.com/Finschia/finschia-sdk/pull/848) remove `gov mint` for x/foundation proposal
* (x/wasm) [\#850](https://github.com/Finschia/finschia-sdk/pull/850) remove `x/wasm` module in lbm-sdk
* (log) [\#883](https://github.com/Finschia/finschia-sdk/pull/883) add zerolog based rolling log system
* (Ostracon) [\#887](https://github.com/Finschia/finschia-sdk/pull/887) apply the changes of vrf location in Ostracon
* (x/upgrade) [\#889](https://github.com/Finschia/finschia-sdk/pull/889) remove time based upgrade
* (all) [\#970](https://github.com/Finschia/finschia-sdk/pull/970) change import path to `github.com/Finschia/finschia-sdk` and update license
* (x/auth) [\#1011](https://github.com/Finschia/finschia-sdk/pull/1011) add the api for querying next account number
* (server/grpc) [\#1017](https://github.com/Finschia/finschia-sdk/pull/1017) support custom r/w gRPC options (backport cosmos/cosmos-sdk#11889)

### Improvements
* (cosmovisor) [\#792](https://github.com/Finschia/finschia-sdk/pull/792) Use upstream's cosmovisor
* (server) [\#821](https://github.com/Finschia/finschia-sdk/pull/821) Get validator pubkey considering KMS
* (client) [\#890](https://github.com/Finschia/finschia-sdk/pull/890) Map Ostracon:ErrTxInMap to lbm-sdk:ErrTxInMempoolCache
* (x/collection) [\#894](https://github.com/Finschia/finschia-sdk/pull/894) Change the default params of x/collection
* (ante) [\#895](https://github.com/Finschia/finschia-sdk/pull/895) Remove max gas validation
* (x/collection,token) [\#900](https://github.com/Finschia/finschia-sdk/pull/900) Add uri for MsgModify and deprecate the old ones
* (x/foundation) [\#912](https://github.com/Finschia/finschia-sdk/pull/912) Introduce censorship into x/foundation
* (x/foundation) [\#933](https://github.com/Finschia/finschia-sdk/pull/933) Clean up x/foundation apis
* (x/collection) [\#938](https://github.com/Finschia/finschia-sdk/pull/938) Add progress log into x/collection import-genesis
* (x/foundation) [\#952](https://github.com/Finschia/finschia-sdk/pull/952) Address generation of the empty coins in x/foundation
* (x/collection,token,foundation) [\#963](https://github.com/Finschia/finschia-sdk/pull/963) Check event determinism on original modules
* (x/collection) [\#965](https://github.com/Finschia/finschia-sdk/pull/965) Provide specific error messages on x/collection queries
* (x/collection,token) [\#980](https://github.com/Finschia/finschia-sdk/pull/980) refactor x/token,collection query errors
* (third_party/proto) [\#1037](https://github.com/Finschia/finschia-sdk/pull/1037) change the proof.proto path to third_party/proto/confio
* (ostracon) [\#1057](https://github.com/Finschia/finschia-sdk/pull/1057) Bump up Ostracon from to v1.1.1

### Bug Fixes
* (client) [\#817](https://github.com/Finschia/finschia-sdk/pull/817) remove support for composite (BLS) type
* (x/foundation) [\#834](https://github.com/Finschia/finschia-sdk/pull/834) Apply foundation audit
* (x/collection,token) [\#849](https://github.com/Finschia/finschia-sdk/pull/849) Introduce codespace into x/collection,token
* (x/token,collection) [\#863](https://github.com/Finschia/finschia-sdk/pull/863) Update x/collection,token proto
* (x/collection,token) [\#866](https://github.com/Finschia/finschia-sdk/pull/866) Do not create account on x/token,collection
* (x/collection,token) [\#881](https://github.com/Finschia/finschia-sdk/pull/881) Remove some x/token,collection queries on listable collections
* (swagger) [\#898](https://github.com/Finschia/finschia-sdk/pull/898) fix a bug not added `lbm.tx.v1beta1.Service/GetBlockWithTxs` in swagger
* (x/collection) [\#911](https://github.com/Finschia/finschia-sdk/pull/911) Add missing command(TxCmdModify) for CLI
* (x/foundation) [\#922](https://github.com/Finschia/finschia-sdk/pull/922) Propagate events in x/foundation through sdk.Results
* (x/foundation) [\#946](https://github.com/Finschia/finschia-sdk/pull/946) Fix broken x/foundation invariant on treasury
* (x/foundation) [\#947](https://github.com/Finschia/finschia-sdk/pull/947) Unpack proposals in x/foundation import-genesis
* (x/collection) [\#953](https://github.com/Finschia/finschia-sdk/pull/953) Allow zero amount of coin in x/collection Query/Balance
* (x/collection) [\#954](https://github.com/Finschia/finschia-sdk/pull/954) Remove duplicated events in x/collection Msg/Modify
* (x/collection) [\#955](https://github.com/Finschia/finschia-sdk/pull/955) Return nil where the parent not exists in x/collection Query/Parent
* (x/collection) [\#959](https://github.com/Finschia/finschia-sdk/pull/959) Revert #955 and add Query/HasParent into x/collection
* (x/collection) [\#960](https://github.com/Finschia/finschia-sdk/pull/960) Fix default next class ids of x/collection
* (x/collection) [\#961](https://github.com/Finschia/finschia-sdk/pull/961) Do not loop enum in x/collection
* (x/collection,token) [\#957](https://github.com/Finschia/finschia-sdk/pull/957) Refactor queries of x/collection and x/token
* (x/auth) [\#982](https://github.com/Finschia/finschia-sdk/pull/957) Fix not to emit error when no txs in block while querying `GetBlockWithTxs`
* (x/foundation) [\#984](https://github.com/Finschia/finschia-sdk/pull/984) Revert #952
* (ledger) [\#1040](https://github.com/Finschia/finschia-sdk/pull/1040) fix a bug(unable to connect nano S plus ledger on ubuntu)
* (x/foundation) [\#1053](https://github.com/Finschia/finschia-sdk/pull/1053) Make x/foundation MsgExec propagate events

### Removed
* [\#853](https://github.com/Finschia/finschia-sdk/pull/853) remove useless stub BeginBlock, EndBlock methods from modules below
* ibc, authz, collection, feegrant, ibc, token, wasm
* (x/ibc) [\#858](https://github.com/Finschia/finschia-sdk/pull/858) detach ibc module(repo: [line/ibc-go](https://github.com/Finschia/ibc-go))
* (x/collection,token) [\#966](https://github.com/Finschia/finschia-sdk/pull/966) Remove legacy events on x/collection and x/token

### Breaking Changes
* (rest) [\#807](https://github.com/Finschia/finschia-sdk/pull/807) remove legacy REST API
* (codec) [\#833](https://github.com/Finschia/finschia-sdk/pull/833) Fix foundation amino codec
* (ostracon) [\#869](https://github.com/Finschia/finschia-sdk/pull/869) apply changes to replace Ostracon proto message with Tendermint
* (x/bank) [\#876](https://github.com/Finschia/finschia-sdk/pull/876) Add `MultiSend` deactivation
* (x/auth) [\#891](https://github.com/Finschia/finschia-sdk/pull/891) deprecate `cosmos.tx.v1beta1.Service/GetBlockWithTxs` and add `lbm.tx.v1beta1.Service/GetBlockWithTxs` for lbm
* (abci) [\#892](https://github.com/Finschia/finschia-sdk/pull/892) remove the incompatible field `index=14` in `TxResponse`
* (proto) [\#923](https://github.com/Finschia/finschia-sdk/pull/923) deprecate broadcast mode `block`
* (x/collection,token) [\#956](https://github.com/Finschia/finschia-sdk/pull/956) Replace query errors on the original modules into gRPC ones
* (x/foundation) [\#999](https://github.com/Finschia/finschia-sdk/pull/999) migrate x/foundation FoundationTax into x/params

### Build, CI
* (ci) [\#829](https://github.com/Finschia/finschia-sdk/pull/829) automate release process
* (build) [\#872](https://github.com/Finschia/finschia-sdk/pull/872) Retract v1.0.0
* (ci, build) [\#901](https://github.com/Finschia/finschia-sdk/pull/901) Update release pipeline to match non-wasm env
* (ci) [\#983](https://github.com/Finschia/finschia-sdk/pull/983) update docker action to fit new repository
* (build,ci) [\#1043](https://github.com/Finschia/finschia-sdk/pull/1043) Update golang version to 1.20

### Document Updates
* (x/foundation) [\#934](https://github.com/Finschia/finschia-sdk/pull/934) Update permlinks in x/foundation documents
* (x/collection,token) [\#944](https://github.com/Finschia/finschia-sdk/pull/944) Update comments in the x/token,collection events proto
* (readme) [\#997](https://github.com/finschia/finschia-sdk/pull/997) fix swagger url
Loading