Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit 4305b93

Browse files
authored
1.23.0 (#3362)
1 parent d4202e5 commit 4305b93

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# 1.23.0
2+
3+
- fixed `no_leading_underscores_for_local_identifiers`
4+
to lint local function declarations
5+
- fixed `avoid_init_to_null` to correctly handle super
6+
initializing defaults that are non-null
7+
- updated `no_leading_underscores_for_local_identifiers`
8+
to allow identifiers with just underscores
9+
- fixed `flutter_style_todos` to support usernames that
10+
start with a digit
11+
- updated `require_trailing_commas` to handle functions
12+
in asserts and multi-line strings
13+
- updated `unsafe_html` to allow assignments to
14+
`img.src`
15+
- fixed `unnecessary_null_checks` to properly handle map
16+
literal entries
17+
118
# 1.22.0
219

320
- fixed false positives for `unnecessary_getters_setters`

lib/src/version.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
/// Package version. Synchronized w/ pubspec.yaml.
6-
const String version = '1.22.0';
6+
const String version = '1.23.0';

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: linter
2-
version: 1.22.0
2+
version: 1.23.0
33

44
description: >-
55
The implementation of the lint rules supported by the analyzer framework.
@@ -12,7 +12,7 @@ environment:
1212
sdk: '>=2.15.0 <3.0.0'
1313

1414
dependencies:
15-
analyzer: ^3.4.1
15+
analyzer: ^4.0.0
1616
args: ^2.0.0
1717
collection: ^1.15.0
1818
glob: ^2.0.0

0 commit comments

Comments
 (0)