diff --git a/.changeset/fix-aws-event-v1-null-multi-value-params.md b/.changeset/fix-aws-event-v1-null-multi-value-params.md deleted file mode 100644 index 3312b0d3a..000000000 --- a/.changeset/fix-aws-event-v1-null-multi-value-params.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@slack/bolt": patch ---- - -Fix `AwsEventV1.multiValueQueryStringParameters` to allow `null`, matching the actual AWS API Gateway payload and the `@types/aws-lambda` `APIGatewayProxyEvent` type. This resolves the type error when passing an `APIGatewayProxyEvent` directly to the handler returned by `AwsLambdaReceiver`. diff --git a/CHANGELOG.md b/CHANGELOG.md index ebf9bcc18..a5ec67845 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @slack/bolt +## 5.0.1 + +### Patch Changes + +- b9acd4f: Fix `AwsEventV1.multiValueQueryStringParameters` to allow `null`, matching the actual AWS API Gateway payload and the `@types/aws-lambda` `APIGatewayProxyEvent` type. This resolves the type error when passing an `APIGatewayProxyEvent` directly to the handler returned by `AwsLambdaReceiver`. + ## 5.0.0 ### Major Changes diff --git a/package-lock.json b/package-lock.json index de005a304..5a6059ddf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@slack/bolt", - "version": "5.0.0", + "version": "5.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@slack/bolt", - "version": "5.0.0", + "version": "5.0.1", "license": "MIT", "dependencies": { "@slack/logger": "^5.0.0", diff --git a/package.json b/package.json index 04a32c4bb..a96a86b9a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@slack/bolt", - "version": "5.0.0", + "version": "5.0.1", "description": "A framework for building Slack apps, fast.", "author": "Slack Technologies, LLC", "license": "MIT",