Skip to content

Commit 3a1e088

Browse files
author
Davide Melfi
committed
chore: add introductory text
1 parent d3e846d commit 3a1e088

1 file changed

Lines changed: 16 additions & 1 deletion

File tree

lambda-runtime/CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/lambda_runtime-v1.1.0-rc1...lambda_runtime-v1.1.1) - 2026-03-11
10+
## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/v1.0.2...lambda_runtime-v1.1.1) - 2026-03-11
11+
12+
### Lambda Managed Instances
13+
14+
The runtime now supports Lambda Managed Instances via the `concurrency-tokio` feature flag (previously `experimental-concurrency`). Lambda Managed Instances allow multiple concurrent requests to be processed within a single execution environment. When `AWS_LAMBDA_MAX_CONCURRENCY` is set, the runtime spawns multiple independent long-poll workers to handle concurrent invocations. If the env var is unset or <= 1, it falls back to sequential behavior automatically — so the same handler works on both classic Lambda and Lambda Managed Instances. ([#1067](https://github.com/aws/aws-lambda-rust-runtime/pull/1067))
15+
16+
```toml
17+
[dependencies]
18+
lambda_runtime = { version = "1.1", features = ["concurrency-tokio"] }
19+
```
20+
21+
```rust
22+
lambda_runtime::run_concurrent(service_fn(my_handler)).await?;
23+
```
24+
25+
For a complete working example, see [examples/basic-lambda-concurrent](https://github.com/aws/aws-lambda-rust-runtime/tree/main/examples/basic-lambda-concurrent). For detailed guidance on building functions for multi-concurrency, including shared state patterns and database connection pools, see the [Rust runtime for Lambda Managed Instances](https://docs.aws.amazon.com/lambda/latest/dg/lambda-managed-instances-rust.html) documentation.
1126

1227
### Added
1328

0 commit comments

Comments
 (0)