Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions lambda-events/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [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

### Other

- updated the following local packages: lambda_runtime
4 changes: 2 additions & 2 deletions lambda-events/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aws_lambda_events"
version = "1.1.0"
version = "1.1.1"
rust-version = "1.84.0"
description = "AWS Lambda event definitions"
authors = [
Expand Down Expand Up @@ -137,4 +137,4 @@ builders = ["bon"]
all-features = true

[dev-dependencies]
lambda_runtime = { version = "1.1.0-rc1", path = "../lambda-runtime" }
lambda_runtime = { version = "1.1.0-rc1.1", path = "../lambda-runtime" }
14 changes: 14 additions & 0 deletions lambda-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [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

### Other

- Make Telemetry API log record type generic ([#1098](https://github.com/aws/aws-lambda-rust-runtime/pull/1098))
2 changes: 1 addition & 1 deletion lambda-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda-extension"
version = "1.0.2"
version = "1.0.3"
edition = "2021"
rust-version = "1.84.0"
authors = [
Expand Down
16 changes: 16 additions & 0 deletions lambda-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [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

### Other

- *(lambda-managed-instances)* warn on `run()` with `AWS_LAMBDA_MAX_CONCURRENCY, rename feature experimental-concurrency -> concurrency->tokio
- disable default features of lambda-runtime ([#1093](https://github.com/aws/aws-lambda-rust-runtime/pull/1093))
- *(deps)* update axum-extra requirement from 0.10.2 to 0.12.5 ([#1079](https://github.com/aws/aws-lambda-rust-runtime/pull/1079))
6 changes: 3 additions & 3 deletions lambda-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_http"
version = "1.1.0-rc1"
version = "1.1.0-rc1.1"
authors = [
"David Calavera <dcalaver@amazon.com>",
"Harold Sun <sunhua@amazon.com>",
Expand Down Expand Up @@ -39,7 +39,7 @@ http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true }
lambda_runtime = { version = "1.1.0-rc1", path = "../lambda-runtime", default-features = false}
lambda_runtime = { version = "1.1.0-rc1.1", path = "../lambda-runtime", default-features = false}
mime = "0.3"
percent-encoding = "2.2"
pin-project-lite = { workspace = true }
Expand All @@ -51,7 +51,7 @@ url = "2.2"

[dependencies.aws_lambda_events]
path = "../lambda-events"
version = "1.0"
version = "1.1"
default-features = false
features = ["alb", "apigw"]

Expand Down
26 changes: 26 additions & 0 deletions lambda-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [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

### Added

- *(lambda-runtime)* log non-2xx Lambda Runtime API responses with status and body ([#1109](https://github.com/aws/aws-lambda-rust-runtime/pull/1109))

### Fixed

- *(test)* fix test_concurrent_structured_logging_isolation ([#1121](https://github.com/aws/aws-lambda-rust-runtime/pull/1121))

### Other

- Introducing Harness Testing ([#1103](https://github.com/aws/aws-lambda-rust-runtime/pull/1103))
- add tokio_unstable to known cfgs to avoid linter warns
- *(lambda-managed-instances)* warn on `run()` with `AWS_LAMBDA_MAX_CONCURRENCY, rename feature experimental-concurrency -> concurrency->tokio
- Add builder pattern support for event response types ([#1090](https://github.com/aws/aws-lambda-rust-runtime/pull/1090))
- verify request-ID isolation in concurrent exec ([#1086](https://github.com/aws/aws-lambda-rust-runtime/pull/1086))
2 changes: 1 addition & 1 deletion lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_runtime"
version = "1.1.0-rc1"
version = "1.1.0-rc1.1"
authors = [
"David Calavera <dcalaver@amazon.com>",
"Harold Sun <sunhua@amazon.com>",
Expand Down
Loading