Skip to content

v0.11.0

Compare
Choose a tag to compare
@peterbourgon peterbourgon released this 04 Jul 17:31
· 48 commits to master since this release
a6c5d58

A new release with several improvements and enhancements. The first one in a long while! Huge thanks to @sagikazarmark for putting in most of the gruntwork to make it happen! You're a superstar.

The biggest thing: package log has been extracted to a separate repository and module, go-kit/log. This means that if you or your project was importing go-kit/kit just to get package log, you can significantly reduce your go.mod and dep graph by switching to the new module. Note that we have no current plans to alias the existing go-kit/kit/log to the new go-kit/log module and package, nor to deprecate the current package in favor of the new one. They are two distinct packages with no defined relationship to each other. This may change in the future.

Major changes:

Thanks to the 22 contributors who contributed to this release! 🏌️‍♂️

Bug fixes

  • metrics/cloudwatch: log CloudWatch response error (#961) (thanks @trane9991)
  • log: defer mutex unlocks for panic safety in SyncLogger (#974)
  • util/conn: close old connection before reconnect (#982) (thanks @chikaku)
  • log/term: fix build on GOOS=js GOARCH=wasm (#993) (thanks @mvdan)
  • transport/http/jsonrpc: move the ClientAfter calls to before the decode (#1008) (thanks @directionless)
  • sd/etcdv3: fix etcdv3 client won't return error when no endpoint is available (#1009) (thanks @wayjam)
  • metrics/generic: fix uint64 alignment (#1007) (thanks @ldez)
  • log: fix stdlibadapter when prefixed (#1036) (thanks @soven)
  • log: capture newlines in log stdlib (#1041) (thanks @SuperQ)

Enhancements

Documentation, examples, tests

See more details in the 0.11.0 milestone.