summaryrefslogtreecommitdiff
path: root/ChangeLog
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix constructors of ``Arguments``Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``Keyword``Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``AnnAssign``Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``UnaryOp``Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``Compare``Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``Starred``Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``AugAssign`` (#2082)Daniël van Noord2023-04-031-0/+1
| | | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* | Fix constructors of ``Attribute``, ``DelAttr`` and ``AssignAttr`` (#2084)Daniël van Noord2023-04-031-0/+3
| |
* | Fix constructors of ``Subscript`` (#2083)Daniël van Noord2023-04-031-0/+1
| |
* | Mandatory fields for Assign (#2061)Nick Drozd2023-04-031-0/+1
| | | | | | Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
* | Fix constructors of ``AssignName`` (#2077)Daniël van Noord2023-04-031-0/+1
| | | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* | Fix constructors of ``DelName`` (#2078)Daniël van Noord2023-04-031-0/+1
| | | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* | Fix constructors of ``BinOp`` (#2081)Daniël van Noord2023-04-031-0/+1
| |
* | Fix constructors of ``Delete`` (#2079)Daniël van Noord2023-04-031-0/+1
| |
* | Merge branch 'maintenance/2.15.x' following 2.15.2 releasePierre Sassoulas2023-04-031-1/+7
|\ \ | |/
| * Bump astroid to 2.15.2, update changelogv2.15.2Pierre Sassoulas2023-04-021-1/+7
| |
| * Support attrs decorators even if they are imported from attrs (#2059) (#2073)Pierre Sassoulas2023-04-011-0/+3
| | | | | | | | | | | | | | | | Use inference to determine membership of ``attr(s)`` module Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> (cherry picked from commit 489c90fb29970d9362f21f26247bd45a39832dcd) Co-authored-by: alm <alonme@users.noreply.github.com>
* | Clean up the constructors of ``If`` and ``IfExp`` (#2076)Daniël van Noord2023-04-021-0/+7
| |
* | Remove dependency on ``wrapt``Daniël van Noord2023-04-011-0/+2
| |
* | Remove `cached` decoratorJacob Walls2023-04-011-0/+3
| | | | | | | | Use `@cached_property` from the stdlib
* | Support attrs decorators even if they are imported from attrs (#2059)alm2023-04-011-0/+3
| | | | | | | | | | Use inference to determine membership of ``attr(s)`` module Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
* | [PyCQA migration] Upgrade links to the repositories in code and docPierre Sassoulas2023-03-291-257/+257
|/
* Bump astroid to 2.15.1, update changelogv2.15.1Pierre Sassoulas2023-03-261-1/+7
|
* Restore setting a Call as a base for classes using `six.with_metaclass` ↵github-actions[bot]2023-03-261-0/+6
| | | | | | | | | | | | | | (#2049) (#2067) Harden support for using enums as metaclasses. Fixes the crash in PyCQA/pylint#5935 by adopting the check for not-none bases as in ClassDef._inferred_bases without recausing the false positive reported in PyCQA/pylint#7506, which requires correct bases. (cherry picked from commit b5ebf994a1c6039fa8ca4706889e007700cdf41a) Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
* Bump astroid to 2.15.0, update changelog (#2045)v2.15.0Pierre Sassoulas2023-03-061-1/+17
| | | Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
* Clear context cache in AstroidManager.clear_cache()Jacob Walls2023-03-041-0/+4
|
* Infer returns from match cases (#2042)Jacob Walls2023-03-031-0/+4
|
* Fix `are_exclusive` function for walrus operator (#2023)ostr000002023-02-131-0/+3
|
* Update ``FormattedValue.postinit`` and its brain (#2029)Daniël van Noord2023-02-131-0/+5
|
* Replace and deprecate modutils.is_standard_module() (#2015)Avram Lubkin2023-02-121-0/+6
|
* Merge branch 'maintenance/2.14.x' following 2.14.2 releasePierre Sassoulas2023-02-121-1/+2
|\
| * Bump astroid to 2.14.2, update changelogv2.14.2Pierre Sassoulas2023-02-121-1/+4
| |
| * Fix '_infer_str_format_call' crash when the string it analyses are ↵github-actions[bot]2023-02-121-0/+3
| | | | | | | | | | | | | | | | | | uninferable (#2024) (#2025) Closes PyCQA/pylint#8109 (cherry picked from commit ccbdd3c128af9a6e8f9018fb8db5991a28c72db0) Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
* | Fix '_infer_str_format_call' crash when the string it analyses are ↵Pierre Sassoulas2023-02-121-0/+3
| | | | | | | | | | | | | | | | uninferable (#2024) Closes PyCQA/pylint#8109
* | Add support for keyword only argument default valuesDaniël van Noord2023-02-051-0/+3
| |
* | Create ``UninferableBase``Daniël van Noord2023-02-051-0/+5
| |
* | Add support for custom import hooks (#1752)Daniël van Noord2023-02-051-0/+3
|/ | | Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
* Release 2.14.1 (#2004)v2.14.1Marc Mueller2023-01-311-2/+7
|
* Merge remote-tracking branch 'upstream/maintenance/2.13.x' into ↵Marc Mueller2023-01-311-0/+7
|\ | | | | | | maintenance/2.14.x
| * Release 2.13.5 (#2003)v2.13.5Marc Mueller2023-01-311-2/+7
| |
| * [Backport 2.13.x] Revert CallContext change since it caused a RecursionError ↵Marc Mueller2023-01-311-0/+2
| | | | | | | | | | | | | | regression (#2000) (#2002) This reverts commit a0d219cb3403cda3338a14ce67a60954b4ff5cd7 (#1982). (cherry picked from commit 72f5afb8c3a15114f8033a51b390f845b49a209c)
* | Revert CallContext change since it caused a RecursionError regression ↵github-actions[bot]2023-01-311-0/+2
| | | | | | | | | | | | | | | | | | (#2000) (#2001) This reverts commit a0d219cb3403cda3338a14ce67a60954b4ff5cd7 (#1982). (cherry picked from commit 72f5afb8c3a15114f8033a51b390f845b49a209c) Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* | Release 2.14.0 (#1998)v2.14.0Marc Mueller2023-01-311-5/+15
| |
* | Merge remote-tracking branch 'upstream/maintenance/2.13.x'Marc Mueller2023-01-311-1/+7
|\ \ | |/
| * Bump astroid to 2.13.4, update changelog (#1997)v2.13.4Marc Mueller2023-01-311-1/+7
| |
| * Add Lock to multiprocessing (#1976) (#1996)github-actions[bot]2023-01-311-0/+4
| | | | | | | | | | | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com> (cherry picked from commit 635a211296ae8dbafbd9b94b56fe5472f7534c8a) Co-authored-by: Dani Alcala <112832187+clavedeluna@users.noreply.github.com>
| * Preserve parent CallContext when inferring nested functions (#1982) (#1983)github-actions[bot]2023-01-291-1/+4
| | | | | | | | | | (cherry picked from commit a0d219cb3403cda3338a14ce67a60954b4ff5cd7) Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
| * Fix PyPy ClassDef.fromlino with decorators (#1979) (#1980)github-actions[bot]2023-01-281-0/+2
| | | | | | | | | | (cherry picked from commit dfd88f5edc636df80c8cabd61a6b8d6bc8746ca9) Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
| * Fix issues with `typing_extensions.TypeVar` (#1973) (#1974)github-actions[bot]2023-01-221-0/+2
| | | | | | | | | | | | | | Co-authored-by: Daniël van Noord <13665637+DanielNoord@users.noreply.github.com> Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> (cherry picked from commit 0c9ab0fe56703fa83c73e514a1020d398d23fa7f) Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>
* | Add Lock to multiprocessing (#1976)Dani Alcala2023-01-311-0/+4
| | | | | | | | Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Marc Mueller <30130371+cdce8p@users.noreply.github.com>