Skip to content

Commit 95fb3df

Browse files
committed
Release 2.1.2
1 parent cbddb82 commit 95fb3df

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# ChangeLog
22

3+
## 2.1.2 (2023/08/19)
4+
* Fix regression: support for NodeJS>=8
5+
* Fix regression: old events in --watch
6+
37
## 2.1.1 (2023/07/22)
48
* Bug fix: ESM path on Windows
59
* Downgrade commander-js
610

711
## 2.1.0 (2023/07/20)
8-
* Support API gateway (replaces old --watch)
12+
* Support API gateway in --watch
913
* Support ECMAScript (thanks tdanecker #230)
1014
* Support Lambda streaming (thanks Skn0tt #229)
1115
* Update dependencies

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambda-local",
3-
"version": "2.1.1",
3+
"version": "2.1.2",
44
"description": "Commandline tool to run Lambda functions on your local machine.",
55
"main": "build/lambdalocal.js",
66
"types": "build/lambdalocal.d.ts",

src/lambdalocal.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require("./lib/streaming.js");
1919
/*
2020
* Lambda local version
2121
*/
22-
export const version = "2.1.1";
22+
export const version = "2.1.2";
2323

2424
var logger = utils.getWinstonConsole();
2525

0 commit comments

Comments
 (0)