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

Commit 186be59

Browse files
authored
1.5.0 (#2681)
* 1.5.0 * reverted parens fix
1 parent 31674eb commit 186be59

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 1.5.0
2+
3+
- (internal) migrated to `SecurityLintCode` instead of deprecated
4+
`SecurityLintCodeWithUniqueName`
5+
- (internal) fixed `avoid_types_as_parameter_names` to skip field formal
6+
parameters
7+
- fixed false positives in `prefer_interpolation_to_compose_strings` where
8+
the left operand is not a String
9+
- fixed false positives in `only_throw_errors` for misidentified type
10+
variables
11+
- new lint: `depend_on_referenced_packages`
12+
- update `avoid_returning_null_for_future` to skip checks for null-safe
13+
libraries
14+
- new lint: `use_test_throws_matchers`
15+
- relax `sort_child_properties_last` to accept closures after child
16+
- performance improvements for `prefer_contains` and `prefer_is_empty`
17+
- new lint: `noop_primitive_operations`
18+
- mark `avoid_web_libraries_in_flutter` as stable
19+
- new lint: `prefer_final_parameters`
20+
- update `prefer_initializing_formals` to allow assignments where identifier
21+
names don't match
22+
123
# 1.4.0
224

325
- `directives_ordering` now checks ordering of `package:` imports in code

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.4.0';
6+
const String version = '1.5.0';

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: linter
2-
version: 1.4.0
2+
version: 1.5.0
33

44
description: >-
55
The implementation of the lint rules supported by the analyzer framework.

0 commit comments

Comments
 (0)