Skip to content

Commit 65d98c7

Browse files
chore(release): 4.0.0-beta.5 [skip ci]
# [4.0.0-beta.5](v4.0.0-beta.4...v4.0.0-beta.5) (2021-12-10) ### Bug Fixes * add generic support to LogMessage class for specifying the message type ([6e6775a](6e6775a)) * add generic to LogObject type to specify type of Message ([cd1c746](cd1c746)) * explicitly set type to `string[]` for compiled tags returned from LogMessage ([fd873e3](fd873e3)) * remove generic from Message type ([cc10311](cc10311)) * remove toJSON() method from LogMessage since it's been moved to a formatter ([36fbdaa](36fbdaa)) * rename the `log` method to `_log` ([7317bf5](7317bf5)) * still generate the log message just don't log it when verbosity is set ([6e13564](6e13564)) * ts generics and typings on shortcut methods ([7e48904](7e48904)) ### Features * add `log` shortcut method as an alias for `info` to match the `console` pattern ([a3c1f16](a3c1f16)) * separate built-in formatters into separate files ([f8ecac7](f8ecac7))
1 parent 1e5076c commit 65d98c7

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
# [4.0.0-beta.5](https://github.com/KyleRoss/node-lambda-log/compare/v4.0.0-beta.4...v4.0.0-beta.5) (2021-12-10)
2+
3+
4+
### Bug Fixes
5+
6+
* add generic support to LogMessage class for specifying the message type ([6e6775a](https://github.com/KyleRoss/node-lambda-log/commit/6e6775a44bf881d3d7d64d9ce2f40ff2bce858da))
7+
* add generic to LogObject type to specify type of Message ([cd1c746](https://github.com/KyleRoss/node-lambda-log/commit/cd1c74697a99840a48f29d49509ad3409e145de5))
8+
* explicitly set type to `string[]` for compiled tags returned from LogMessage ([fd873e3](https://github.com/KyleRoss/node-lambda-log/commit/fd873e3a2da24f3b90985708771adeb2901ce39c))
9+
* remove generic from Message type ([cc10311](https://github.com/KyleRoss/node-lambda-log/commit/cc10311b3e0580e840792e452d11dcc43e911544))
10+
* remove toJSON() method from LogMessage since it's been moved to a formatter ([36fbdaa](https://github.com/KyleRoss/node-lambda-log/commit/36fbdaa738fb1fa0daf046dc71eb84adc18ae55c))
11+
* rename the `log` method to `_log` ([7317bf5](https://github.com/KyleRoss/node-lambda-log/commit/7317bf52418af6fed65db8066b94d8c2dbe21023))
12+
* still generate the log message just don't log it when verbosity is set ([6e13564](https://github.com/KyleRoss/node-lambda-log/commit/6e13564da87fe5b189a2b9262d8e3613a3f138e5))
13+
* ts generics and typings on shortcut methods ([7e48904](https://github.com/KyleRoss/node-lambda-log/commit/7e48904076802adf571385f73ac83294c0d4f875))
14+
15+
16+
### Features
17+
18+
* add `log` shortcut method as an alias for `info` to match the `console` pattern ([a3c1f16](https://github.com/KyleRoss/node-lambda-log/commit/a3c1f163976de3f68c49e05f3a84ab7c1791c0e5))
19+
* separate built-in formatters into separate files ([f8ecac7](https://github.com/KyleRoss/node-lambda-log/commit/f8ecac7ed12b25495c634a904f489857a7413f80))
20+
121
# [4.0.0-beta.4](https://github.com/KyleRoss/node-lambda-log/compare/v4.0.0-beta.3...v4.0.0-beta.4) (2021-11-25)
222

323

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambda-log",
3-
"version": "4.0.0-beta.4",
3+
"version": "4.0.0-beta.5",
44
"description": "Lightweight logging library for any Node 12+ applications",
55
"main": "./index.js",
66
"module": "./dist/esm/lambda-log.js",

0 commit comments

Comments
 (0)