diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b92b950..d2a7014a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,26 @@ ## [Unreleased](https://github.com/lovoo/goka/tree/HEAD) -[Full Changelog](https://github.com/lovoo/goka/compare/v0.9.0-beta2...HEAD) +[Full Changelog](https://github.com/lovoo/goka/compare/v0.9.0-beta3...HEAD) + +**Implemented enhancements:** + +- Migration guide [\#249](https://github.com/lovoo/goka/issues/249) +- View: expose view and connection state [\#248](https://github.com/lovoo/goka/issues/248) +- PartitionTable backoff on errors [\#247](https://github.com/lovoo/goka/issues/247) + +**Closed issues:** + +- Examples `simplest` and `clicks` panic with "non-positive interval for NewTicker" [\#258](https://github.com/lovoo/goka/issues/258) +- panic: non-positive interval for NewTicker [\#255](https://github.com/lovoo/goka/issues/255) + +**Merged pull requests:** + +- fixed broken goka blogpost link [\#257](https://github.com/lovoo/goka/pull/257) ([frairon](https://github.com/frairon)) + +## [v0.9.0-beta3](https://github.com/lovoo/goka/tree/v0.9.0-beta3) (2020-04-09) + +[Full Changelog](https://github.com/lovoo/goka/compare/v0.9.0-beta2...v0.9.0-beta3) **Implemented enhancements:** @@ -13,6 +32,14 @@ - cannot run multiple consumers in the same group [\#204](https://github.com/lovoo/goka/issues/204) +**Merged pull requests:** + +- stats-tracking improved [\#245](https://github.com/lovoo/goka/pull/245) ([frairon](https://github.com/frairon)) +- return trackOutput if stats are nil [\#244](https://github.com/lovoo/goka/pull/244) ([R053NR07](https://github.com/R053NR07)) +- added lots of godoc, fixed many linter errors, added Open call when c… [\#243](https://github.com/lovoo/goka/pull/243) ([frairon](https://github.com/frairon)) +- Open Storage in PartitionTable when performing Setup [\#242](https://github.com/lovoo/goka/pull/242) ([frairon](https://github.com/frairon)) +- updated readme for configuration, added changelog [\#240](https://github.com/lovoo/goka/pull/240) ([frairon](https://github.com/frairon)) + ## [v0.9.0-beta2](https://github.com/lovoo/goka/tree/v0.9.0-beta2) (2020-03-20) [Full Changelog](https://github.com/lovoo/goka/compare/v0.9.0-beta1...v0.9.0-beta2) diff --git a/examples/1-simplest/main.go b/examples/1-simplest/main.go index 4d565bb4..211fa52e 100644 --- a/examples/1-simplest/main.go +++ b/examples/1-simplest/main.go @@ -7,7 +7,6 @@ import ( "os/signal" "syscall" - "github.com/Shopify/sarama" "github.com/lovoo/goka" "github.com/lovoo/goka/codec" ) @@ -99,7 +98,6 @@ func runProcessor() { func main() { config := goka.DefaultConfig() - config.Consumer.Offsets.Initial = sarama.OffsetOldest goka.ReplaceGlobalConfig(config) tm, err := goka.NewTopicManager(brokers, goka.DefaultConfig(), tmc)