Skip to content

Commit 9a72d8a

Browse files
committed
release 9.1.8
Signed-off-by: neo <[email protected]>
1 parent 067b12d commit 9a72d8a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Change log
22

3-
### 9.1.8 (3/7/2025 - )
3+
### 9.1.8 (3/7/2025 - 4/24/2025)
44

55
* sse: removed default rate limit group ServerSentEventConfig.SSE_CONNECT_GROUP ("sse:connect")
66
* sse: support @LimitRate on sse connect or class

core-ng/src/main/java/core/framework/http/HTTPResponse.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package core.framework.http;
22

3+
import javax.annotation.Nullable;
34
import java.nio.charset.Charset;
45
import java.util.Map;
56

@@ -12,6 +13,7 @@ public final class HTTPResponse {
1213
public final int statusCode;
1314
public final byte[] body;
1415
public final Map<String, String> headers; // headers key is case insensitive
16+
@Nullable
1517
public final ContentType contentType;
1618

1719
public HTTPResponse(int statusCode, Map<String, String> headers, byte[] body) {

0 commit comments

Comments
 (0)