Skip to content

Commit

Permalink
Release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gpotter2 committed Aug 19, 2023
1 parent cbddb82 commit 95fb3df
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# ChangeLog

## 2.1.2 (2023/08/19)
* Fix regression: support for NodeJS>=8
* Fix regression: old events in --watch

## 2.1.1 (2023/07/22)
* Bug fix: ESM path on Windows
* Downgrade commander-js

## 2.1.0 (2023/07/20)
* Support API gateway (replaces old --watch)
* Support API gateway in --watch
* Support ECMAScript (thanks tdanecker #230)
* Support Lambda streaming (thanks Skn0tt #229)
* Update dependencies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lambda-local",
"version": "2.1.1",
"version": "2.1.2",
"description": "Commandline tool to run Lambda functions on your local machine.",
"main": "build/lambdalocal.js",
"types": "build/lambdalocal.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/lambdalocal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ require("./lib/streaming.js");
/*
* Lambda local version
*/
export const version = "2.1.1";
export const version = "2.1.2";

var logger = utils.getWinstonConsole();

Expand Down

0 comments on commit 95fb3df

Please sign in to comment.