Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge master into develop #190

Merged
merged 4 commits into from
Oct 14, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="3.3.5"></a>
## [3.3.5](https://github.com/awslabs/aws-serverless-express/compare/v3.3.4...v3.3.5) (2018-08-20)


### Bug Fixes

* apply Content-Length header when missing ([b0927b8](https://github.com/awslabs/aws-serverless-express/commit/b0927b8)), closes [#147](https://github.com/awslabs/aws-serverless-express/issues/147) [#106](https://github.com/awslabs/aws-serverless-express/issues/106) [#130](https://github.com/awslabs/aws-serverless-express/issues/130)
* apply Content-Length header when missing ([#175](https://github.com/awslabs/aws-serverless-express/issues/175)) ([c2f416b](https://github.com/awslabs/aws-serverless-express/commit/c2f416b))

<a name="3.3.4"></a>
## [3.3.4](https://github.com/awslabs/aws-serverless-express/compare/v3.3.3...v3.3.4) (2018-08-19)


### Bug Fixes

* update example to use 3.3.3 ([bc7bdaf](https://github.com/awslabs/aws-serverless-express/commit/bc7bdaf))

<a name="3.3.3"></a>
## [3.3.3](https://github.com/awslabs/aws-serverless-express/compare/v3.3.2...v3.3.3) (2018-08-16)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ app.get('/', (req, res) => {

### Is AWS serverless right for my app?

#### Pros
#### Benefits

- Pay for what you use
- No infrastructure to manage
Expand All @@ -60,7 +60,7 @@ app.get('/', (req, res) => {
- [Request Validation](http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-method-request-validation.html)
- [Documentation](http://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-documenting-api.html)

#### Cons
#### Considerations

- 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/)
- Cannot use native libraries (aka [Addons](https://nodejs.org/api/addons.html)) unless you package your app on an EC2 machine running Amazon Linux
Expand Down
Loading