Skip to content

Commit bf23fef

Browse files
committed
chore: adding thanks and link
1 parent 7647f04 commit bf23fef

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

lambda-runtime/CHANGELOG.md

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

88
## [Unreleased]
99

10+
<<<<<<< HEAD
1011
## [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
12+
=======
13+
## [1.1.1](https://github.com/aws/aws-lambda-rust-runtime/compare/v1.0.2...lambda_runtime-v1.1.1) - 2026-03-11
14+
15+
Thank you to all the contributors who helped make this release possible. We appreciate your time, effort, and passion for the Rust Lambda community. ❤️
16+
17+
### Lambda Managed Instances
18+
19+
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))
20+
21+
```toml
22+
[dependencies]
23+
lambda_runtime = { version = "1.1", features = ["concurrency-tokio"] }
24+
```
25+
26+
```rust
27+
lambda_runtime::run_concurrent(service_fn(my_handler)).await?;
28+
```
29+
30+
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.
31+
>>>>>>> f0f4e6c (chore: adding thanks and link)
32+
33+
We would like also to involve the community in a broader discussion about improving our approach on multiconcurrency. You can find the discussion in [#1120](https://github.com/aws/aws-lambda-rust-runtime/issues/1120)
1134

1235
### Added
1336

0 commit comments

Comments
 (0)