From 2dc255f9c290d83e2eb8a49069cb2eb72dccc8ee Mon Sep 17 00:00:00 2001 From: Davide Melfi Date: Fri, 8 May 2026 01:36:45 +0100 Subject: [PATCH] chore: release v1.1.4 --- lambda-events/CHANGELOG.md | 6 ++++++ lambda-events/Cargo.toml | 2 +- lambda-http/CHANGELOG.md | 10 ++++++++++ lambda-http/Cargo.toml | 6 +++--- lambda-runtime/CHANGELOG.md | 10 ++++++++++ lambda-runtime/Cargo.toml | 2 +- 6 files changed, 31 insertions(+), 5 deletions(-) diff --git a/lambda-events/CHANGELOG.md b/lambda-events/CHANGELOG.md index 43c5b455..14fa9301 100644 --- a/lambda-events/CHANGELOG.md +++ b/lambda-events/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.1.3...aws_lambda_events-v1.2.0) - 2026-05-08 + +### Added + +- Add VPC Lattice as an upstream source for lambda-http ([#1136](https://github.com/aws/aws-lambda-rust-runtime/pull/1136)) + ## [1.1.3](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.1.2...aws_lambda_events-v1.1.3) - 2026-04-16 ### Other diff --git a/lambda-events/Cargo.toml b/lambda-events/Cargo.toml index c4a33de8..5afc35d6 100644 --- a/lambda-events/Cargo.toml +++ b/lambda-events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws_lambda_events" -version = "1.1.3" +version = "1.2.0" rust-version = "1.84.0" description = "AWS Lambda event definitions" authors = [ diff --git a/lambda-http/CHANGELOG.md b/lambda-http/CHANGELOG.md index bf2cbc9d..79af6a41 100644 --- a/lambda-http/CHANGELOG.md +++ b/lambda-http/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.1.3...lambda_http-v1.2.0) - 2026-05-08 + +### Added + +- Add VPC Lattice as an upstream source for lambda-http ([#1136](https://github.com/aws/aws-lambda-rust-runtime/pull/1136)) + +### Fixed + +- *(lambda-http)* into_api_gateway_v2_request joins cookies with "; " ([#1143](https://github.com/aws/aws-lambda-rust-runtime/pull/1143)) + ## [1.1.3](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.1.2...lambda_http-v1.1.3) - 2026-04-16 ### Other diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 15ecad36..02a855b0 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "1.1.3" +version = "1.2.0" authors = [ "David Calavera ", "Harold Sun ", @@ -40,7 +40,7 @@ http = { workspace = true } http-body = { workspace = true } http-body-util = { workspace = true } hyper = { workspace = true } -lambda_runtime = { version = "1.1.3", path = "../lambda-runtime", default-features = false} +lambda_runtime = { version = "1.2.0", path = "../lambda-runtime", default-features = false} mime = "0.3" percent-encoding = "2.2" pin-project-lite = { workspace = true } @@ -52,7 +52,7 @@ url = "2.2" [dependencies.aws_lambda_events] path = "../lambda-events" -version = "1.1" +version = "1.2" default-features = false features = ["alb", "apigw", "vpc_lattice"] diff --git a/lambda-runtime/CHANGELOG.md b/lambda-runtime/CHANGELOG.md index f7469fb4..6dffe149 100644 --- a/lambda-runtime/CHANGELOG.md +++ b/lambda-runtime/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.3...lambda_runtime-v1.2.0) - 2026-05-08 + +### Added + +- Add VPC Lattice as an upstream source for lambda-http ([#1136](https://github.com/aws/aws-lambda-rust-runtime/pull/1136)) + +### Fixed + +- *(lambda-http)* into_api_gateway_v2_request joins cookies with "; " ([#1143](https://github.com/aws/aws-lambda-rust-runtime/pull/1143)) + ## [1.1.3](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.2...lambda_runtime-v1.1.3) - 2026-04-16 ### Other diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 8e8e8c47..764a66c6 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime" -version = "1.1.3" +version = "1.2.0" authors = [ "David Calavera ", "Harold Sun ",