File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## 2.1.2 (2023/08/19)
4
+ * Fix regression: support for NodeJS>=8
5
+ * Fix regression: old events in --watch
6
+
3
7
## 2.1.1 (2023/07/22)
4
8
* Bug fix: ESM path on Windows
5
9
* Downgrade commander-js
6
10
7
11
## 2.1.0 (2023/07/20)
8
- * Support API gateway (replaces old --watch)
12
+ * Support API gateway in --watch
9
13
* Support ECMAScript (thanks tdanecker #230 )
10
14
* Support Lambda streaming (thanks Skn0tt #229 )
11
15
* Update dependencies
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " lambda-local" ,
3
- "version" : " 2.1.1 " ,
3
+ "version" : " 2.1.2 " ,
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 @@ -19,7 +19,7 @@ require("./lib/streaming.js");
19
19
/*
20
20
* Lambda local version
21
21
*/
22
- export const version = "2.1.1 " ;
22
+ export const version = "2.1.2 " ;
23
23
24
24
var logger = utils . getWinstonConsole ( ) ;
25
25
You can’t perform that action at this time.
0 commit comments