Skip to content

Releases: smallstep/logging

v0.5.2

05 Mar 21:35
v0.5.2
0b7093e

Choose a tag to compare

What's Changed

  • Bump google.golang.org/grpc from 1.60.1 to 1.61.0 by @dependabot in #49
  • Bump google.golang.org/grpc from 1.61.0 to 1.61.1 by @dependabot in #50
  • Bump google.golang.org/grpc from 1.61.1 to 1.62.0 by @dependabot in #52
  • Bump go.uber.org/zap from 1.26.0 to 1.27.0 by @dependabot in #51
  • Log propagated request ID and allow interoperability with legacy tracing by @hslatman in #53

Full Changelog: v0.5.1...v0.5.2

v0.5.1

08 Jan 10:43
v0.5.1
f57b71c

Choose a tag to compare

What's Changed

  • [action] use two most recent versions of golang in ci by @dopey in #30
  • Bump google.golang.org/grpc from 1.55.0 to 1.56.0 by @dependabot in #31
  • Bump google.golang.org/protobuf from 1.30.0 to 1.31.0 by @dependabot in #32
  • Bump google.golang.org/grpc from 1.56.0 to 1.56.1 by @dependabot in #33
  • Bump google.golang.org/grpc from 1.56.1 to 1.56.2 by @dependabot in #34
  • Bump google.golang.org/grpc from 1.56.2 to 1.57.0 by @dependabot in #35
  • Bump go.uber.org/zap from 1.24.0 to 1.25.0 by @dependabot in #36
  • Bump google.golang.org/grpc from 1.57.0 to 1.58.0 by @dependabot in #37
  • Bump google.golang.org/grpc from 1.58.0 to 1.58.1 by @dependabot in #38
  • Bump go.uber.org/zap from 1.25.0 to 1.26.0 by @dependabot in #39
  • golangci-lint: fixed violations by @azazeal in #40
  • Bump google.golang.org/grpc from 1.58.1 to 1.58.2 by @dependabot in #41
  • Bump golang.org/x/net from 0.12.0 to 0.17.0 by @dependabot in #42
  • Bump google.golang.org/grpc from 1.58.2 to 1.58.3 by @dependabot in #43
  • Bump google.golang.org/grpc from 1.58.3 to 1.59.0 by @dependabot in #44
  • Bump google.golang.org/grpc from 1.59.0 to 1.60.0 by @dependabot in #45
  • Bump google.golang.org/grpc from 1.60.0 to 1.60.1 by @dependabot in #46
  • Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 by @dependabot in #47
  • Add k8s, kubernetes and docker as accepted log formats by @hslatman in #48

New Contributors

Full Changelog: v0.5.0...v0.5.1

v0.5.0

14 Jun 08:53
v0.5.0
1669a97

Choose a tag to compare

What's Changed

  • [action] remove gitleaks by @dopey in #28
  • Consider $LOG_FORMAT & $LOG_LEVEL when initializing loggers by @azazeal in #29

New Contributors

Full Changelog: v0.4.0...v0.5.0

v0.4.0

09 May 01:35
a3bc7ba

Choose a tag to compare

Merge pull request #27 from smallstep/context

Add context functions

v0.3.0

23 Feb 01:57
ca8d7d2

Choose a tag to compare

Merge pull request #6 from smallstep/context-name

Allow to pass the logger name through the context

v0.2.1

25 Mar 00:58

Choose a tag to compare

Upgrade go.uber.org/zap

v0.2.0

18 Mar 18:35
a8d8249

Choose a tag to compare

This release allows creating a *log.Logger backed by github.com/smallstep/logging. This allows for example configuring the http.Server error log like:

srv := &http.Server{
	Addr:     ":8080",
	Handler:  httplog.Middleware(logger, http.DefaultServeMux),
	ErrorLog: logger.StdLogger(logging.ErrorLevel),
}