Skip to content

Commit 5a67806

Browse files
chore(release-next): release 3.0.0-alpha.6
1 parent 01fcde9 commit 5a67806

2 files changed

Lines changed: 52 additions & 1 deletion

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.0.0-alpha.5"
2+
".": "3.0.0-alpha.6"
33
}

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,56 @@
11
# Changelog
22

3+
## [3.0.0-alpha.6](https://github.com/Leberkas-org/TurboHTTP/compare/v3.0.0-alpha.5...v3.0.0-alpha.6) (2026-06-23)
4+
5+
6+
### Features
7+
8+
* **client:** forward 1xx informational responses to caller ([0f4627e](https://github.com/Leberkas-org/TurboHTTP/commit/0f4627e9e32992357efafc9be406b6d4f5571aae))
9+
* **h1-server:** add chunked trailer section encoding to ChunkedFramingHelper ([da0b1ba](https://github.com/Leberkas-org/TurboHTTP/commit/da0b1ba58dac21890894d35825fb2b69c2550dac))
10+
* **h1-server:** integrate trailer emission into Http11ServerStateMachine ([c175b18](https://github.com/Leberkas-org/TurboHTTP/commit/c175b18db9f0400da9df54aed2d54f60458ec4a7))
11+
* **h1-server:** support 1xx informational responses via SendInformational ([ae4aa17](https://github.com/Leberkas-org/TurboHTTP/commit/ae4aa1792b214a769978a7166e3458bd85759c7e))
12+
* **h2-server:** support 1xx informational responses ([a104f9c](https://github.com/Leberkas-org/TurboHTTP/commit/a104f9ceef165813d5e6e8f839ce091a71286cad))
13+
* **h3-server:** add EncodeTrailers to Http3ServerEncoder ([ba7d586](https://github.com/Leberkas-org/TurboHTTP/commit/ba7d5867691efc44cafc0707ed45818d24cff91f))
14+
* **h3-server:** integrate trailer emission into Http3ServerSessionManager ([8a50fd2](https://github.com/Leberkas-org/TurboHTTP/commit/8a50fd2dddd6b2b899c4f3cb6393de5248b603b3))
15+
* **h3-server:** support 1xx informational responses ([9b4caab](https://github.com/Leberkas-org/TurboHTTP/commit/9b4caab62a10a6874f407dbfc9c99f6b37c25b75))
16+
* Improve HTTP trailers and informational responses ([816cbf7](https://github.com/Leberkas-org/TurboHTTP/commit/816cbf79532effab9ee6328b3c1f2f139c10ad6a))
17+
* Rename TurboResponseHeaderDictionary to TurboHeaderDictionary ([b69079d](https://github.com/Leberkas-org/TurboHTTP/commit/b69079d22d21c9cfe7fda6a5e754d6d0f177cd62))
18+
* **server:** add IHttpRequestTrailersFeature support ([f3fca70](https://github.com/Leberkas-org/TurboHTTP/commit/f3fca70a1487204f1a142ae1ed661bfe14bb0cbb))
19+
* **server:** add SetReadOnly freeze semantics to TurboResponseHeaderDictionary ([366de03](https://github.com/Leberkas-org/TurboHTTP/commit/366de03318ec87edc5f70c0f872fb060e7d26bfb))
20+
* **server:** add TurboInformationalResponseFeature for 1xx responses ([985ee8e](https://github.com/Leberkas-org/TurboHTTP/commit/985ee8e4908fbb4272e5c11c0941e6dc19ecafe8))
21+
* **server:** auto-send 100 Continue for Expect: 100-continue requests ([0b0c00f](https://github.com/Leberkas-org/TurboHTTP/commit/0b0c00f8a3bd0a28263b3caca58f5a22a46bf456))
22+
23+
24+
### Bug Fixes
25+
26+
* **client:** add MaxConcurrentStreams defense-in-depth warning in H2/H3 EncodeRequest ([98b9ac7](https://github.com/Leberkas-org/TurboHTTP/commit/98b9ac7bbc0ca95fc718989afeb376973df84523))
27+
* **client:** dispose response when PendingRequest version has advanced ([d476f97](https://github.com/Leberkas-org/TurboHTTP/commit/d476f972ff7f019b8d8d343a48feb9bfc46b5375))
28+
* **client:** revert response dispose — BroadcastHub shares objects ([4cc2306](https://github.com/Leberkas-org/TurboHTTP/commit/4cc23066575087b42c44e74402826d83c1b7ee79))
29+
* **cookies:** enforce __Host- and __Secure- prefix rules (RFC 6265bis) ([9abed3a](https://github.com/Leberkas-org/TurboHTTP/commit/9abed3aa6a25d5d4e68a1675c19b40e61e434da1))
30+
* **h1-client:** consume 101 in 1xx block instead of delivering as final response ([4f7a0d8](https://github.com/Leberkas-org/TurboHTTP/commit/4f7a0d8a3415a67ee2121e2b4e960982641deea9))
31+
* **h1-client:** exclude 101 Switching Protocols from 1xx forwarding ([2541222](https://github.com/Leberkas-org/TurboHTTP/commit/25412228478962252883a09d1666c8bd8970f059))
32+
* **h2-server:** prevent stream hang when all trailers are filtered + add SetReadOnly freeze ([4455ac8](https://github.com/Leberkas-org/TurboHTTP/commit/4455ac8e401354af5f90bf805644d9ed84105826))
33+
* **h2/h3:** guard StackStreamStatePool against double-return ([abba72d](https://github.com/Leberkas-org/TurboHTTP/commit/abba72d3436e7c96b986edb2b156111f5a5356d0))
34+
* **h3-client:** handle 1xx informational responses without closing stream ([68423e5](https://github.com/Leberkas-org/TurboHTTP/commit/68423e5ccdd61750e8e872d77cfea5d8dea615f2))
35+
* **h3-client:** update edge-case tests for 1xx behavior + status validation ([a3af20b](https://github.com/Leberkas-org/TurboHTTP/commit/a3af20bf1fa117486d77e389b0cfea25fd74b2af))
36+
* **quic:** only flush streams that actually wrote to the pipe (not opening-buffer) ([01fcde9](https://github.com/Leberkas-org/TurboHTTP/commit/01fcde9f8b9af7bfc1a3678181559eae589ebf5c))
37+
* **quic:** return pooled MultiplexedData after write + treat QuicException as graceful close ([5af56a5](https://github.com/Leberkas-org/TurboHTTP/commit/5af56a51feb416ef4f0e7674f669e7dfce69d053))
38+
* **server:** cap _pendingSources queue in GroupByRequestEndpointStage ([c44a6fe](https://github.com/Leberkas-org/TurboHTTP/commit/c44a6fe9f488c2aca81b0bc516ec09e9e1d6e8c1))
39+
* **test:** tighten Trailer announcement header assertion in Http11ServerTrailerSpec ([e482e5c](https://github.com/Leberkas-org/TurboHTTP/commit/e482e5c4e3a51d5bbe915b387e3c32c77eb20f59))
40+
* **test:** update H1.1 stage test for 1xx forwarding behavior ([fea9d9d](https://github.com/Leberkas-org/TurboHTTP/commit/fea9d9d1c50483287971bc5970b58ae93cb4fed3))
41+
* **test:** update Http3ServerTrailerSpec to use MultiplexedData.Rent() ([af9f6ca](https://github.com/Leberkas-org/TurboHTTP/commit/af9f6ca94ab10611130aa1dbc935412a09bd1104))
42+
43+
44+
### Performance
45+
46+
* **h3:** batch DATA frames into single TransportBuffer (match H2 pattern) ([c8d88fc](https://github.com/Leberkas-org/TurboHTTP/commit/c8d88fc67dc9c847adb021d02b2182e94658bead))
47+
* **h3:** eliminate timer key strings, skip LinkedCTS, deduplicate correlation map ([44a492c](https://github.com/Leberkas-org/TurboHTTP/commit/44a492c4e340fc9dfa248a478b08477fdc7f48dc))
48+
* **h3:** pool MultiplexedData like TransportData (ObjectPool<256>) ([39f3e86](https://github.com/Leberkas-org/TurboHTTP/commit/39f3e864419fb9b81c23513bc32a31f25e6bd43e))
49+
* **quic:** adaptive read buffer 4KB-128KB for QUIC direct reads ([5d9642c](https://github.com/Leberkas-org/TurboHTTP/commit/5d9642c2196498650183850636de726233276ab3))
50+
* **quic:** cache read failure/success lambdas and body pump delegates ([550254f](https://github.com/Leberkas-org/TurboHTTP/commit/550254fb1e16ecbcc5414713fe6bb26bf0c663c9))
51+
* **quic:** defer PipeWriter flush until batch complete (write coalescing) ([508a27d](https://github.com/Leberkas-org/TurboHTTP/commit/508a27df7e3a8e4d9b787428f98af7838d062b36))
52+
* **quic:** pool QuicStreamState objects (ObjectPool<256>) ([4951b73](https://github.com/Leberkas-org/TurboHTTP/commit/4951b7317dff20b9346e849c526a6e8a110bd013))
53+
354
## [3.0.0-alpha.5](https://github.com/Leberkas-org/TurboHTTP/compare/v3.0.0-alpha.4...v3.0.0-alpha.5) (2026-06-22)
455

556

0 commit comments

Comments
 (0)