Skip to content

Commit 00fef2c

Browse files
authored
Release runtime 0.14.0 with graceful shutdown hook (#991)
* Release runtime 0.14.0 with graceful shutdown hook lambda-runtime-api-clietn 0.12.0 lambda-runtime 0.14.0 lambda-http 0.15.0 lambda-extesnion 0.12.0 * Update lambda-extension version in lambda-runtime * Fix integration tests
1 parent 661cc26 commit 00fef2c

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build-integration-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ jobs:
3333
- name: Build Integration tests
3434
uses: ./.github/actions/rust-build
3535
with:
36-
package: lambda_integration_tests
36+
package: lambda-integration-tests
3737
toolchain: ${{ matrix.toolchain}}

lambda-extension/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda-extension"
3-
version = "0.11.0"
3+
version = "0.12.0"
44
edition = "2021"
55
rust-version = "1.81.0"
66
authors = [
@@ -26,7 +26,7 @@ http = { workspace = true }
2626
http-body-util = { workspace = true }
2727
hyper = { workspace = true, features = ["http1", "client", "server"] }
2828
hyper-util = { workspace = true }
29-
lambda_runtime_api_client = { version = "0.11", path = "../lambda-runtime-api-client" }
29+
lambda_runtime_api_client = { version = "0.12", path = "../lambda-runtime-api-client" }
3030
serde = { version = "1", features = ["derive"] }
3131
serde_json = "^1"
3232
tokio = { version = "1.0", features = [

lambda-http/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_http"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
authors = [
55
"David Calavera <[email protected]>",
66
"Harold Sun <[email protected]>",
@@ -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 = "0.13.0", path = "../lambda-runtime" }
42+
lambda_runtime = { version = "0.14.0", path = "../lambda-runtime" }
4343
mime = "0.3"
4444
percent-encoding = "2.2"
4545
pin-project-lite = { workspace = true }
@@ -58,7 +58,7 @@ features = ["alb", "apigw"]
5858
[dev-dependencies]
5959
axum-core = "0.4.3"
6060
axum-extra = { version = "0.9.2", features = ["query"] }
61-
lambda_runtime_api_client = { version = "0.11.1", path = "../lambda-runtime-api-client" }
61+
lambda_runtime_api_client = { version = "0.12.0", path = "../lambda-runtime-api-client" }
6262
log = "^0.4"
6363
maplit = "1.0"
6464
tokio = { version = "1.0", features = ["macros"] }

lambda-integration-tests/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "aws_lambda_rust_integration_tests"
2+
name = "lambda-integration-tests"
33
version = "0.1.0"
44
authors = ["Maxime David"]
55
edition = "2021"

lambda-runtime-api-client/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime_api_client"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
edition = "2021"
55
rust-version = "1.81.0"
66
authors = [

lambda-runtime/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "lambda_runtime"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
authors = [
55
"David Calavera <[email protected]>",
66
"Harold Sun <[email protected]>",
@@ -44,8 +44,8 @@ hyper-util = { workspace = true, features = [
4444
"http1",
4545
"tokio",
4646
] }
47-
lambda-extension = { version = "0.11.0", path = "../lambda-extension", default-features = false, optional = true }
48-
lambda_runtime_api_client = { version = "0.11.1", path = "../lambda-runtime-api-client", default-features = false }
47+
lambda-extension = { version = "0.12.0", path = "../lambda-extension", default-features = false, optional = true }
48+
lambda_runtime_api_client = { version = "0.12.0", path = "../lambda-runtime-api-client", default-features = false }
4949
miette = { version = "7.2.0", optional = true }
5050
opentelemetry-semantic-conventions = { version = "0.29", optional = true, features = ["semconv_experimental"] }
5151
pin-project = "1"

0 commit comments

Comments
 (0)