Add analyzer entries for Dart 3.7

Change-Id: I8f48ce1be0d880a390b78b493c8713fe25bc5e1c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/403640
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Reviewed-by: Phil Quitslund <pquitslund@google.com>
Commit-Queue: Samuel Rawlins <srawlins@google.com>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2ef801d..01e0d69 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -59,11 +59,43 @@
   and with a `Flexible` widget.
 - Offer an assist to "inline" an else-block's inner if-statement with the
   else-block to read `else if`.
+- Add an additional fix to import an unknown prefixed identifier by updating
+  the `show` combinator on an existing import.
+- Add a fix to import an unknown prefixed identifier by adding an
+  import directive with the given prefix.
+- Add a fix to import an unknown prefixed identifier by removing a `hide`
+  combinator.
+- Add a fix to import an unknown identifier by adding an import directive with a
+  `show` combinator, and optionally a prefix.
+- Code completion now suggests instance variables when completing inside the
+  initializer of a _late_ field.
+- Assists and quick fixes that add a const keyword now consider the
+  `prefer_const_declarations` lint rule, prefering to add `const` to a variable
+  declaration rather than the initial value.
+- Add a fix to add a missing `on` keyword in an extension declaration.
+- Add a fix to wrap an ambiguous property access or method call in an extension
+  override.
   (Thanks [@FMorschel](https://github.com/FMorschel) for the above enhancements!
-- Add the experimental `specify_nonobvious_property_types` lint rule.
-- Add the experimental `omit_obvious_property_types` lint rule.
-- Remove the `package_api_docs` lint rule.
-- Remove the `unsafe_html` lint rule.
+- The 'sort members' command now considers the `sort_constructors_first` lint
+  rule.
+- The 'extract method' refactoring now uses generic method syntax for
+  function-typed parameters.
+- Add quick fixes for more than 30 diagnostics.
+- Add the [`strict_top_level_inference`] lint rule.
+- Add the [`unnecessary_underscores`][] lint rule.
+- Add the experimental [`specify_nonobvious_property_types`][] lint rule.
+- Add the experimental [`omit_obvious_property_types`][] lint rule.
+- Add the experimental [`unsafe_variance`][] lint rule.
+- Remove the [`package_api_docs`][] lint rule.
+- Remove the [`unsafe_html`][] lint rule.
+
+[`strict_top_level_inference`]: https://dart.dev/tools/linter-rules/strict_top_level_inference
+[`unnecessary_underscores`]: https://dart.dev/lints/unnecessary_underscores
+[`specify_nonobvious_property_types`]: https://dart.dev/tools/linter-rules/specify_nonobvious_property_types
+[`omit_obvious_property_types`]: https://dart.dev/tools/linter-rules/omit_obvious_property_types
+[`unsafe_variance`]: https://dart.dev/tools/linter-rules/unsafe_variance
+[`package_api_docs`]: https://dart.dev/tools/linter-rules/package_api_docs
+[`unsafe_html`]: https://dart.dev/tools/linter-rules/unsafe_html
 
 #### Dart format