Skip to content

Commit

Permalink
Merge branch 'main' into nullpointer0x00/1660-add-genesis-export-init…
Browse files Browse the repository at this point in the history
…-marker-deny-send
  • Loading branch information
nullpointer0x00 committed Aug 30, 2023
2 parents 58c6799 + 7664651 commit 7e56f31
Show file tree
Hide file tree
Showing 40 changed files with 4,595 additions and 31 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: provenance breaking
id: breaking-prov
if: always()
uses: bufbuild/[email protected].2
uses: bufbuild/[email protected].3
with:
input: 'proto'
against: 'https://github.com/provenance-io/provenance.git#branch=${{ steps.setup.outputs.base-branch }},subdir=proto'
Expand All @@ -60,7 +60,7 @@ jobs:
- name: third-party breaking
id: breaking-third
if: always()
uses: bufbuild/[email protected].2
uses: bufbuild/[email protected].3
with:
input: 'third_party/proto'
against: 'https://github.com/provenance-io/provenance.git#branch=${{ steps.setup.outputs.base-branch }},subdir=third_party/proto'
Expand Down
66 changes: 66 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,29 +6,42 @@ run:
linters:
disable-all: true
enable:
- asciicheck
- bidichk
- bodyclose
- depguard
- dogsled
- durationcheck
- errcheck
- errorlint
- errname
- exportloopref
# - forcetypeassert
- gci
- goconst
- gocritic
- gofmt
- goimports
- goheader
- gomodguard
- goprintffuncname
- gosec
- gosimple
- govet
- importas
- ineffassign
- makezero
- misspell
- nakedret
- nolintlint
- prealloc
- predeclared
- promlinter
- revive
- staticcheck
- stylecheck
- tenv
- tparallel
- typecheck
- unconvert
- unparam
Expand Down Expand Up @@ -59,6 +72,59 @@ issues:
max-same-issues: 10000

linters-settings:
depguard:
rules:
main:
files:
- $all
- "!$test"
allow:
- $gostd

- github.com/armon/go-metrics

- cosmossdk.io/math
- cosmossdk.io/errors
- github.com/cosmos/go-bip39
- github.com/cosmos/cosmos-sdk
- github.com/cosmos/ibc-go/v6

- github.com/CosmWasm/wasmd
- github.com/CosmWasm/wasmvm/types

- github.com/gogo/protobuf

- github.com/google/uuid

- github.com/gorilla/mux

- github.com/grpc-ecosystem/grpc-gateway

- github.com/otiai10/copy # Used by the dbmigrate only

- github.com/provenance-io/provenance

- github.com/rakyll/statik/fs

- github.com/spf13/cast
- github.com/spf13/cobra
- github.com/spf13/pflag
- github.com/spf13/viper

- github.com/stretchr/testify/require # used by the test-utils shared toolkit
- github.com/stretchr/testify/suite

- github.com/tendermint/tendermint
- github.com/tendermint/tm-db

- github.com/rs/zerolog
test:
files:
- "$test"
allow:
- $gostd
- github.com/stretchr/testify

gci:
custom-order: true
sections:
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Ref: https://keepachangelog.com/en/1.0.0/

### Improvements

* Add IBC-Hooks module for Axelar GMP support [PR 1659](https://github.com/provenance-io/provenance/pull/1659)
* Update ibcnet ports so they don't conflict with host machine. [#1622](https://github.com/provenance-io/provenance/issues/1622)
* Replace custom ibc-go v6.1.1 fork with official module. [#1616](https://github.com/provenance-io/provenance/issues/1616)
* Migrate `msgfees` gov proposals to v1. [#1328](https://github.com/provenance-io/provenance/issues/1328)
Expand Down
Loading

0 comments on commit 7e56f31

Please sign in to comment.