File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
# ChangeLog
2
2
3
+ ## 2.1.1 (2023/07/22)
4
+ * Bug fix: ESM path on Windows
5
+ * Downgrade commander-js
6
+
3
7
## 2.1.0 (2023/07/20)
4
8
* Support API gateway (replaces old --watch)
5
9
* Support ECMAScript (thanks tdanecker #230 )
6
10
* Support Lambda streaming (thanks Skn0tt #229 )
11
+ * Update dependencies
7
12
8
13
## 2.0.3 (2022/09/12)
9
14
* Fix ` callbackWaitsForEmptyEventLoop ` on recent NodeJS versions (>=16) (#217 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " lambda-local" ,
3
- "version" : " 2.1.0 " ,
3
+ "version" : " 2.1.1 " ,
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" ,
29
29
"maintainers" : [
30
30
{
31
31
"name" : " Gabriel Potter (gpotter2)" ,
32
- "email" : " gabriel@potter.fr "
32
+ "email" : " 10530980+gpotter2@users.noreply.github.com "
33
33
}
34
34
],
35
35
"engines" : {
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.0 " ;
22
+ export const version = "2.1.1 " ;
23
23
24
24
var logger = utils . getWinstonConsole ( ) ;
25
25
You can’t perform that action at this time.
0 commit comments