From e1a8269ab9c6e325d556d423ebd48ad2790cecf7 Mon Sep 17 00:00:00 2001 From: pq Date: Wed, 24 Nov 2021 17:05:12 +0000 Subject: [PATCH] fix linter entry for 2.15 Change-Id: I71dba6fbbe2a2b4fbda0703aed40a42a6b8f4eac Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/221166 Reviewed-by: Brian Wilkerson Commit-Queue: Phil Quitslund --- CHANGELOG.md | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b65a8fe3ee9..f39f8d8b721 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,17 @@ [an issue]: https://github.com/dart-lang/sdk/issues/new +#### Linter + +Updated the Linter to `1.15.0`, which includes changes that +- adds new lint: `use_decorated_box`. +- adds new lint: `no_leading_underscores_for_library_prefixes`. +- adds new lint: `no_leading_underscores_for_local_identifiers`. +- adds new lint: `secure_pubspec_urls`. +- adds new lint: `sized_box_shrink_expand`. +- adds new lint: `avoid_final_parameters`. +- improves docs for `omit_local_variable_types`. + ## 2.15.0 ### Language @@ -415,14 +426,7 @@ them, you must set the lower bound on the SDK constraint for your package to #### Linter -Updated the Linter to `1.15.0`, which includes changes that -- adds new lint: `use_decorated_box`. -- adds new lint: `no_leading_underscores_for_library_prefixes`. -- adds new lint: `no_leading_underscores_for_local_identifiers`. -- adds new lint: `secure_pubspec_urls`. -- adds new lint: `sized_box_shrink_expand`. -- adds new lint: `avoid_final_parameters`. -- improves docs for `omit_local_variable_types`. +Updated the Linter to `1.14.0`, which includes changes that - fix `omit_local_variable_types` to not flag a local type that is required for inference. - allow `while (true) { ... }` in `literal_only_boolean_expressions`.