From 79db1008cdb2949649c4b1d868440ffc55518222 Mon Sep 17 00:00:00 2001 From: Zichang Guo Date: Wed, 13 May 2020 21:29:17 +0000 Subject: [PATCH] [dart:io] Update httpparser size limit in CHANGELOG Previous change has made a 8K size limit on http parser. It should be put into CHANGELOG.md. https://github.com/dart-lang/sdk/commit/36496047b4fc095013f29be351ae9021eb7cd832 Bug: https://github.com/flutter/flutter/issues/56580 Change-Id: I3e06848ff018ddacd022877b16ec69dc88f8a24a Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/147322 Reviewed-by: Lasse R.H. Nielsen Commit-Queue: Zichang Guo --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0259219dd3..a233ee18d85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -286,6 +286,10 @@ minor breaking changes: `runZonedGuarded()` functions from `dart:async` directly if needing to specify those. +* Class `HttpClient` and `HttpServer`, when receiving `HttpRequest` or + `HttpClientResponse`, will now put a 8K size limit on its header fields and + values. + [#33501]: https://github.com/dart-lang/sdk/issues/33501 [#40702]: https://github.com/dart-lang/sdk/issues/40702 [#40483]: https://github.com/dart-lang/sdk/issues/40483