Skip to content

Commit

Permalink
Bump patch version of lambda-http (#556)
Browse files Browse the repository at this point in the history
This commit updates the version of `lambda-http` to 0.7.1. The crate now
depends on `aws-lambda-events` 0.7.2 or higher whereas it previously
depended on that of ^0.7. This crate currently does not compile against
`aws-lambda-events` 0.7.0 or 0.7.1. In `aws-lambda-events` 0.7.0, the module
`query_map` is private when it should be public for `lambda-http` to compile.
Similarly, in `aws-lambda-events` 0.7.1, the trait bound `QueryMap: FromStr`
is not satisfied so `lambda-http` does not compile either.

Co-authored-by: Saito <[email protected]>
  • Loading branch information
ysaito1001 and Saito authored Oct 28, 2022
1 parent 1fc2ccb commit 8010e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lambda-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_http"
version = "0.7.0"
version = "0.7.1"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>"
Expand Down Expand Up @@ -38,7 +38,7 @@ url = "2.2.2"
percent-encoding = "2.2.0"

[dependencies.aws_lambda_events]
version = "^0.7"
version = "^0.7.2"
default-features = false
features = ["alb", "apigw"]

Expand Down

0 comments on commit 8010e4f

Please sign in to comment.