Skip to content

Commit 8a97a36

Browse files
committedJan 24, 2021
Merge branch 'release/v2.3.3'
2 parents 2bcebc8 + e145919 commit 8a97a36

File tree

4 files changed

+116
-41
lines changed

4 files changed

+116
-41
lines changed
 

‎CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [v2.3.3] - 2021-01-24
11+
### Fixed
12+
- [#24](https://github.com/ivanmarban/winston-telegram/pull/24) Change parseMode prop as optional.
13+
1014
## [v2.3.2] - 2020-11-08
1115
### Fixed
1216
- Tests fixed.
@@ -120,7 +124,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
120124
## [v0.1.0] - 2015-11-12
121125
- First version.
122126

123-
[unreleased]: https://github.com/ivanmarban/winston-telegram/compare/v2.3.2...develop
127+
[unreleased]: https://github.com/ivanmarban/winston-telegram/compare/v2.3.3...develop
128+
[v2.3.3]: https://github.com/ivanmarban/winston-telegram/compare/v2.3.2...v2.3.3
124129
[v2.3.2]: https://github.com/ivanmarban/winston-telegram/compare/v2.3.1...v2.3.2
125130
[v2.3.1]: https://github.com/ivanmarban/winston-telegram/compare/v2.3.0...v2.3.1
126131
[v2.3.0]: https://github.com/ivanmarban/winston-telegram/compare/v2.2.2...v2.3.0

‎lib/winston-telegram.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ declare namespace WinstonTelegram {
1111
/** The Telegram chatid you want to send to. */
1212
chatId: number
1313
/** The Telegram mode for parsing entities in the message text. */
14-
parseMode: string
14+
parseMode?: string
1515
/** Level of messages that this transport should log. (default "info") */
1616
level?: string
1717
/** Whether to log only the declared level and none above. (default false) */

‎package-lock.json

+106-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "winston-telegram",
33
"description": "A Telegram transport for winston",
4-
"version": "2.3.2",
4+
"version": "2.3.3",
55
"author": "Ivan Marban",
66
"repository": {
77
"type": "git",
@@ -37,11 +37,11 @@
3737
"eslint": "^7.13.0",
3838
"eslint-config-standard": "^16.0.1",
3939
"eslint-plugin-import": "^2.22.1",
40-
"eslint-plugin-jsdoc": "^30.7.7",
40+
"eslint-plugin-jsdoc": "^31.2.2",
4141
"eslint-plugin-mocha": "^8.0.0",
4242
"eslint-plugin-node": "^11.1.0",
4343
"eslint-plugin-promise": "^4.2.1",
44-
"eslint-plugin-standard": "^4.0.2",
44+
"eslint-plugin-standard": "^5.0.0",
4545
"mocha": "^8.2.1",
4646
"nock": "^13.0.4",
4747
"nyc": "^15.1.0",

0 commit comments

Comments
 (0)
Please sign in to comment.