Releases: TheAppleFreak/winston-slack-webhook-transport
v2.3.6
v2.3.5
- No changes have been made to the code in this release.
- Updated dependencies.
v2.3.4
v2.3.3
v2.3.2
- The
SlackHookOptions
type now extendsTransportStreamOptions
, properly this time. This change is courtesy of Pull #28. Thanks again @DominicRoyStang!
v2.3.1
- The
SlackHookOptions
type now extendsTransportStreamOptions
. This change is courtesy of Pull #26. Thanks @DominicRoyStang!
v2.3.0
Added an option (emitAxiosErrors
) to enable or disable emitting errors if Axios throws an error. Previously, if Axios returned an error for any reason, this would emit an error, which if unhandled would be treated as an unhandled exception. This includes potentially transient issues, such as if Slack would return an error for any reason, including API outages or 429 Too Many Requests
errors. This option requires the user to explicitly opt into this behavior, and is false
by default. This closes #24. Thanks @jbojbo for bringing this to my attention!
This also updates dependencies to the latest version. Unlike v2.2.0 and v2.2.1, I've double checked that this actually works correctly this time.
v2.2.3
Fixed a bug preventing the ability to filter log messages in the formatter. This change is courtesy of #23, which closes #15 in the process. Thanks @ArturAralin and @jbojbo!
v2.2.2
v2.2.1
This release properly reintroduces the channel
, username
, iconEmoji
, and iconUrl
functionality as it existed in v1, while keeping the functionality added in v2.2.0 to more dynamically change those properties in a formatter function.