Skip to content

Commit

Permalink
build(deps): Bump github.com/go-kit/kit from 0.10.0 to 0.12.0 (#7213)
Browse files Browse the repository at this point in the history
* build(deps): Bump github.com/go-kit/kit from 0.10.0 to 0.12.0

Bumps [github.com/go-kit/kit](https://github.com/go-kit/kit) from 0.10.0 to 0.12.0.
- [Release notes](https://github.com/go-kit/kit/releases)
- [Commits](go-kit/kit@v0.10.0...v0.12.0)

---
updated-dependencies:
- dependency-name: github.com/go-kit/kit
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* add nolint

* fix lint

* fix build

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: tycho garen <garen@tychoish.com>
  • Loading branch information
dependabot[bot] and tychoish authored Nov 8, 2021
1 parent d35b50b commit d0031b0
Show file tree
Hide file tree
Showing 12 changed files with 133 additions and 133 deletions.
2 changes: 1 addition & 1 deletion consensus/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/go-kit/kit/log/term"
"github.com/go-kit/log/term"
"github.com/stretchr/testify/require"

"path"
Expand Down
2 changes: 1 addition & 1 deletion evidence/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/fortytw2/leaktest"
"github.com/go-kit/kit/log/term"
"github.com/go-kit/log/term"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"github.com/stretchr/testify/require"
Expand Down
5 changes: 3 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ require (
github.com/btcsuite/btcd v0.22.0-beta
github.com/btcsuite/btcutil v1.0.3-0.20201208143702-a53e38424cce
github.com/fortytw2/leaktest v1.3.0
github.com/go-kit/kit v0.10.0
github.com/go-kit/kit v0.12.0
github.com/go-kit/log v0.2.0
github.com/go-logfmt/logfmt v0.5.1
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.5.2
Expand All @@ -31,7 +32,7 @@ require (
github.com/spf13/viper v1.9.0
github.com/stretchr/testify v1.7.0
github.com/tendermint/tm-db v0.6.4
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
golang.org/x/crypto v0.0.0-20210915214749-c084706c2272
golang.org/x/net v0.0.0-20211005001312-d4b1ae081e3b
google.golang.org/grpc v1.42.0
)
235 changes: 117 additions & 118 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion libs/log/logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package log
import (
"io"

kitlog "github.com/go-kit/kit/log"
kitlog "github.com/go-kit/log"
)

// Logger is what any Tendermint library should take.
Expand Down
2 changes: 1 addition & 1 deletion libs/log/testing_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"os"
"testing"

"github.com/go-kit/kit/log/term"
"github.com/go-kit/log/term"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion libs/log/tm_json_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package log
import (
"io"

kitlog "github.com/go-kit/kit/log"
kitlog "github.com/go-kit/log"
)

// NewTMJSONLogger returns a Logger that encodes keyvals to the Writer as a
Expand Down
6 changes: 3 additions & 3 deletions libs/log/tm_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"
"io"

kitlog "github.com/go-kit/kit/log"
kitlevel "github.com/go-kit/kit/log/level"
"github.com/go-kit/kit/log/term"
kitlog "github.com/go-kit/log"
kitlevel "github.com/go-kit/log/level"
"github.com/go-kit/log/term"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions libs/log/tmfmt_logger.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"sync"
"time"

kitlog "github.com/go-kit/kit/log"
kitlevel "github.com/go-kit/kit/log/level"
kitlog "github.com/go-kit/log"
kitlevel "github.com/go-kit/log/level"
"github.com/go-logfmt/logfmt"
)

Expand Down
2 changes: 1 addition & 1 deletion libs/log/tmfmt_logger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"regexp"
"testing"

kitlog "github.com/go-kit/kit/log"
kitlog "github.com/go-kit/log"
"github.com/stretchr/testify/assert"

"github.com/tendermint/tendermint/libs/log"
Expand Down
2 changes: 1 addition & 1 deletion mempool/reactor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/fortytw2/leaktest"
"github.com/go-kit/kit/log/term"
"github.com/go-kit/log/term"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

Expand Down
2 changes: 1 addition & 1 deletion rpc/jsonrpc/jsonrpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"testing"
"time"

"github.com/go-kit/kit/log/term"
"github.com/go-kit/log/term"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"

Expand Down

0 comments on commit d0031b0

Please sign in to comment.