From 715f78b4d09a0c3d609efe9940085ee0a1d0a248 Mon Sep 17 00:00:00 2001 From: Alexander Thomas Date: Mon, 21 Sep 2020 10:41:46 +0000 Subject: [PATCH] [release] Prepare CHANGELOG.md for 2.10 stable Change-Id: I89fb513e170f6b989eeec53057367edd2eb79505 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/163584 Reviewed-by: William Hesse --- CHANGELOG.md | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98626d0f60a..643c77144c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,23 @@ -## 2.10.0 +## 2.11.0 + +### Core libraries + +### Dart VM + +### Dart2JS + +### Tools + +#### Linter + +Updated the Linter to `0.1.119`, which includes: + +* Fixed `close_sinks` to handle `this`-prefixed property accesses. +* New lint: `unnecessary_null_checks`. +* Fixed `unawaited_futures` to handle `Future` subtypes. +* New lint: `avoid_type_to_string`. + +## 2.10.0 - 2020-09-28 ### Core libraries @@ -8,7 +27,7 @@ to cancel outgoing HTTP requests and stop following IO operations. * A validation check is added to `path` of class `Cookie`. Having characters ranging from 0x00 to 0x1f and 0x3b (";") will lead to a `FormatException`. -* The `HttpClient` and `HttpServer` clasess now have a 1 MiB limit for the +* The `HttpClient` and `HttpServer` classes now have a 1 MiB limit for the total size of the HTTP headers when parsing a request or response, instead of the former 8 KiB limit for each header name and value. This limit cannot be configured at this time. @@ -54,12 +73,8 @@ #### Linter -Updated the Linter to `0.1.119`, which includes: +Updated the Linter to `0.1.118`, which includes: -* Fixed `close_sinks` to handle `this`-prefixed property accesses. -* New lint: `unnecessary_null_checks`. -* Fixed `unawaited_futures` to handle `Future` subtypes. -* New lint: `avoid_type_to_string`. * New lint: `unnecessary_nullable_for_final_variable_declarations`. * Fixed NPE in `prefer_asserts_in_initializer_lists`. * Fixed range error in `unnecessary_string_escapes`.