Skip to content

Commit

Permalink
Upgrade dependencies (#36)
Browse files Browse the repository at this point in the history
* Remove sarama-cluster dependency through kafkautil

It doesn't allow us to upgrade other libs

* Upgrade dependencies

Downgrade blackfriday to fix compiler issue with cobra/go-md2man

* Update changelog

* Fix default topic config filter in newer sarama lib

* fix small issue when consuming only a single message

Co-authored-by: dwi <[email protected]>
  • Loading branch information
sladkoff and d-rk authored Feb 19, 2020
1 parent 366620c commit fcdc35f
Show file tree
Hide file tree
Showing 7 changed files with 325 additions and 91 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Support for Kafka 2.4.0

## 1.5.0 - 2020-01-24

### Added
Expand Down
69 changes: 28 additions & 41 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,50 +1,37 @@
module github.com/deviceinsight/kafkactl

require (
github.com/DataDog/zstd v1.3.5
github.com/Shopify/sarama v1.21.0
github.com/avast/retry-go v2.4.3+incompatible // indirect
github.com/bsm/sarama-cluster v2.1.15+incompatible // indirect
github.com/burdiyan/kafkautil v0.0.0-20190131162249-eaf83ed22d5b
github.com/coreos/etcd v3.3.12+incompatible // indirect
github.com/cpuguy83/go-md2man v1.0.10 // indirect
github.com/davecgh/go-spew v1.1.1
github.com/eapache/go-resiliency v1.1.0
github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21
github.com/eapache/queue v1.1.0
github.com/fsnotify/fsnotify v1.4.7
github.com/golang/snappy v0.0.1
github.com/hashicorp/hcl v1.0.0
github.com/inconshreveable/mousetrap v1.0.0
github.com/DataDog/zstd v1.4.4 // indirect
github.com/Shopify/sarama v1.26.0
github.com/eapache/go-resiliency v1.2.0 // indirect
github.com/hashicorp/go-uuid v1.0.2 // indirect
github.com/jcmturner/gofork v1.0.0 // indirect
github.com/klauspost/compress v1.9.8 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/landoop/schema-registry v0.0.0-20190327143759-50a5701c1891
github.com/linkedin/goavro v0.0.0-20180427113916-2f3e1dff9761
github.com/lovoo/goka v0.1.3 // indirect
github.com/magiconair/properties v1.8.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.1.2
github.com/pelletier/go-toml v1.3.0
github.com/pierrec/lz4 v2.0.5+incompatible
github.com/pkg/errors v0.9.1 // indirect
github.com/pkg/profile v1.3.0 // indirect
github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a
github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da // indirect
github.com/spf13/afero v1.2.2
github.com/spf13/cast v1.3.0
github.com/spf13/cobra v0.0.0-20181127133106-d2d81d9a96e2
github.com/spf13/jwalterweatherman v1.1.0
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v1.3.2
github.com/stretchr/objx v0.1.1 // indirect
github.com/stretchr/testify v1.3.0 // indirect
github.com/syndtr/goleveldb v1.0.0 // indirect
github.com/ugorji/go/codec v0.0.0-20190320090025-2dc34c0b8780 // indirect
github.com/wvanbergen/kazoo-go v0.0.0-20180202103751-f72d8611297a // indirect
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/pierrec/lz4 v2.4.1+incompatible // indirect
github.com/rcrowley/go-metrics v0.0.0-20190826022208-cac0b30c2563 // indirect
github.com/russross/blackfriday v2.0.0+incompatible // indirect
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.5
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.2
go.uber.org/atomic v1.5.1 // indirect
go.uber.org/ratelimit v0.1.0
golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5 // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/text v0.3.0
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v2 v2.2.2
golang.org/x/crypto v0.0.0-20200128174031-69ecbb4d6d5d // indirect
golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa // indirect
golang.org/x/sys v0.0.0-20200124204421-9fbb57f87de9 // indirect
golang.org/x/text v0.3.2 // indirect
gopkg.in/ini.v1 v1.51.1 // indirect
gopkg.in/jcmturner/gokrb5.v7 v7.4.0 // indirect
gopkg.in/yaml.v2 v2.2.8
)

replace github.com/russross/blackfriday => github.com/russross/blackfriday v1.5.2

go 1.13
Loading

0 comments on commit fcdc35f

Please sign in to comment.