aws-serverless-express
Advanced tools
Comparing version 3.3.5 to 3.3.6
@@ -0,1 +1,12 @@ | ||
## [3.3.6](https://github.com/awslabs/aws-serverless-express/compare/v3.3.5...v3.3.6) (2019-03-26) | ||
### Bug Fixes | ||
* remove commitlint from travis ([7b12e56](https://github.com/awslabs/aws-serverless-express/commit/7b12e56)) | ||
* remove Node.js 4 support ([713ad14](https://github.com/awslabs/aws-serverless-express/commit/713ad14)) | ||
* remove Node.js 4 support ([e01c9af](https://github.com/awslabs/aws-serverless-express/commit/e01c9af)) | ||
* update dependencies ([075e15b](https://github.com/awslabs/aws-serverless-express/commit/075e15b)) | ||
* update dependencies ([39c55eb](https://github.com/awslabs/aws-serverless-express/commit/39c55eb)) | ||
<a name="3.3.5"></a> | ||
@@ -2,0 +13,0 @@ ## [3.3.5](https://github.com/awslabs/aws-serverless-express/compare/v3.3.4...v3.3.5) (2018-08-20) |
{ | ||
"name": "aws-serverless-express", | ||
"version": "3.3.5", | ||
"version": "3.3.6", | ||
"description": "This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using your existing Node.js application framework.", | ||
@@ -29,3 +29,3 @@ "keywords": [ | ||
"engines": { | ||
"node": ">=4" | ||
"node": ">=6" | ||
}, | ||
@@ -93,3 +93,3 @@ "release": { | ||
"@semantic-release/npm": "^3.0.2", | ||
"commitizen": "^2.10.1", | ||
"commitizen": "^3.0.7", | ||
"commitlint": "^6.1.0", | ||
@@ -104,5 +104,5 @@ "cz-conventional-changelog": "^2.1.0", | ||
"husky": "^0.15.0-rc.4", | ||
"jest": "^16.0.2", | ||
"jest": "^24.5.0", | ||
"lint-staged": "^7.2.0", | ||
"semantic-release": "^13.1.3" | ||
"semantic-release": "^15.13.8" | ||
}, | ||
@@ -109,0 +109,0 @@ "scripts": { |
@@ -21,3 +21,3 @@ # AWS Serverless Express | ||
exports.handler = (event, context) => awsServerlessExpress.proxy(server, event, context) | ||
exports.handler = (event, context) => { awsServerlessExpress.proxy(server, event, context) } | ||
``` | ||
@@ -50,3 +50,3 @@ | ||
#### Pros | ||
#### Benefits | ||
@@ -65,3 +65,3 @@ - Pay for what you use | ||
#### Cons | ||
#### Considerations | ||
@@ -71,2 +71,2 @@ - For apps that may not see traffic for several minutes at a time, you could see [cold starts](https://aws.amazon.com/blogs/compute/container-reuse-in-lambda/) | ||
- Stateless only | ||
- API Gateway has a timeout of 30 seconds, and Lambda has a maximum execution time of 5 minutes. | ||
- API Gateway has a timeout of 30 seconds, and Lambda has a maximum execution time of 15 minutes. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
32278