Skip to content

Commit

Permalink
V2.10.0 rc1 (#861)
Browse files Browse the repository at this point in the history
* update to 0.45.16

* update module

* update third_party proto

* update gov module

* update gov module

* update to cosmos-sdk v0.46.13

* del test case

* update genesis validate

* legacy proposal

* remove legacy handler

* fix legacy gov module

* fix gov tally

* fix test case

* fix gov v1alpha1

* fix gov test

* upgrade workflows go version to 1.19

* fix test

* fix test unit cover

* change sdk.Int to math.Int

* fix audit: export for zero height

* upgrade workflows go version

* fix simulation

* fix e2e test

* remove binary

* fix sdkerrors

* add gov migrate

* update upgrade handler

* add auth migration

* Auditing fix (#855)

* return err when purchase does not exist

* Remove the redundant negative check.

* fix msgUpdateSponsor validationBasic

* add test case

* update ibc from v5 to v6

* fix test unit cover

* add gov event

* return err when purchase does not exist

* fix lint error

* fix lint error

* fix lint error

* fix gofmt

* add group module (#859)

* V2.10.0 rc3 (#860)

* refactor gov

* fix audit: renew shield calculation

* fix audit: GetPoolsBySponsor should use sponsor (#862)

* Add Certifier And ShieldClaim Proposal Check

* add keeper in NewLegacyMsgServerImpl
  • Loading branch information
skyargos authored Jun 3, 2024
1 parent 3a7e28a commit 8935bb4
Show file tree
Hide file tree
Showing 313 changed files with 13,516 additions and 6,948 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: '^1.18'
go-version: '^1.19'
env:
GOOS: ${{ matrix.targetos }}
GOARCH: ${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: '1.18.10'
go-version: '1.19.10'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sim-label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- name: Install runsim
run: go install github.com/cosmos/tools/cmd/[email protected]
- uses: actions/cache@v3
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.16
go-version: 1.19
- uses: actions/cache@v3
with:
path: ~/go/bin
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- name: Install runsim
run: go install github.com/cosmos/tools/cmd/[email protected]
- uses: actions/cache@v3
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
Expand All @@ -56,7 +56,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
Expand All @@ -80,7 +80,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
Expand All @@ -105,7 +105,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/statesync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: '^1.18'
go-version: '^1.19'

- name: state sync
run: bash devtools/statesync.sh
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: actions/checkout@v3
- uses: technote-space/[email protected]
with:
Expand All @@ -81,7 +81,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/[email protected]
with:
go-version: 1.18
go-version: 1.19
- uses: technote-space/[email protected]
with:
PATTERNS: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG IMG_TAG=latest

# Compile the shentud binary
FROM golang:1.18-alpine AS shentud-builder
FROM golang:1.19-alpine AS shentud-builder
WORKDIR /src/app/
COPY go.mod go.sum* ./
RUN go mod download
Expand Down
Loading

0 comments on commit 8935bb4

Please sign in to comment.