fix misplaced linter change entries for 2.17
See: https://github.com/dart-lang/sdk/commit/75e03d78751ef83cbd434105386f9c88ac018869#commitcomment-68437878
Change-Id: I37e17fec16c7b76df390421f61ba16a8ea24cdc1
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/237100
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6bf63c92..be5981de 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -101,6 +101,23 @@
[web] A web app that uses only core Dart libraries.
```
+#### Linter
+
+Updated the Linter to `1.19.2`, which includes changes that
+
+- adds new lint: `use_super_initializers`.
+- adds new lint: `use_enums`.
+- adds new lint: `use_colored_box`.
+- improves performance for `sort_constructors`.
+- improves docs for `always_use_package_imports`,
+ `avoid_print`, and `avoid_relative_lib_imports` .
+- updates `avoid_void_async` to skip `main` functions.
+- updates `prefer_final_parameters` to not super on super params.
+- updates lints for enhanced-enums and super-initializer language
+ features.
+- updates `unnecessary_late` to report on variable names.
+- marks `null_check_on_nullable_type_parameter` stable.
+
## 2.16.1 - 2022-02-09
This is a patch release that fixes an AOT precompiler crash when building some
@@ -183,20 +200,8 @@
#### Linter
-Updated the Linter to `1.19.2`, which includes changes that
+Updated the Linter to `1.18.0`, which includes changes that
-- adds new lint: `use_super_initializers`.
-- adds new lint: `use_enums`.
-- adds new lint: `use_colored_box`.
-- improves performance for `sort_constructors`.
-- improves docs for `always_use_package_imports`,
- `avoid_print`, and `avoid_relative_lib_imports` .
-- updates `avoid_void_async` to skip `main` functions.
-- updates `prefer_final_parameters` to not super on super params.
-- updates lints for enhanced-enums and super-initializer language
- features.
-- updates `unnecessary_late` to report on variable names.
-- marks `null_check_on_nullable_type_parameter` stable.
- extends `camel_case_types` to cover enums.
- fixes `no_leading_underscores_for_local_identifiers` to not
mis-flag field formal parameters with default values.