Skip to content

Releases: go-playground/log

Release 8.0.0 RC4

31 May 16:21
b53ceba
Compare
Choose a tag to compare
v8.0.0-rc4

cleanup + refactor (#42)

Release v8.0.0 RC3

31 May 04:45
5b600a0
Compare
Choose a tag to compare
v8.0.0-rc3

update errors dep (#41)

Release 8.0.0-rc2

31 May 02:36
007dd79
Compare
Choose a tag to compare
v8.0.0-rc2

register default only when terminal (#40)

Release v8.0.0 RC1

31 May 02:22
50e31b8
Compare
Choose a tag to compare
v8.0.0-rc1

V8 RC1 (#39)

Release 8.0.0 RC 2 Go Style?

31 May 02:45
007dd79
Compare
Choose a tag to compare
v8.0.0-rc.2

register default only when terminal (#40)

Release 7.0.2

11 Nov 18:44
c55d790
Compare
Choose a tag to compare

What was fixed?

  • Fixed Go Modules versioning + imports
  • Updated deps to their Go Modules counterparts

Release v7.0.1

21 May 04:34
fc0587c
Compare
Choose a tag to compare

What was fixed?

Corrected terminal detection not compatible with windows.

Release v7.0.0

12 May 18:33
d70d76e
Compare
Choose a tag to compare

What's new?

NOTE: breaking change as now relying on go-playground/pkg/runtime for stack information previously within go-playground/errors and updated to the latest version of the errors package.

  • Added default logger. If you register your own logger, of any kind,
    the default logger is removed and so is backward compatible. It is only registered when attached to a terminal.
  • Added Close methods to handlers to allow resource cleanup & automatic
    removal of the logger now that RemoveHandler and AddHandler can be made
    on the fly.
  • Updated to use go-playground/pkg/runtime.StackLevel(...) previously found int go-playground/errors

Release 6.4.0

11 Mar 05:50
fdcdf50
Compare
Choose a tag to compare

What's new?

  • Added the ability to add an remove Handlers and Handler Levels at runtime with the following functions:
    • RemoveHandler(Handler)
    • RemoveHandlerLevels(Handler, level)
  • Tuned performance of the error parsing a bit
  • Updated to use the newest go-playground/errors
  • Fixed some syslog tests
  • Updated to using Go Modules

Release 6.3.0

28 Jun 18:59
736ecb5
Compare
Choose a tag to compare

What was added?

The ability to enable/disable the email handler; see PR #26 for details; thanks @Chiiruno for the PR