Skip to content

Release runtime 0.14.0 with graceful shutdown hook #991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 16, 2025
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/build-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ jobs:
- name: Build Integration tests
uses: ./.github/actions/rust-build
with:
package: lambda_integration_tests
package: lambda-integration-tests
toolchain: ${{ matrix.toolchain}}
4 changes: 2 additions & 2 deletions lambda-extension/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda-extension"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
rust-version = "1.81.0"
authors = [
Expand All @@ -26,7 +26,7 @@ http = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true, features = ["http1", "client", "server"] }
hyper-util = { workspace = true }
lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client" }
lambda_runtime_api_client = { version = "0.12", path = "../lambda-runtime-api-client" }
serde = { version = "1", features = ["derive"] }
serde_json = "^1"
tokio = { version = "1.0", features = [
Expand Down
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 = "0.14.0"
version = "0.15.0"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
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 = "0.13.0", path = "../lambda-runtime" }
lambda_runtime = { version = "0.14.0", path = "../lambda-runtime" }
mime = "0.3"
percent-encoding = "2.2"
pin-project-lite = { workspace = true }
Expand All @@ -58,7 +58,7 @@ features = ["alb", "apigw"]
[dev-dependencies]
axum-core = "0.4.3"
axum-extra = { version = "0.9.2", features = ["query"] }
lambda_runtime_api_client = { version = "0.11.1", path = "../lambda-runtime-api-client" }
lambda_runtime_api_client = { version = "0.12.0", path = "../lambda-runtime-api-client" }
log = "^0.4"
maplit = "1.0"
tokio = { version = "1.0", features = ["macros"] }
2 changes: 1 addition & 1 deletion lambda-integration-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "aws_lambda_rust_integration_tests"
name = "lambda-integration-tests"
version = "0.1.0"
authors = ["Maxime David"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion lambda-runtime-api-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_runtime_api_client"
version = "0.11.1"
version = "0.12.0"
edition = "2021"
rust-version = "1.81.0"
authors = [
Expand Down
6 changes: 3 additions & 3 deletions lambda-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lambda_runtime"
version = "0.13.0"
version = "0.14.0"
authors = [
"David Calavera <[email protected]>",
"Harold Sun <[email protected]>",
Expand Down Expand Up @@ -44,8 +44,8 @@ hyper-util = { workspace = true, features = [
"http1",
"tokio",
] }
lambda-extension = { version = "0.11.0", path = "../lambda-extension", default-features = false, optional = true }
lambda_runtime_api_client = { version = "0.11.1", path = "../lambda-runtime-api-client", default-features = false }
lambda-extension = { version = "0.12.0", path = "../lambda-extension", default-features = false, optional = true }
lambda_runtime_api_client = { version = "0.12.0", path = "../lambda-runtime-api-client", default-features = false }
miette = { version = "7.2.0", optional = true }
opentelemetry-semantic-conventions = { version = "0.29", optional = true, features = ["semconv_experimental"] }
pin-project = "1"
Expand Down
Loading