From 77159b49bd9593b00b83c9695ddf188982f83722 Mon Sep 17 00:00:00 2001 From: Davide Melfi Date: Fri, 8 May 2026 18:44:34 +0100 Subject: [PATCH] chore: release v1.2.0 --- lambda-events/CHANGELOG.md | 6 ++++++ lambda-events/Cargo.toml | 2 +- lambda-http/CHANGELOG.md | 14 ++++++++++++++ lambda-http/Cargo.toml | 6 +++--- lambda-runtime/CHANGELOG.md | 14 ++++++++++++++ lambda-runtime/Cargo.toml | 2 +- 6 files changed, 39 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..6006d019 100644 --- a/lambda-http/CHANGELOG.md +++ b/lambda-http/CHANGELOG.md @@ -7,6 +7,20 @@ 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)) + +### Other + +- Added `builders` pass-through feature to enable `aws_lambda_events/builders` ([#1146](https://github.com/aws/aws-lambda-rust-runtime/pull/1146)) + ## [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 bf7b31f3..3103d682 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 ", @@ -41,7 +41,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 } @@ -53,7 +53,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..d24217a9 100644 --- a/lambda-runtime/CHANGELOG.md +++ b/lambda-runtime/CHANGELOG.md @@ -7,6 +7,20 @@ 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)) + +### Other + +- Added `builders` pass-through feature to enable `aws_lambda_events/builders` ([#1146](https://github.com/aws/aws-lambda-rust-runtime/pull/1146)) + ## [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 ",