Releases: evalphobia/logrus_sentry
Releases · evalphobia/logrus_sentry
v0.8.2
Add option to add error breadcrumb in sentry log (#81)
v0.8.1
v0.8.0
Add error handler for Sentry error (#78)
v0.6.0
Support sirupsen/[email protected]
or above.
https://github.com/sirupsen/logrus/releases/tag/v1.2.0
v0.5.0
Add function name to NewStackTraceFrame call for updating to raven-go…
v0.4.6
When errors.Cause returns nil, use the original error value instead (…
v0.4.5
Fix grouping and use a useful culprit with new SwitchExceptionTypeAnd…
v0.4.4
Allow switching the exception type and message (#57)
v0.4.3
Allow server_name to be set globally (#56)
v0.4.2
Stacktrace the culprit should be the received error not the cause (#45) Previously, when stacktrace was enabled, the culprit would be set to the first error that did not implement Cause (as detected by errors.Cause(err)), this had the affect of not showing any additional context added to the error. This was also inconsistent with the same behaviour when stacktrace was disabled. This change attempts to unify that behaviour, as well as to not discard the context added to the errors.