Skip to content
This repository was archived by the owner on Aug 8, 2024. It is now read-only.

Commit 9fd7b67

Browse files
author
Gohlke, Christian
committed
prepare release version 0.9.0
1 parent dcb03db commit 9fd7b67

File tree

3 files changed

+75
-49
lines changed

3 files changed

+75
-49
lines changed

CHANGELOG.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
### 0.9.0 (September 01, 2020)
2+
* proxyIntegration: Adds customizable CORS configurations (#52) (thanks to [@TerryMooreII ](https://github.com/TerryMooreII) and [LiveOakLabs](https://github.com/LiveOakLabs))
3+
4+
### 0.8.4 (August 01, 2020)
5+
* proxyIntegration: expose route path (#49) (thanks to [@evgenykireev ](https://github.com/evgenykireev))
6+
7+
### 0.8.3 (May 07, 2020)
8+
* added records to the SQS (#43) and SNS (#44) action for further processing
9+
10+
### 0.8.2 (January 28, 2020)
11+
* added support for Open API parameter definitions e.g.: /section/{id}
12+
13+
### 0.8.1 (January 24, 2020)
14+
* fix: changed ProxyIntegrationEvent body type to be generic but defaults to unknown
15+
* fix: changed @types/aws-lambda from devDependency to dependency
16+
* **breaking**: error response objects (thrown or rejected) now need to set `statusCode` instead of `status` (consistent with response)
17+
18+
### 0.7.1 (January 22, 2020)
19+
* code style cleanup
20+
* fix: hosted package on npmjs should now worked
21+
22+
### 0.7.0 (January 17, 2020)
23+
* migrate to typescript
24+
* using @types/aws-lambda typings
25+
* proxyIntegration: cors is now optional (default: false)
26+
* removed use of aws lambda handler callback function (using Promise instead)
27+
* experimental _proxy path support_ (thanks to [@swaner](https://github.com/swaner))
28+
29+
### 0.6.2 (May 03, 2019)
30+
* take away old gulp dependency to run tests, works now with scripts in package.json
31+
* normalize request path to start from local host (thanks to [@napicella](https://github.com/napicella))
32+
33+
### 0.6.1 (January 02, 2019)
34+
* s3: fix: aggregate result promises to one promise;
35+
* s3: s3Route interface
36+
37+
### 0.6.0 (December 24, 2018)
38+
* new feature: S3 routes available.
39+
40+
### 0.5.0 (November 18, 2018)
41+
* new feature: SQS route integration now available;
42+
* bugfix: SNS integration now works with Array of message instead of single message
43+
44+
### 0.4.0 (September 13, 2018)
45+
* now [the Context Object](https://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-handler.html) pass through
46+
47+
### 0.3.1 (August 28, 2018)
48+
* proxyIntegration: avoid error if response object is not set
49+
* add some debug logging
50+
51+
### 0.3.0 (August 28, 2018)
52+
* proxyIntegration: add PATCH method;
53+
* allow for custom status codes from route (thanks to [@mintuz](https://github.com/mintuz))
54+
55+
### 0.2.3 (October 13, 2017)
56+
* better errorhandling (from PR #3)
57+
58+
### 0.2.2 (November 25, 2016)
59+
* proxyIntegration: set correct header values now for CORS
60+
61+
### 0.2.1 (November 25, 2016)
62+
* proxyIntegration: CORS in Preflight, status code 400 for invalid body, set more CORS headers as default
63+
64+
### 0.2.0 (November 21, 2016)
65+
* *Attention*: breaking changes for configuration;
66+
* add SNS event process
67+
68+
### 0.1.0 (November 15, 2016)
69+
* make it work now
70+
71+
### 0.0. (September 29, 2016)
72+
* initial release

README.md

Lines changed: 2 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -449,51 +449,5 @@ Increase version in **package.json** (using [semantic version syntax](https://se
449449
Thats all.
450450
451451
## Release History
452-
* 0.8.4
453-
* proxyIntegration: expose route path (#49) (thanks to [@evgenykireev ](https://github.com/evgenykireev))
454-
* 0.8.3
455-
* added records to the SQS (#43) and SNS (#44) action for further processing
456-
* 0.8.2
457-
* added support for Open API parameter definitions e.g.: /section/{id}
458-
* 0.8.1
459-
* fix: changed ProxyIntegrationEvent body type to be generic but defaults to unknown
460-
* fix: changed @types/aws-lambda from devDependency to dependency
461-
* **breaking**: error response objects (thrown or rejected) now need to set `statusCode` instead of `status` (consistent with response)
462-
* 0.7.1
463-
* code style cleanup
464-
* fix: hosted package on npmjs should now worked
465-
* 0.7.0
466-
* migrate to typescript
467-
* using @types/aws-lambda typings
468-
* proxyIntegration: cors is now optional (default: false)
469-
* removed use of aws lambda handler callback function (using Promise instead)
470-
* experimental _proxy path support_ (thanks to [@swaner](https://github.com/swaner))
471-
* 0.6.2
472-
* take away old gulp dependency to run tests, works now with scripts in package.json
473-
* normalize request path to start from local host (thanks to [@napicella](https://github.com/napicella))
474-
* 0.6.1
475-
* s3: fix: aggregate result promises to one promise;
476-
* s3: s3Route interface
477-
* 0.6.0
478-
* new feature: S3 routes available.
479-
* 0.5.0
480-
* new feature: SQS route integration now available;
481-
* bugfix: SNS integration now works with Array of message instead of single message
482-
* 0.4.0
483-
* now [the Context Object](https://docs.aws.amazon.com/lambda/latest/dg/nodejs-prog-model-handler.html) pass through
484-
* 0.3.1 proxyIntegration:
485-
* avoid error if response object is not set;
486-
* add some debug logging
487-
* 0.3.0
488-
* proxyIntegration: add PATCH method;
489-
* allow for custom status codes from route (thanks to [@mintuz](https://github.com/mintuz))
490-
* 0.2.2
491-
* proxyIntegration: set correct header values now for CORS
492-
* 0.2.1
493-
* proxyIntegration: CORS in Preflight, status code 400 for invalid body, set more CORS headers as default
494-
* 0.2.0 *Attention*: breaking changes for configuration;
495-
* add SNS event process
496-
* 0.1.0
497-
* make it work now
498-
* 0.0.1
499-
* initial release
452+
453+
see [CHANGELOG.md](CHANGELOG.md)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-lambda-router",
3-
"version": "0.8.4",
3+
"version": "0.9.0",
44
"description": "AWS lambda router",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)