From 3778e7936555164c97400e8f81167a5fd1ad3f53 Mon Sep 17 00:00:00 2001 From: pq Date: Mon, 14 Mar 2022 15:56:38 +0000 Subject: [PATCH] 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 Commit-Queue: Phil Quitslund --- CHANGELOG.md | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bf63c920b9..be5981deb52 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 @@ in 2018, as it doesn't work with any Dart 2.x release. #### 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.