You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 8, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+44-10Lines changed: 44 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ A small library for [AWS Lambda](https://aws.amazon.com/lambda/details) providin
10
10
## Features
11
11
12
12
* Easy Handling of [ANY method](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-method-settings-method-request.html#setup-method-add-http-method) in API Gateways
13
-
* Simplifies writing lambda handlers (in nodejs)
13
+
* Simplifies writing lambda handlers (in nodejs > 8)
14
14
* Lambda Proxy Resource support for AWS API Gateway
15
15
* Enable CORS for requests
16
16
* No external dependencies
@@ -19,6 +19,7 @@ A small library for [AWS Lambda](https://aws.amazon.com/lambda/details) providin
Per s3 event there can be several records per event. The action methods are called one after the other record. The result of the action method is an array with objects insides.
@@ -328,13 +359,16 @@ See here: https://yarnpkg.com/en/docs/cli/link
328
359
329
360
330
361
## Release History
331
-
332
-
* 0.7.2
362
+
* 0.8.0
363
+
* fix: changed ProxyIntegrationEvent body type to be generic but defaults to unknown
364
+
* fix: changed @types/aws-lambda from devDependency to dependency
365
+
* **breaking**: error response objects (thrown or rejected) now need to set `statusCode` instead of `status` (consistent with response)
366
+
* 0.7.1
333
367
* code style cleanup
334
368
* fix: hosted package on npmjs should now worked
335
369
* 0.7.0
336
370
* migrate to typescript
337
-
* using aws-lambda typings
371
+
* using @types/aws-lambda typings
338
372
* proxyIntegration: cors is now optional (default: false)
339
373
* removed use of aws lambda handler callback function (using Promise instead)
340
374
* experimental _proxy path support_ (thanks to [@swaner](https://github.com/swaner))
0 commit comments