Skip to content

Commit 7647f04

Browse files
authored
chore: release lambda_runtime v1.1.1
1 parent 0aa6c8e commit 7647f04

8 files changed

Lines changed: 77 additions & 7 deletions

File tree

lambda-events/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/aws_lambda_events-v1.1.0...aws_lambda_events-v1.1.1) - 2026-03-12
11+
12+
### Other
13+
14+
- updated the following local packages: lambda_runtime

lambda-events/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "aws_lambda_events"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
rust-version = "1.84.0"
55
description = "AWS Lambda event definitions"
66
authors = [
@@ -137,4 +137,4 @@ builders = ["bon"]
137137
all-features = true
138138

139139
[dev-dependencies]
140-
lambda_runtime = { version = "1.1.0-rc1", path = "../lambda-runtime" }
140+
lambda_runtime = { version = "1.1.0-rc1.1", path = "../lambda-runtime" }

lambda-extension/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [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
11+
12+
### Other
13+
14+
- Make Telemetry API log record type generic ([#1098](https://github.com/aws/aws-lambda-rust-runtime/pull/1098))

lambda-extension/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda-extension"
3-
version = "1.0.2"
3+
version = "1.0.3"
44
edition = "2021"
55
rust-version = "1.84.0"
66
authors = [

lambda-http/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.1.0-rc1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_http-v1.1.0-rc1...lambda_http-v1.1.0-rc1.1) - 2026-03-12
11+
12+
### Other
13+
14+
- *(lambda-managed-instances)* warn on `run()` with `AWS_LAMBDA_MAX_CONCURRENCY, rename feature experimental-concurrency -> concurrency->tokio
15+
- disable default features of lambda-runtime ([#1093](https://github.com/aws/aws-lambda-rust-runtime/pull/1093))
16+
- *(deps)* update axum-extra requirement from 0.10.2 to 0.12.5 ([#1079](https://github.com/aws/aws-lambda-rust-runtime/pull/1079))

lambda-http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "1.1.0-rc1"
3+
version = "1.1.0-rc1.1"
44
authors = [
55
"David Calavera <dcalaver@amazon.com>",
66
"Harold Sun <sunhua@amazon.com>",
@@ -39,7 +39,7 @@ http = { workspace = true }
3939
http-body = { workspace = true }
4040
http-body-util = { workspace = true }
4141
hyper = { workspace = true }
42-
lambda_runtime = { version = "1.1.0-rc1", path = "../lambda-runtime", default-features = false}
42+
lambda_runtime = { version = "1.1.0-rc1.1", path = "../lambda-runtime", default-features = false}
4343
mime = "0.3"
4444
percent-encoding = "2.2"
4545
pin-project-lite = { workspace = true }
@@ -51,7 +51,7 @@ url = "2.2"
5151

5252
[dependencies.aws_lambda_events]
5353
path = "../lambda-events"
54-
version = "1.0"
54+
version = "1.1"
5555
default-features = false
5656
features = ["alb", "apigw"]
5757

lambda-runtime/CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [1.1.0-rc1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.0-rc1...lambda_runtime-v1.1.0-rc1.1) - 2026-03-12
11+
12+
### Added
13+
14+
- *(lambda-runtime)* log non-2xx Lambda Runtime API responses with status and body ([#1109](https://github.com/aws/aws-lambda-rust-runtime/pull/1109))
15+
16+
### Fixed
17+
18+
- *(test)* fix test_concurrent_structured_logging_isolation ([#1121](https://github.com/aws/aws-lambda-rust-runtime/pull/1121))
19+
20+
### Other
21+
22+
- Introducing Harness Testing ([#1103](https://github.com/aws/aws-lambda-rust-runtime/pull/1103))
23+
- add tokio_unstable to known cfgs to avoid linter warns
24+
- *(lambda-managed-instances)* warn on `run()` with `AWS_LAMBDA_MAX_CONCURRENCY, rename feature experimental-concurrency -> concurrency->tokio
25+
- Add builder pattern support for event response types ([#1090](https://github.com/aws/aws-lambda-rust-runtime/pull/1090))
26+
- verify request-ID isolation in concurrent exec ([#1086](https://github.com/aws/aws-lambda-rust-runtime/pull/1086))

lambda-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "1.1.0-rc1"
3+
version = "1.1.0-rc1.1"
44
authors = [
55
"David Calavera <dcalaver@amazon.com>",
66
"Harold Sun <sunhua@amazon.com>",

0 commit comments

Comments
 (0)