summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authororSolocate <38433858+orSolocate@users.noreply.github.com>2022-02-02 00:01:21 +0200
committerGitHub <noreply@github.com>2022-02-01 23:01:21 +0100
commit2d560189f1e2050ce022ec48981cce1f7a88b4d9 (patch)
treed7f64b569fa2acecce3f8a54850897136ec30c6b /ChangeLog
parentf7ba0dcfce82dbbd3ef16e3c3a63e67f5f2d823d (diff)
downloadpylint-git-2d560189f1e2050ce022ec48981cce1f7a88b4d9.tar.gz
Add `iterating-modified-list` checker for modified lists (#5628)
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 7148e1606..996675cde 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,11 @@ Release date: TBA
..
Put new features here and also in 'doc/whatsnew/2.13.rst'
+* Add ``modified-iterating-list``, ``modified-iterating-dict`` and ``modified-iterating-set``,
+ emitted when items are added to or removed from respectively a list, dictionary or
+ set being iterated through.
+
+ Closes #5348
* Fixed crash from ``arguments-differ`` and ``arguments-renamed`` when methods were
defined outside the top level of a class.