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
* fix: Use single value headers for HTTP API response (#377)
Parametrized the use of the single value headers for the response writer to support the v2 proxy schema for HTTP API
* fix: Updated HTTP API handler constructor (#377)
Changed default httpApiV2 constructor for the handler in all the framework implementations
* fix: Switched to non-mime encoder for respponse (#339)
Copy file name to clipboardExpand all lines: aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/servlet/AwsProxyHttpServletResponseWriter.java
Copy file name to clipboardExpand all lines: aws-serverless-java-container-core/src/main/java/com/amazonaws/serverless/proxy/internal/servlet/ServletLambdaContainerHandlerBuilder.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ public Builder defaultProxy() {
Copy file name to clipboardExpand all lines: aws-serverless-java-container-jersey/src/main/java/com/amazonaws/serverless/proxy/jersey/JerseyLambdaContainerHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ public static JerseyLambdaContainerHandler<HttpApiV2ProxyRequest, AwsProxyRespon
Copy file name to clipboardExpand all lines: aws-serverless-java-container-spark/src/main/java/com/amazonaws/serverless/proxy/spark/SparkLambdaContainerHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ public static SparkLambdaContainerHandler<HttpApiV2ProxyRequest, AwsProxyRespons
Copy file name to clipboardExpand all lines: aws-serverless-java-container-springboot2/src/test/java/com/amazonaws/serverless/proxy/spring/ServletAppTest.java
+15-2
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,7 @@
23
23
importjava.util.Collection;
24
24
importjava.util.stream.Collectors;
25
25
26
-
importstaticorg.junit.Assert.assertEquals;
27
-
importstaticorg.junit.Assert.assertNotNull;
26
+
importstaticorg.junit.Assert.*;
28
27
29
28
@RunWith(Parameterized.class)
30
29
publicclassServletAppTest {
@@ -192,4 +191,18 @@ public void springExceptionMapping_throw404Ex_expectMappedTo404() {
Copy file name to clipboardExpand all lines: aws-serverless-java-container-struts2/src/main/java/com/amazonaws/serverless/proxy/struts2/Struts2LambdaContainerHandler.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ public static Struts2LambdaContainerHandler<HttpApiV2ProxyRequest, AwsProxyRespo
0 commit comments