diff --git a/lambda-events/CHANGELOG.md b/lambda-events/CHANGELOG.md index f0be5d12..c3cd99d7 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.1.2](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.1.1...aws_lambda_events-v1.1.2) - 2026-03-19 + +### Fixed + +- fix handling of null groupConfiguration ([#1130](https://github.com/aws/aws-lambda-rust-runtime/pull/1130)) + ## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.0.3...aws_lambda_events-v1.1.1) - 2026-03-11 ### Added diff --git a/lambda-events/Cargo.toml b/lambda-events/Cargo.toml index 8dc8c987..0de79e3c 100644 --- a/lambda-events/Cargo.toml +++ b/lambda-events/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aws_lambda_events" -version = "1.1.1" +version = "1.1.2" rust-version = "1.84.0" description = "AWS Lambda event definitions" authors = [ diff --git a/lambda-extension/CHANGELOG.md b/lambda-extension/CHANGELOG.md index d0796f03..03df231f 100644 --- a/lambda-extension/CHANGELOG.md +++ b/lambda-extension/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.4](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda-extension-v1.0.3...lambda-extension-v1.0.4) - 2026-03-19 + +### Other + +- updated the following local packages: lambda_runtime_api_client + ## [1.0.3](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda-extension-v1.0.2...lambda-extension-v1.0.3) - 2026-03-12 ### Added diff --git a/lambda-extension/Cargo.toml b/lambda-extension/Cargo.toml index 3fc1065b..c319bd8f 100644 --- a/lambda-extension/Cargo.toml +++ b/lambda-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda-extension" -version = "1.0.3" +version = "1.0.4" edition = "2021" rust-version = "1.84.0" authors = [ @@ -25,7 +25,7 @@ http = { workspace = true } http-body-util = { workspace = true } hyper = { workspace = true, features = ["http1", "client", "server"] } hyper-util = { workspace = true } -lambda_runtime_api_client = { version = "1.0.2", path = "../lambda-runtime-api-client" } +lambda_runtime_api_client = { version = "1.0.3", path = "../lambda-runtime-api-client" } serde = { version = "1", features = ["derive"] } serde_json = "^1" tokio = { version = "1.0", features = [ diff --git a/lambda-http/CHANGELOG.md b/lambda-http/CHANGELOG.md index 780d93e3..279edc43 100644 --- a/lambda-http/CHANGELOG.md +++ b/lambda-http/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.1.2](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.1.1...lambda_http-v1.1.2) - 2026-03-19 + +### Other + +- updated the following local packages: lambda_runtime_api_client, lambda_runtime + ## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/v1.0.2...lambda_http-v1.1.1) - 2026-03-11 ### Added diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 0964a894..1f378a5b 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "1.1.1" +version = "1.1.2" authors = [ "David Calavera ", "Harold Sun ", @@ -39,7 +39,7 @@ http = { workspace = true } http-body = { workspace = true } http-body-util = { workspace = true } hyper = { workspace = true } -lambda_runtime = { version = "1.1.1", path = "../lambda-runtime", default-features = false} +lambda_runtime = { version = "1.1.2", path = "../lambda-runtime", default-features = false} mime = "0.3" percent-encoding = "2.2" pin-project-lite = { workspace = true } @@ -59,7 +59,7 @@ features = ["alb", "apigw"] axum-core = "0.5.4" axum-extra = { version = "0.12.5", features = ["query"] } -lambda_runtime_api_client = { version = "1.0.2", path = "../lambda-runtime-api-client" } +lambda_runtime_api_client = { version = "1.0.3", path = "../lambda-runtime-api-client" } log = "^0.4" maplit = "1.0" diff --git a/lambda-runtime-api-client/CHANGELOG.md b/lambda-runtime-api-client/CHANGELOG.md index 0cf90051..c5657238 100644 --- a/lambda-runtime-api-client/CHANGELOG.md +++ b/lambda-runtime-api-client/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.3](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime_api_client-v1.0.2...lambda_runtime_api_client-v1.0.3) - 2026-03-19 + +### Other + +- release ([#1118](https://github.com/aws/aws-lambda-rust-runtime/pull/1118)) + ## [1.0.2](https://github.com/aws/aws-lambda-rust-runtime/compare/v1.0.2...lambda_runtime_api_client-v1.0.2) - 2026-01-06 ### Added diff --git a/lambda-runtime-api-client/Cargo.toml b/lambda-runtime-api-client/Cargo.toml index 41821a44..ec4ee2d6 100644 --- a/lambda-runtime-api-client/Cargo.toml +++ b/lambda-runtime-api-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime_api_client" -version = "1.0.2" +version = "1.0.3" edition = "2021" rust-version = "1.84.0" authors = [ diff --git a/lambda-runtime/CHANGELOG.md b/lambda-runtime/CHANGELOG.md index cdfc39f1..397db443 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.1.2](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.1...lambda_runtime-v1.1.2) - 2026-03-19 + +### Fixed + +- fix handling of null groupConfiguration ([#1130](https://github.com/aws/aws-lambda-rust-runtime/pull/1130)) + +### Other + +- release ([#1118](https://github.com/aws/aws-lambda-rust-runtime/pull/1118)) + ## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/v1.0.2...lambda_runtime-v1.1.1) - 2026-03-11 Thank you to all the contributors who helped make this release possible. We appreciate your time, effort, and passion for the Rust Lambda community. ❤️ diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 9b7596d4..5c1b31e0 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime" -version = "1.1.1" +version = "1.1.2" authors = [ "David Calavera ", "Harold Sun ", @@ -42,7 +42,7 @@ http-body-util = { workspace = true } http-serde = { workspace = true } hyper = { workspace = true, features = ["http1", "client"] } lambda-extension = { version = "1.0", path = "../lambda-extension", default-features = false, optional = true } -lambda_runtime_api_client = { version = "1.0.2", path = "../lambda-runtime-api-client", default-features = false } +lambda_runtime_api_client = { version = "1.0.3", path = "../lambda-runtime-api-client", default-features = false } miette = { version = "7.2.0", optional = true } opentelemetry-semantic-conventions = { version = "0.31", optional = true, features = ["semconv_experimental"] } pin-project = "1"