From ccb6dcbce6eb47e456de4a03d9fc6fc7d475ceb2 Mon Sep 17 00:00:00 2001 From: Luciano Date: Sun, 5 Jan 2020 12:05:43 +0000 Subject: [PATCH 1/6] Added update instructions --- README.md | 2 ++ UPGRADE.md | 35 +++++++++++++++++++++++++++++++++++ packages/http-cors/README.md | 4 ++-- 3 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 UPGRADE.md diff --git a/README.md b/README.md index 91cb11f31..0bd39c7e3 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,8 @@

+**UPGRADE NOTICE: if you are updating from Middy 0.x, check out the [update instructions](/UPDATE.md)!** + ## What is Middy Middy is a very simple middleware engine that allows you to simplify your AWS Lambda code when using Node.js. diff --git a/UPGRADE.md b/UPGRADE.md new file mode 100644 index 000000000..fee44b3c8 --- /dev/null +++ b/UPGRADE.md @@ -0,0 +1,35 @@ +# 0.x -> 1.0 + +## Independent packages structure + +Version 1.0 of Middy features decoupled independent packages published on npm under the `@middy` namespace. The core middleware engine has been modev to [`@middy/core`](https://www.npmjs.com/package/@middy/core) and all the other middlewares are moved into their own paclages as well. This allows to only install the features that are needed and to keep your Lambda dependencies small. See the list below to check which packages you need based on the middlewares you use: + + - Core middleware functionality -> [`@middy/core`](https://www.npmjs.com/package/@middy/core) + - `cache` -> [`@middy/cache`](https://www.npmjs.com/package/@middy/cache) + - `cors` -> [`@middy/http-cors`](https://www.npmjs.com/package/@middy/http-cors) + - `doNotWaitForEmptyEventLoop` -> [`@middy/do-not-wait-for-empty-event-loop`](https://www.npmjs.com/package/@middy/do-not-wait-for-empty-event-loop) + - `httpContentNegotiation` -> [`@middy/http-content-negotiation`](https://www.npmjs.com/package/@middy/http-content-negotiation) + - `httpErrorHandler` -> [`@middy/http-error-handler`](https://www.npmjs.com/package/@middy/http-error-handler) + - `httpEventNormalizer` -> [`@middy/http-event-normalizer`](https://www.npmjs.com/package/@middy/http-event-normalizer) + - `httpHeaderNormalizer` -> [`@middy/http-header-normalizer`](https://www.npmjs.com/package/@middy/http-header-normalizer) + - `httpMultipartBodyParser` -> [`@middy/http-json-body-parser`](https://www.npmjs.com/package/@middy/http-json-body-parser) + - `httpPartialResponse` -> [`@middy/http-partial-response`](https://www.npmjs.com/package/@middy/http-partial-response) + - `jsonBodyParser` -> [`@middy/http-json-body-parser`](https://www.npmjs.com/package/@middy/http-json-body-parser) + - `s3KeyNormalizer` -> [`@middy/s3-key-normalizer`](https://www.npmjs.com/package/@middy/s3-key-normalizer) + - `secretsManager` -> [`@middy/secrets-manager`](https://www.npmjs.com/package/@middy/secrets-manager) + - `ssm` -> [`@middy/ssm`](https://www.npmjs.com/package/@middy/ssm) + - `validator` -> [`@middy/validator`](https://www.npmjs.com/package/@middy/validator) + - `urlEncodeBodyParser` -> [`@middy/http-urlencode-body-parser`](https://www.npmjs.com/package/@middy/http-urlencode-body-parser) + - `warmup` -> [`@middy/warmup`](https://www.npmjs.com/package/@middy/warmup) + + +## Header normalization in `http-header-normalizer` + +In Middy 0.x the `httpHeaderNormalizer` middleware normalizes HTTP header names into their own canonical format, for instance `Sec-WebSocket-Key` (notice the casing). In Middy 1.0 this behavior has been changed to provide header names in lowercase format (e.g. `sec-webSocket-key`). This new behavior is more consistent with what Node.js core `http` package does and what other famous http frameworks like Express or Fastify do, so this is considered a more intuitive approach. +When updating to Middy 1.0, make sure you double check all your references to HTTP headers and switch to the lowercase version to read them. +All the middy core modules have been already updated to support the new format, so you should worry only about your userland code. + + +## Node.js 10 and 12 now supported / Node.js 6 and 8 now dropped + +Version 1.0 of Middy does not support Node.js versions 6.x and 8.x. These versions are now out of support, so you are highly encourage to move to Node.js 12 or 10, which are the new supported versions in Middy 1.0. diff --git a/packages/http-cors/README.md b/packages/http-cors/README.md index c3057c037..ed42465a1 100644 --- a/packages/http-cors/README.md +++ b/packages/http-cors/README.md @@ -10,8 +10,8 @@

- - npm version + + npm version Known Vulnerabilities From de78577575c390ab118dd971327061ebf5fe2477 Mon Sep 17 00:00:00 2001 From: Luciano Date: Sun, 5 Jan 2020 12:18:12 +0000 Subject: [PATCH 2/6] Mandatory emoji --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0bd39c7e3..a8900775a 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@

-**UPGRADE NOTICE: if you are updating from Middy 0.x, check out the [update instructions](/UPDATE.md)!** +**⚠️ UPGRADE NOTICE: if you are updating from Middy 0.x, check out the [update instructions](/UPDATE.md)!** ## What is Middy From bcea1b089782f7e4a496ddcffd1f1bd79aec6c2e Mon Sep 17 00:00:00 2001 From: Luciano Date: Sun, 5 Jan 2020 12:19:02 +0000 Subject: [PATCH 3/6] made link to UPDATE relative --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a8900775a..1a72c9765 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@

-**⚠️ UPGRADE NOTICE: if you are updating from Middy 0.x, check out the [update instructions](/UPDATE.md)!** +**⚠️ UPGRADE NOTICE: if you are updating from Middy 0.x, check out the [update instructions](UPDATE.md)!** ## What is Middy From b4e4600c7fee6ee50bd491153b3ea122e340c5e2 Mon Sep 17 00:00:00 2001 From: Luciano Date: Sun, 5 Jan 2020 15:55:46 +0000 Subject: [PATCH 4/6] Fixes after review --- UPGRADE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index fee44b3c8..7cee8bf11 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -1,8 +1,8 @@ -# 0.x -> 1.0 +# 0.x -> 1.x ## Independent packages structure -Version 1.0 of Middy features decoupled independent packages published on npm under the `@middy` namespace. The core middleware engine has been modev to [`@middy/core`](https://www.npmjs.com/package/@middy/core) and all the other middlewares are moved into their own paclages as well. This allows to only install the features that are needed and to keep your Lambda dependencies small. See the list below to check which packages you need based on the middlewares you use: +Version 1.0 of Middy features decoupled independent packages published on npm under the `@middy` namespace. The core middleware engine has been moved to [`@middy/core`](https://www.npmjs.com/package/@middy/core) and all the other middlewares are moved into their own packages as well. This allows to only install the features that are needed and to keep your Lambda dependencies small. See the list below to check which packages you need based on the middlewares you use: - Core middleware functionality -> [`@middy/core`](https://www.npmjs.com/package/@middy/core) - `cache` -> [`@middy/cache`](https://www.npmjs.com/package/@middy/cache) @@ -32,4 +32,4 @@ All the middy core modules have been already updated to support the new format, ## Node.js 10 and 12 now supported / Node.js 6 and 8 now dropped -Version 1.0 of Middy does not support Node.js versions 6.x and 8.x. These versions are now out of support, so you are highly encourage to move to Node.js 12 or 10, which are the new supported versions in Middy 1.0. +Version 1.0 of Middy no longer supports Node.js versions 6.x and 8.x as these versions have been dropped by the AWS Lambda runtime itself and not supported anymore by the Node.js community. You are highly encouraged to move to Node.js 12 or 10, which are the new supported versions in Middy 1.0. From 4a48ebd0ce8dc451c9da7c7a6a9cae3e4f9e069e Mon Sep 17 00:00:00 2001 From: Luciano Date: Sun, 5 Jan 2020 15:56:50 +0000 Subject: [PATCH 5/6] 1.x in upgrade guide --- UPGRADE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index 7cee8bf11..c4ee35513 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -2,7 +2,7 @@ ## Independent packages structure -Version 1.0 of Middy features decoupled independent packages published on npm under the `@middy` namespace. The core middleware engine has been moved to [`@middy/core`](https://www.npmjs.com/package/@middy/core) and all the other middlewares are moved into their own packages as well. This allows to only install the features that are needed and to keep your Lambda dependencies small. See the list below to check which packages you need based on the middlewares you use: +Version 1.x of Middy features decoupled independent packages published on npm under the `@middy` namespace. The core middleware engine has been moved to [`@middy/core`](https://www.npmjs.com/package/@middy/core) and all the other middlewares are moved into their own packages as well. This allows to only install the features that are needed and to keep your Lambda dependencies small. See the list below to check which packages you need based on the middlewares you use: - Core middleware functionality -> [`@middy/core`](https://www.npmjs.com/package/@middy/core) - `cache` -> [`@middy/cache`](https://www.npmjs.com/package/@middy/cache) @@ -25,11 +25,11 @@ Version 1.0 of Middy features decoupled independent packages published on npm un ## Header normalization in `http-header-normalizer` -In Middy 0.x the `httpHeaderNormalizer` middleware normalizes HTTP header names into their own canonical format, for instance `Sec-WebSocket-Key` (notice the casing). In Middy 1.0 this behavior has been changed to provide header names in lowercase format (e.g. `sec-webSocket-key`). This new behavior is more consistent with what Node.js core `http` package does and what other famous http frameworks like Express or Fastify do, so this is considered a more intuitive approach. -When updating to Middy 1.0, make sure you double check all your references to HTTP headers and switch to the lowercase version to read them. +In Middy 0.x the `httpHeaderNormalizer` middleware normalizes HTTP header names into their own canonical format, for instance `Sec-WebSocket-Key` (notice the casing). In Middy 1.x this behavior has been changed to provide header names in lowercase format (e.g. `sec-webSocket-key`). This new behavior is more consistent with what Node.js core `http` package does and what other famous http frameworks like Express or Fastify do, so this is considered a more intuitive approach. +When updating to Middy 1.x, make sure you double check all your references to HTTP headers and switch to the lowercase version to read them. All the middy core modules have been already updated to support the new format, so you should worry only about your userland code. ## Node.js 10 and 12 now supported / Node.js 6 and 8 now dropped -Version 1.0 of Middy no longer supports Node.js versions 6.x and 8.x as these versions have been dropped by the AWS Lambda runtime itself and not supported anymore by the Node.js community. You are highly encouraged to move to Node.js 12 or 10, which are the new supported versions in Middy 1.0. +Version 1.x of Middy no longer supports Node.js versions 6.x and 8.x as these versions have been dropped by the AWS Lambda runtime itself and not supported anymore by the Node.js community. You are highly encouraged to move to Node.js 12 or 10, which are the new supported versions in Middy 1.x. From 71c5ed655fe18b09d61b7b1ef6b0dd3c07471514 Mon Sep 17 00:00:00 2001 From: Luciano Date: Sun, 5 Jan 2020 16:02:13 +0000 Subject: [PATCH 6/6] version bump --- lerna.json | 2 +- package-lock.json | 2 +- package.json | 2 +- packages/cache/package-lock.json | 8 ++++---- packages/cache/package.json | 4 ++-- packages/core/package-lock.json | 2 +- packages/core/package.json | 2 +- packages/db-manager/package-lock.json | 8 ++++---- packages/db-manager/package.json | 4 ++-- .../do-not-wait-for-empty-event-loop/package-lock.json | 8 ++++---- packages/do-not-wait-for-empty-event-loop/package.json | 4 ++-- packages/error-logger/package-lock.json | 8 ++++---- packages/error-logger/package.json | 4 ++-- packages/function-shield/package-lock.json | 8 ++++---- packages/function-shield/package.json | 4 ++-- packages/http-content-negotiation/package-lock.json | 8 ++++---- packages/http-content-negotiation/package.json | 4 ++-- packages/http-cors/package-lock.json | 8 ++++---- packages/http-cors/package.json | 4 ++-- packages/http-error-handler/package-lock.json | 8 ++++---- packages/http-error-handler/package.json | 4 ++-- packages/http-event-normalizer/package-lock.json | 8 ++++---- packages/http-event-normalizer/package.json | 4 ++-- packages/http-header-normalizer/package-lock.json | 8 ++++---- packages/http-header-normalizer/package.json | 4 ++-- packages/http-json-body-parser/package-lock.json | 8 ++++---- packages/http-json-body-parser/package.json | 4 ++-- packages/http-multipart-body-parser/package-lock.json | 8 ++++---- packages/http-multipart-body-parser/package.json | 4 ++-- packages/http-partial-response/package-lock.json | 8 ++++---- packages/http-partial-response/package.json | 4 ++-- packages/http-response-serializer/package-lock.json | 8 ++++---- packages/http-response-serializer/package.json | 4 ++-- packages/http-security-headers/package-lock.json | 8 ++++---- packages/http-security-headers/package.json | 4 ++-- packages/http-urlencode-body-parser/package-lock.json | 8 ++++---- packages/http-urlencode-body-parser/package.json | 4 ++-- packages/http-urlencode-path-parser/package-lock.json | 8 ++++---- packages/http-urlencode-path-parser/package.json | 4 ++-- packages/input-output-logger/package-lock.json | 8 ++++---- packages/input-output-logger/package.json | 4 ++-- packages/s3-key-normalizer/package-lock.json | 8 ++++---- packages/s3-key-normalizer/package.json | 4 ++-- packages/secrets-manager/package-lock.json | 8 ++++---- packages/secrets-manager/package.json | 4 ++-- packages/ssm/package-lock.json | 8 ++++---- packages/ssm/package.json | 4 ++-- packages/validator/package-lock.json | 8 ++++---- packages/validator/package.json | 4 ++-- packages/warmup/package-lock.json | 8 ++++---- packages/warmup/package.json | 4 ++-- 51 files changed, 143 insertions(+), 143 deletions(-) diff --git a/lerna.json b/lerna.json index 5e0f2ec88..fcb4c4472 100644 --- a/lerna.json +++ b/lerna.json @@ -3,5 +3,5 @@ "packages": [ "packages/*" ], - "version": "1.0.0-alpha.64" + "version": "1.0.0-alpha.65" } diff --git a/package-lock.json b/package-lock.json index fc2a26023..7d707e24d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "middy-monorepo", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7884bb298..f47a9bff4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "middy-monorepo", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "🛵 The stylish Node.js middleware engine for AWS Lambda", "engines": { "node": ">=10" diff --git a/packages/cache/package-lock.json b/packages/cache/package-lock.json index 2c3d8d073..79d7b9b9b 100644 --- a/packages/cache/package-lock.json +++ b/packages/cache/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/cache", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/cache/package.json b/packages/cache/package.json index 75cf5c65b..a06939cdd 100644 --- a/packages/cache/package.json +++ b/packages/cache/package.json @@ -1,6 +1,6 @@ { "name": "@middy/cache", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Cache middleware for the middy framework", "engines": { "node": ">=10" @@ -41,7 +41,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/core/package-lock.json b/packages/core/package-lock.json index c00308e37..dc6a5ea20 100644 --- a/packages/core/package-lock.json +++ b/packages/core/package-lock.json @@ -1,6 +1,6 @@ { "name": "@middy/core", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/core/package.json b/packages/core/package.json index d26c3b4d2..1d3fc105f 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@middy/core", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "🛵 The stylish Node.js middleware engine for AWS Lambda (core package)", "engines": { "node": ">=10" diff --git a/packages/db-manager/package-lock.json b/packages/db-manager/package-lock.json index b3ae32ab4..7c86bab4f 100644 --- a/packages/db-manager/package-lock.json +++ b/packages/db-manager/package-lock.json @@ -1,6 +1,6 @@ { "name": "@middy/db-manager", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -14,9 +14,9 @@ } }, "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/db-manager/package.json b/packages/db-manager/package.json index 362f99cff..74df6b2ab 100644 --- a/packages/db-manager/package.json +++ b/packages/db-manager/package.json @@ -1,6 +1,6 @@ { "name": "@middy/db-manager", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Simple database manager for the middy framework", "engines": { "node": ">=10" @@ -40,7 +40,7 @@ "knex": "^0.17.3" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64" + "@middy/core": "^1.0.0-alpha.65" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" } diff --git a/packages/do-not-wait-for-empty-event-loop/package-lock.json b/packages/do-not-wait-for-empty-event-loop/package-lock.json index cab6cf2f9..4b1419d67 100644 --- a/packages/do-not-wait-for-empty-event-loop/package-lock.json +++ b/packages/do-not-wait-for-empty-event-loop/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/do-not-wait-for-empty-event-loop", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/do-not-wait-for-empty-event-loop/package.json b/packages/do-not-wait-for-empty-event-loop/package.json index 8e7e78f92..478b5320a 100644 --- a/packages/do-not-wait-for-empty-event-loop/package.json +++ b/packages/do-not-wait-for-empty-event-loop/package.json @@ -1,6 +1,6 @@ { "name": "@middy/do-not-wait-for-empty-event-loop", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Middleware for the middy framework that allows to easily disable the wait for empty event loop in a Lambda function", "engines": { "node": ">=10" @@ -41,7 +41,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/error-logger/package-lock.json b/packages/error-logger/package-lock.json index 08f7a4f87..d97de76f1 100644 --- a/packages/error-logger/package-lock.json +++ b/packages/error-logger/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/error-logger", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/error-logger/package.json b/packages/error-logger/package.json index 062a62ae8..e4b424373 100644 --- a/packages/error-logger/package.json +++ b/packages/error-logger/package.json @@ -1,6 +1,6 @@ { "name": "@middy/error-logger", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Input and output logger middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "@types/node": "^10.0.8" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/function-shield/package-lock.json b/packages/function-shield/package-lock.json index e0dcbf686..d90f04731 100644 --- a/packages/function-shield/package-lock.json +++ b/packages/function-shield/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/function-shield", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/function-shield/package.json b/packages/function-shield/package.json index 5a1789545..3aeb93e7e 100644 --- a/packages/function-shield/package.json +++ b/packages/function-shield/package.json @@ -1,6 +1,6 @@ { "name": "@middy/function-shield", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Hardens AWS Lambda execution environment", "engines": { "node": ">=10" @@ -45,7 +45,7 @@ "@puresec/function-shield": "^1.2.2" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-content-negotiation/package-lock.json b/packages/http-content-negotiation/package-lock.json index afce78263..a4f0a6e3e 100644 --- a/packages/http-content-negotiation/package-lock.json +++ b/packages/http-content-negotiation/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-content-negotiation", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-content-negotiation/package.json b/packages/http-content-negotiation/package.json index d7363242e..f04bf2186 100644 --- a/packages/http-content-negotiation/package.json +++ b/packages/http-content-negotiation/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-content-negotiation", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http content negotiation middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-cors/package-lock.json b/packages/http-cors/package-lock.json index 50beeb699..c0d5d457a 100644 --- a/packages/http-cors/package-lock.json +++ b/packages/http-cors/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-cors", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-cors/package.json b/packages/http-cors/package.json index 5732962a4..8ac0665c8 100644 --- a/packages/http-cors/package.json +++ b/packages/http-cors/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-cors", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "CORS (Cross-Origin Resource Sharing) middleware for the middy framework", "engines": { "node": ">=10" @@ -42,7 +42,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-error-handler/package-lock.json b/packages/http-error-handler/package-lock.json index 32ff26809..ddeca412c 100644 --- a/packages/http-error-handler/package-lock.json +++ b/packages/http-error-handler/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-error-handler", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-error-handler/package.json b/packages/http-error-handler/package.json index 1c4f10f2a..ab723b725 100644 --- a/packages/http-error-handler/package.json +++ b/packages/http-error-handler/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-error-handler", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http error handler middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "http-errors": "^1.6.3" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-event-normalizer/package-lock.json b/packages/http-event-normalizer/package-lock.json index 129d1ea85..a54fd5fa6 100644 --- a/packages/http-event-normalizer/package-lock.json +++ b/packages/http-event-normalizer/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-event-normalizer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-event-normalizer/package.json b/packages/http-event-normalizer/package.json index 5c2948113..bde9e45bd 100644 --- a/packages/http-event-normalizer/package.json +++ b/packages/http-event-normalizer/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-event-normalizer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http event normalizer middleware for the middy framework", "engines": { "node": ">=10" @@ -43,7 +43,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-header-normalizer/package-lock.json b/packages/http-header-normalizer/package-lock.json index 374435016..be27425cc 100644 --- a/packages/http-header-normalizer/package-lock.json +++ b/packages/http-header-normalizer/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-header-normalizer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-header-normalizer/package.json b/packages/http-header-normalizer/package.json index 78b810d9d..f0e55f133 100644 --- a/packages/http-header-normalizer/package.json +++ b/packages/http-header-normalizer/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-header-normalizer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http header normalizer middleware for the middy framework", "engines": { "node": ">=10" @@ -45,7 +45,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-json-body-parser/package-lock.json b/packages/http-json-body-parser/package-lock.json index 7d9b286b2..9fb4da910 100644 --- a/packages/http-json-body-parser/package-lock.json +++ b/packages/http-json-body-parser/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-json-body-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-json-body-parser/package.json b/packages/http-json-body-parser/package.json index 5cb419419..952527ae8 100644 --- a/packages/http-json-body-parser/package.json +++ b/packages/http-json-body-parser/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-json-body-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http JSON body parser middleware for the middy framework", "engines": { "node": ">=10" @@ -50,7 +50,7 @@ "http-errors": "^1.6.3" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-multipart-body-parser/package-lock.json b/packages/http-multipart-body-parser/package-lock.json index c20d13126..0fdba16f8 100644 --- a/packages/http-multipart-body-parser/package-lock.json +++ b/packages/http-multipart-body-parser/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-multipart-body-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-multipart-body-parser/package.json b/packages/http-multipart-body-parser/package.json index 3389fdc21..c1582a1a0 100644 --- a/packages/http-multipart-body-parser/package.json +++ b/packages/http-multipart-body-parser/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-multipart-body-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http event normalizer middleware for the middy framework", "engines": { "node": ">=10" @@ -48,7 +48,7 @@ "http-errors": "^1.7.3" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-partial-response/package-lock.json b/packages/http-partial-response/package-lock.json index c3c204c17..42b65a3ea 100644 --- a/packages/http-partial-response/package-lock.json +++ b/packages/http-partial-response/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-partial-response", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-partial-response/package.json b/packages/http-partial-response/package.json index 7c490b25a..c8c145fb8 100644 --- a/packages/http-partial-response/package.json +++ b/packages/http-partial-response/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-partial-response", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Http partial response middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "json-mask": "^0.3.8" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-response-serializer/package-lock.json b/packages/http-response-serializer/package-lock.json index b4fd040eb..c34cd7329 100644 --- a/packages/http-response-serializer/package-lock.json +++ b/packages/http-response-serializer/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-response-serializer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-response-serializer/package.json b/packages/http-response-serializer/package.json index 1f319979d..1992e7e27 100644 --- a/packages/http-response-serializer/package.json +++ b/packages/http-response-serializer/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-response-serializer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "The Http Serializer middleware lets you define serialization mechanisms based on the current content negotiation.", "engines": { "node": ">=10" @@ -50,7 +50,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-security-headers/package-lock.json b/packages/http-security-headers/package-lock.json index 2202a8db2..e04600aa6 100644 --- a/packages/http-security-headers/package-lock.json +++ b/packages/http-security-headers/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-security-headers", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-security-headers/package.json b/packages/http-security-headers/package.json index 34499ffea..39982185e 100644 --- a/packages/http-security-headers/package.json +++ b/packages/http-security-headers/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-security-headers", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Applies best practice security headers to responses. It's a simplified port of HelmetJS", "engines": { "node": ">=10" @@ -46,7 +46,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-urlencode-body-parser/package-lock.json b/packages/http-urlencode-body-parser/package-lock.json index 2bfc39343..5f4948a25 100644 --- a/packages/http-urlencode-body-parser/package-lock.json +++ b/packages/http-urlencode-body-parser/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-urlencode-body-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-urlencode-body-parser/package.json b/packages/http-urlencode-body-parser/package.json index 7cfd9565a..6d6712e8e 100644 --- a/packages/http-urlencode-body-parser/package.json +++ b/packages/http-urlencode-body-parser/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-urlencode-body-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Urlencode body parser middleware for the middy framework", "engines": { "node": ">=10" @@ -50,7 +50,7 @@ "querystring": "^0.2.0" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/http-urlencode-path-parser/package-lock.json b/packages/http-urlencode-path-parser/package-lock.json index e16f91ffc..d911e1f24 100644 --- a/packages/http-urlencode-path-parser/package-lock.json +++ b/packages/http-urlencode-path-parser/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/http-urlencode-path-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/http-urlencode-path-parser/package.json b/packages/http-urlencode-path-parser/package.json index 453c1e33d..9942bd580 100644 --- a/packages/http-urlencode-path-parser/package.json +++ b/packages/http-urlencode-path-parser/package.json @@ -1,6 +1,6 @@ { "name": "@middy/http-urlencode-path-parser", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Urlencode path parser middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "@types/http-errors": "^1.6.1" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64" + "@middy/core": "^1.0.0-alpha.65" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" } diff --git a/packages/input-output-logger/package-lock.json b/packages/input-output-logger/package-lock.json index 9730b0cd6..3dc34088e 100644 --- a/packages/input-output-logger/package-lock.json +++ b/packages/input-output-logger/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/input-output-logger", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/input-output-logger/package.json b/packages/input-output-logger/package.json index ade56c899..6f205c490 100644 --- a/packages/input-output-logger/package.json +++ b/packages/input-output-logger/package.json @@ -1,6 +1,6 @@ { "name": "@middy/input-output-logger", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Input and output logger middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "@types/node": "^10.0.8" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/s3-key-normalizer/package-lock.json b/packages/s3-key-normalizer/package-lock.json index d3f0386d8..64684de7a 100644 --- a/packages/s3-key-normalizer/package-lock.json +++ b/packages/s3-key-normalizer/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/s3-key-normalizer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/s3-key-normalizer/package.json b/packages/s3-key-normalizer/package.json index d197897a6..517b5c1af 100644 --- a/packages/s3-key-normalizer/package.json +++ b/packages/s3-key-normalizer/package.json @@ -1,6 +1,6 @@ { "name": "@middy/s3-key-normalizer", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "S3 key normalizer middleware for the middy framework", "engines": { "node": ">=10" @@ -43,7 +43,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/secrets-manager/package-lock.json b/packages/secrets-manager/package-lock.json index c00406628..3d5d34a97 100644 --- a/packages/secrets-manager/package-lock.json +++ b/packages/secrets-manager/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/secrets-manager", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/secrets-manager/package.json b/packages/secrets-manager/package.json index 21706d648..86a95fb97 100644 --- a/packages/secrets-manager/package.json +++ b/packages/secrets-manager/package.json @@ -1,6 +1,6 @@ { "name": "@middy/secrets-manager", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Secrets Manager middleware for the middy framework", "engines": { "node": ">=10" @@ -45,7 +45,7 @@ "@types/node": "^10.0.8" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/ssm/package-lock.json b/packages/ssm/package-lock.json index 405761cf5..c63008380 100644 --- a/packages/ssm/package-lock.json +++ b/packages/ssm/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/ssm", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/ssm/package.json b/packages/ssm/package.json index a7c42eb5e..7d13c13bc 100644 --- a/packages/ssm/package.json +++ b/packages/ssm/package.json @@ -1,6 +1,6 @@ { "name": "@middy/ssm", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "SSM (EC2 Systems Manager) parameters middleware for the middy framework", "engines": { "node": ">=10" @@ -47,7 +47,7 @@ "@types/node": "^10.0.8" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/validator/package-lock.json b/packages/validator/package-lock.json index 636b16ebd..371b6f0e0 100644 --- a/packages/validator/package-lock.json +++ b/packages/validator/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/validator", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/validator/package.json b/packages/validator/package.json index be4fade1c..425884a8d 100644 --- a/packages/validator/package.json +++ b/packages/validator/package.json @@ -1,6 +1,6 @@ { "name": "@middy/validator", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Validator middleware for the middy framework", "engines": { "node": ">=10" @@ -49,7 +49,7 @@ "http-errors": "^1.6.3" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431" diff --git a/packages/warmup/package-lock.json b/packages/warmup/package-lock.json index 43d1609a3..4632e2dba 100644 --- a/packages/warmup/package-lock.json +++ b/packages/warmup/package-lock.json @@ -1,13 +1,13 @@ { "name": "@middy/warmup", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "lockfileVersion": 1, "requires": true, "dependencies": { "@middy/core": { - "version": "1.0.0-alpha.63", - "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.63.tgz", - "integrity": "sha512-i19Jo2gek/ygc2n3XggmaRhluexgVnHnAay7g7ga4f/ADv1KcYK7U7woMONhswYAz+Bagd9L8eYhtKyEHLDgnw==", + "version": "1.0.0-alpha.64", + "resolved": "https://registry.npmjs.org/@middy/core/-/core-1.0.0-alpha.64.tgz", + "integrity": "sha512-I/WcE+R16NKx11gxJ6ISK1dWU0fG9vhRM1x5TDwWk/GjjHzq1ENgljnHZFBhzKezTufouESTMyR62OPPjUD0Xw==", "dev": true, "requires": { "once": "^1.4.0" diff --git a/packages/warmup/package.json b/packages/warmup/package.json index 4399ee335..c320bc6d4 100644 --- a/packages/warmup/package.json +++ b/packages/warmup/package.json @@ -1,6 +1,6 @@ { "name": "@middy/warmup", - "version": "1.0.0-alpha.64", + "version": "1.0.0-alpha.65", "description": "Warmup (cold start mitigation) middleware for the middy framework", "engines": { "node": ">=10" @@ -43,7 +43,7 @@ "@middy/core": ">=1.0.0-alpha" }, "devDependencies": { - "@middy/core": "^1.0.0-alpha.64", + "@middy/core": "^1.0.0-alpha.65", "es6-promisify": "^6.0.2" }, "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431"