File tree 3 files changed +12
-6
lines changed
3 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
- ## 1.7.3 (2020-06/04)
3
+ ## 1.7.4 (2020/10/12)
4
+ * Fix crash when an Error is raised with no stack (#GH202)
5
+ * Add --version and ` lambdaLocal.version ` support
6
+ * Improve logging of the --watch option
7
+ * Bump dependencies & minor build improvements
8
+
9
+ ## 1.7.3 (2020/06/04)
4
10
* Bump dependencies. No API changes
5
11
6
- ## 1.7.2 (2020- 04/13)
12
+ ## 1.7.2 (2020/ 04/13)
7
13
* Add --watch parameter
8
14
* Bump dependencies
9
15
10
- ## 1.7.1 (2020- 01/28)
16
+ ## 1.7.1 (2020/ 01/28)
11
17
* Add support for ` _HANDLER `
12
18
* Update environment variables computation & consistency with context
13
19
14
- ## 1.7.0 (2020- 01/17)
20
+ ## 1.7.0 (2020/ 01/17)
15
21
* Migrate to TypeScript (#191 )
16
22
17
23
## 1.6.3 (2019/07/04)
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " lambda-local" ,
3
- "version" : " 1.7.3 " ,
3
+ "version" : " 1.7.4 " ,
4
4
"description" : " Commandline tool to run Lambda functions on your local machine." ,
5
5
"main" : " build/lambdalocal.js" ,
6
6
"types" : " build/lambdalocal.d.ts" ,
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import Context = require('./lib/context.js');
17
17
/*
18
18
* Lambda local version
19
19
*/
20
- export const version = "1.7.3 " ;
20
+ export const version = "1.7.4 " ;
21
21
22
22
var logger = utils . getWinstonConsole ( ) ;
23
23
You can’t perform that action at this time.
0 commit comments