Skip to content

Commit 2492a02

Browse files
authored
feat: bump cosmos-sdk to v0.47.1 (#86)
* update cosmos-sdk * update proto files and app pkg * run make format * fix lint issues * add chain id to the new simmapp app * add crisis keeper store key * fix proto files path and tests * fix wrong proto path * fix simulator flags * fix simulation tests * update github actions * update codeowners * add ProposalMsgs simulation method * remove duplicated method * add modules to export * fix import cycle * remove unused pkg * security bump denpendencies * fix typos and code review * add consensus subspace
1 parent f32cc59 commit 2492a02

Some content is hidden

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

75 files changed

+1764
-1455
lines changed

.github/CODEOWNERS

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# CODEOWNERS: https://help.github.com/articles/about-codeowners/
22

33
# Primary repo maintainers
4-
* @lubtd @aljo242 @Pantani
4+
* @ilgooz @jeronimoalbi @Pantani
5+
6+
# Docs
7+
*.md @ilgooz

.github/codecov.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
coverage:
2-
range: 70...100
3-
round: down
42
precision: 2
3+
round: down
4+
range: 70...100
55
status:
66
patch: off
77
changes: false
88
project:
99
default:
10-
threshold: 1% # allow this much decrease on project
10+
target: auto
11+
threshold: 10%
12+
informational: true
1113
modules:
1214
if_ci_failed: error
1315
target: 70%
@@ -24,6 +26,10 @@ comment:
2426
behavior: default
2527
require_changes: false
2628

29+
codecov:
30+
notify:
31+
wait_for_ci: false
32+
2733
flags:
2834
modules:
2935
carryforward: true

.github/workflows/simulation.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3.4.0
1616

1717
- uses: actions/cache@v2
1818
with:
@@ -23,7 +23,7 @@ jobs:
2323
restore-keys: |
2424
${{ runner.os }}-go-
2525
26-
- uses: actions/setup-go@v3
26+
- uses: actions/setup-go@v4
2727
with:
2828
go-version: 1.19
2929

.github/workflows/test-lint.yml

+5-6
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,19 @@ jobs:
1212
timeout-minutes: 6
1313
steps:
1414
- name: Set up Go
15-
uses: actions/setup-go@v3
15+
uses: actions/setup-go@v4
1616
with:
1717
go-version: 1.19
18-
- uses: actions/checkout@v2
19-
- uses: technote-space/get-diff-action@v4
18+
- uses: actions/checkout@v3.4.0
19+
- uses: technote-space/get-diff-action@v6.1.2
2020
with:
2121
PATTERNS: |
2222
**/**.go
2323
go.mod
2424
go.sum
25-
- uses: golangci/golangci-lint-action@master
25+
- uses: golangci/golangci-lint-action@v3
2626
with:
27-
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
28-
version: v1.49.0
27+
version: v1.52.1
2928
args: --issues-exit-code=0 -e SA1019 --timeout 10m
3029
github-token: ${{ secrets.github_token }}
3130
if: env.GIT_DIFF

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3.4.0
1616

1717
- uses: actions/cache@v2
1818
with:
@@ -23,7 +23,7 @@ jobs:
2323
restore-keys: |
2424
${{ runner.os }}-go-
2525
26-
- uses: actions/setup-go@v3
26+
- uses: actions/setup-go@v4
2727
with:
2828
go-version: 1.19
2929

0 commit comments

Comments
 (0)