From c5cc45c05ddba6618a1ba0823589e6ee6c24c970 Mon Sep 17 00:00:00 2001 From: cgohlke Date: Wed, 22 Jan 2020 14:51:40 +0100 Subject: [PATCH] prepare version 0.7.1 --- README.md | 7 +++++-- package.json | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 42006ce..7618294 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,10 @@ export const handler = router.handler({ The proxy integration usually works using a path configured in the API gateway. For example: `/article/{id}`. -If you use the WIP *proxy path support*, the complete path will be used to match a route config in `proxyIntegration`. This can be used to build an [Simple Proxy with API Gateway]([https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-create-api-as-simple-proxy-for-http.html](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-create-api-as-simple-proxy-for-http.html)) +If you use the WIP *proxy path support*, the complete path will be used to match a route config in `proxyIntegration`. This can be used to build an [Simple Proxy with API Gateway](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-create-api-as-simple-proxy-for-http.html) Example: -* Resource in API Gateway : /{proxy+} +* Resource in API Gateway : /{proxy+} [see Proxy Integration with a Proxy Resource](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-set-up-simple-proxy.html) * Method: ANY With the lambda configuration shown below the following paths are matched: @@ -329,6 +329,9 @@ See here: https://yarnpkg.com/en/docs/cli/link ## Release History +* 0.7.1 + * code style cleanup + * fix: hosted package on npmjs should now worked * 0.7.0 * migrate to typescript * using aws-lambda typings diff --git a/package.json b/package.json index 8e40920..54d8101 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aws-lambda-router", - "version": "0.7.0", + "version": "0.7.1", "description": "AWS lambda router", "main": "dist/index.js", "types": "dist/index.d.ts",