winston-telegram
Advanced tools
Comparing version 2.2.0 to 2.2.1
@@ -10,2 +10,5 @@ # Changelog | ||
## [v2.2.1] - 2019-12-11 | ||
- [#16](https://github.com/ivanmarban/winston-telegram/issues/16) Use `Buffer.byteLength` to compute the `Content-Length` header. | ||
## [v2.2.0] - 2019-08-06 | ||
@@ -70,3 +73,4 @@ - [#13](https://github.com/ivanmarban/winston-telegram/pull/13) Add typescript typings. ([@Multivit4min](https://github.com/Multivit4min)) | ||
[unreleased]: https://github.com/ivanmarban/winston-telegram/compare/v2.2.0...develop | ||
[unreleased]: https://github.com/ivanmarban/winston-telegram/compare/v2.2.1...develop | ||
[v2.2.1]: https://github.com/ivanmarban/winston-telegram/compare/v2.2.0...v2.2.1 | ||
[v2.2.0]: https://github.com/ivanmarban/winston-telegram/compare/v2.1.0...v2.2.0 | ||
@@ -73,0 +77,0 @@ [v2.1.0]: https://github.com/ivanmarban/winston-telegram/compare/v2.0.1...v2.1.0 |
@@ -121,3 +121,3 @@ /* | ||
'Content-Type': 'application/json; charset=utf-8', | ||
'Content-Length': requestData.length | ||
'Content-Length': Buffer.byteLength(requestData) | ||
} | ||
@@ -124,0 +124,0 @@ } |
{ | ||
"name": "winston-telegram", | ||
"description": "A Telegram transport for winston", | ||
"version": "2.2.0", | ||
"version": "2.2.1", | ||
"author": "Ivan Marban", | ||
@@ -36,16 +36,16 @@ "repository": { | ||
"chai": "^4.2.0", | ||
"coveralls": "^3.0.5", | ||
"eslint": "^6.1.0", | ||
"eslint-config-standard": "^13.0.1", | ||
"eslint-plugin-import": "^2.18.2", | ||
"eslint-plugin-jsdoc": "^15.8.0", | ||
"eslint-plugin-mocha": "^6.0.0", | ||
"eslint-plugin-node": "^9.1.0", | ||
"coveralls": "^3.0.9", | ||
"eslint": "^6.7.2", | ||
"eslint-config-standard": "^14.1.0", | ||
"eslint-plugin-import": "^2.19.1", | ||
"eslint-plugin-jsdoc": "^18.4.3", | ||
"eslint-plugin-mocha": "^6.2.2", | ||
"eslint-plugin-node": "^10.0.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"eslint-plugin-standard": "^4.0.0", | ||
"mocha": "^6.2.0", | ||
"nock": "^10.0.6", | ||
"eslint-plugin-standard": "^4.0.1", | ||
"mocha": "^6.2.2", | ||
"nock": "^11.7.0", | ||
"nyc": "^14.1.1", | ||
"prettier-standard": "^9.1.1", | ||
"sinon": "^7.4.1", | ||
"prettier-standard": "^16.1.0", | ||
"sinon": "^7.5.0", | ||
"winston": "^3.0.0" | ||
@@ -52,0 +52,0 @@ }, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32939