From bf1dcc0b2a15edcc5d38e39f8c9f297df89d5cbe Mon Sep 17 00:00:00 2001 From: Davide Melfi Date: Thu, 9 Jul 2026 15:30:16 +0100 Subject: [PATCH] chore: release --- lambda-extension/CHANGELOG.md | 6 ++++++ lambda-extension/Cargo.toml | 2 +- lambda-http/CHANGELOG.md | 6 ++++++ lambda-http/Cargo.toml | 4 ++-- lambda-runtime-api-client/CHANGELOG.md | 6 ++++++ lambda-runtime/CHANGELOG.md | 6 ++++++ lambda-runtime/Cargo.toml | 4 ++-- 7 files changed, 29 insertions(+), 5 deletions(-) diff --git a/lambda-extension/CHANGELOG.md b/lambda-extension/CHANGELOG.md index 03df231f..5a3a435c 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.1.0](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda-extension-v1.0.4...lambda-extension-v1.1.0) - 2026-07-09 + +### Added + +- add SnapStart support via SnapStartResource trait ([#1150](https://github.com/aws/aws-lambda-rust-runtime/pull/1150)) + ## [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 diff --git a/lambda-extension/Cargo.toml b/lambda-extension/Cargo.toml index 6c8a4bd1..15ef3be8 100644 --- a/lambda-extension/Cargo.toml +++ b/lambda-extension/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda-extension" -version = "1.0.4" +version = "1.1.0" edition = "2021" rust-version = "1.84.0" authors = [ diff --git a/lambda-http/CHANGELOG.md b/lambda-http/CHANGELOG.md index 6659bad0..2a803242 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.3.0](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.2.1...lambda_http-v1.3.0) - 2026-07-09 + +### Added + +- add SnapStart support via SnapStartResource trait ([#1150](https://github.com/aws/aws-lambda-rust-runtime/pull/1150)) + ## [1.2.1](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.2.0...lambda_http-v1.2.1) - 2026-05-25 ### Other diff --git a/lambda-http/Cargo.toml b/lambda-http/Cargo.toml index 18339818..0ebaa9e9 100644 --- a/lambda-http/Cargo.toml +++ b/lambda-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_http" -version = "1.2.1" +version = "1.3.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.2.1", path = "../lambda-runtime", default-features = false} +lambda_runtime = { version = "1.3.0", path = "../lambda-runtime", default-features = false} mime = "0.3" percent-encoding = "2.2" pin-project-lite = { workspace = true } diff --git a/lambda-runtime-api-client/CHANGELOG.md b/lambda-runtime-api-client/CHANGELOG.md index 0899561f..9a455845 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.1.0](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime_api_client-v1.0.3...lambda_runtime_api_client-v1.1.0) - 2026-07-09 + +### Added + +- add SnapStart support via SnapStartResource trait ([#1150](https://github.com/aws/aws-lambda-rust-runtime/pull/1150)) + ### Added - `PooledClient`: a Runtime API client that can rebuild its connection pool after a diff --git a/lambda-runtime/CHANGELOG.md b/lambda-runtime/CHANGELOG.md index 3ec3ab6c..33ccd05b 100644 --- a/lambda-runtime/CHANGELOG.md +++ b/lambda-runtime/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.0](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.2.1...lambda_runtime-v1.3.0) - 2026-07-09 + +### Added + +- add SnapStart support via SnapStartResource trait ([#1150](https://github.com/aws/aws-lambda-rust-runtime/pull/1150)) + ## [1.2.1](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.2.0...lambda_runtime-v1.2.1) - 2026-05-25 ### Other diff --git a/lambda-runtime/Cargo.toml b/lambda-runtime/Cargo.toml index 68ca9039..ac8270f1 100644 --- a/lambda-runtime/Cargo.toml +++ b/lambda-runtime/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lambda_runtime" -version = "1.2.1" +version = "1.3.0" authors = [ "David Calavera ", "Harold Sun ", @@ -41,7 +41,7 @@ http = { workspace = true } 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-extension = { version = "1.1", path = "../lambda-extension", default-features = false, optional = true } lambda_runtime_api_client = { version = "1.1.0", path = "../lambda-runtime-api-client", default-features = false } miette = { version = "7.2.0", optional = true } opentelemetry-semantic-conventions = { version = "0.32", optional = true, features = ["semconv_experimental"] }