Skip to content

Releases: TheAppleFreak/winston-slack-webhook-transport

v2.3.6

12 Nov 15:27
Compare
Choose a tag to compare
  • No changes have been made to the code in this release.
  • Updated dependencies so Dependabot would stop yelling at me.
  • Fixed link rot in README.md and slightly updated one of the code examples so it reads better.

v2.3.5

21 Mar 23:14
Compare
Choose a tag to compare
  • No changes have been made to the code in this release.
  • Updated dependencies.

v2.3.4

11 Jan 04:20
Compare
Choose a tag to compare
  • No changes have been made to the code in this release.
  • Updated dependencies, which closes Pull #32 in the process.
  • Updated copyright year in LICENSE.md

v2.3.3

11 Nov 20:15
Compare
Choose a tag to compare
  • No changes have been made to the code in this release.
  • Updated dependencies, which solves Pull #29 and Pull #30 while also closing Issue #31. Thanks @dvasilen!
  • Updated devcontainer.json to ensure the development environment is using the latest version of Node and NPM available.

v2.3.2

10 May 23:47
Compare
Choose a tag to compare
  • The SlackHookOptions type now extends TransportStreamOptions, properly this time. This change is courtesy of Pull #28. Thanks again @DominicRoyStang!

v2.3.1

10 May 23:12
7db9145
Compare
Choose a tag to compare
  • The SlackHookOptions type now extends TransportStreamOptions. This change is courtesy of Pull #26. Thanks @DominicRoyStang!

v2.3.0

05 Apr 22:25
f706828
Compare
Choose a tag to compare

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

03 Mar 21:33
Compare
Choose a tag to compare

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

06 Oct 10:49
Compare
Choose a tag to compare

Reverted axios dependency back to ^0.22.0 due to unforseen issues. This closes Issue #21.

v2.2.1

06 Oct 06:11
Compare
Choose a tag to compare

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.