You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/RELEASE.CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,7 @@
1
+
### July 17, 2026
2
+
`2.12.0`
3
+
- Add `Lambda-Runtime-Invocation-Id` header support for cross-wiring protection. The RIC now echoes the invocation ID received from RAPID on `/next` back on `/response` and `/error`, enabling RAPID to detect and reject stale responses from timed-out invocations.
4
+
1
5
### May 13, 2026
2
6
`2.11.0`
3
7
- Update aws-lambda-java-serialization dependency to 1.4.1
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/AWSLambda.java
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/runtimeapi/LambdaRuntimeApiClient.java
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -34,15 +34,17 @@ public interface LambdaRuntimeApiClient {
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/runtimeapi/LambdaRuntimeApiClientImpl.java
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -34,6 +34,7 @@ public class LambdaRuntimeApiClientImpl implements LambdaRuntimeApiClient {
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/runtimeapi/NativeClient.java
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/java/com/amazonaws/services/lambda/runtime/api/client/runtimeapi/dto/InvocationRequest.java
+13Lines changed: 13 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,11 @@ public class InvocationRequest {
45
45
*/
46
46
privateStringtenantId;
47
47
48
+
/**
49
+
* The invocation ID for cross-wiring protection.
50
+
*/
51
+
privateStringinvocationId;
52
+
48
53
privatebyte[] content;
49
54
50
55
publicStringgetId() {
@@ -107,6 +112,14 @@ public void setTenantId(String tenantId) {
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/jni/com_amazonaws_services_lambda_runtime_api_client_runtimeapi_NativeClient.cpp
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/jni/com_amazonaws_services_lambda_runtime_api_client_runtimeapi_NativeClient.h
Copy file name to clipboardExpand all lines: aws-lambda-java-runtime-interface-client/src/main/jni/deps/aws-lambda-cpp-0.2.7/include/aws/lambda-runtime/runtime.h
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,11 @@ struct invocation_request {
66
66
*/
67
67
std::string tenant_id;
68
68
69
+
/**
70
+
* Invocation ID for cross-wiring protection.
71
+
*/
72
+
std::string invocation_id;
73
+
69
74
/**
70
75
* The number of milliseconds left before lambda terminates the current execution.
0 commit comments