From b2f7d5082efac9fcc601fc16d2dbab98c48d2d7d Mon Sep 17 00:00:00 2001 From: David Calavera Date: Fri, 25 Feb 2022 13:12:59 -0800 Subject: [PATCH 1/2] Fix issue parsing WebSocket requests. Allow patch versions of aws_lambda_events. Signed-off-by: David Calavera --- lambda-http/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 8b1d9285..127a50bd 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -17,7 +17,7 @@ travis-ci = { repository = "awslabs/aws-lambda-rust-runtime" } maintenance = { status = "actively-developed" } [dependencies] -aws_lambda_events = { version = "0.6", default-features = false, features = ["alb", "apigw"]} +aws_lambda_events = { version = "^0.6", default-features = false, features = ["alb", "apigw"]} base64 = "0.13.0" bytes = "1" http = "0.2" From 85184400c448366576b5c73b54121c4d5bed4d5b Mon Sep 17 00:00:00 2001 From: David Calavera Date: Fri, 25 Feb 2022 13:26:10 -0800 Subject: [PATCH 2/2] Update lambda_http version to release a patch. Signed-off-by: David Calavera --- lambda-http/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 127a50bd..11783a7f 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "0.5.0" +version = "0.5.1" authors = ["Doug Tangren"] edition = "2018" description = "Application Load Balancer and API Gateway event types for AWS Lambda"