Compare commits
base: repos:391176706331d7800f660cdfe10518ed9e20fd70
repos:v0.55.1
repos:v0.55.0
repos:v0.54.0
repos:v0.53.0
repos:v0.52.0
repos:v0.51.0
repos:v0.50.0
repos:v0.49.1
repos:v0.49.0
repos:v0.48.0
repos:v0.47.0
repos:v0.46.0
repos:v0.45.0
repos:v0.44.0
repos:v0.43.0
repos:v0.42.0
repos:v0.41.1
repos:v0.41.0
repos:v0.40.6
repos:v0.40.5
repos:v0.40.4
repos:v0.40.3
repos:v0.40.2
repos:v0.40.1
repos:v0.40.0
repos:v0.39.0
repos:v0.38.0
repos:v0.37.0
repos:v0.36.0
repos:v0.35.0
repos:v0.34.0
repos:v0.33.0
repos:v0.32.0
repos:v0.31.0
repos:v0.30.0
repos:v0.29.0
repos:v0.28.0
repos:v0.27.0
repos:v0.26.0
repos:v0.25.0
repos:v0.24.0
repos:v0.23.0
repos:v0.22.0
repos:v0.21.0
repos:v0.20.0
repos:v0.19.0
repos:v0.18.0
repos:v0.17.0
repos:v0.16.0
repos:v0.15.0
repos:v0.14.0
repos:v0.13.0
repos:v0.12.0
repos:v0.11.0
repos:v0.10.0
repos:v0.9.0
repos:v0.8.0
repos:v0.7.0
repos:v0.6.0
repos:v0.5.3
repos:v0.5.2
repos:v0.5.1
repos:v0.5.0
repos:v0.4.0
repos:v0.3.0
repos:v0.2.0
repos:v0.1.0
..
compare: repos:main
repos:v0.55.1
repos:v0.55.0
repos:v0.54.0
repos:v0.53.0
repos:v0.52.0
repos:v0.51.0
repos:v0.50.0
repos:v0.49.1
repos:v0.49.0
repos:v0.48.0
repos:v0.47.0
repos:v0.46.0
repos:v0.45.0
repos:v0.44.0
repos:v0.43.0
repos:v0.42.0
repos:v0.41.1
repos:v0.41.0
repos:v0.40.6
repos:v0.40.5
repos:v0.40.4
repos:v0.40.3
repos:v0.40.2
repos:v0.40.1
repos:v0.40.0
repos:v0.39.0
repos:v0.38.0
repos:v0.37.0
repos:v0.36.0
repos:v0.35.0
repos:v0.34.0
repos:v0.33.0
repos:v0.32.0
repos:v0.31.0
repos:v0.30.0
repos:v0.29.0
repos:v0.28.0
repos:v0.27.0
repos:v0.26.0
repos:v0.25.0
repos:v0.24.0
repos:v0.23.0
repos:v0.22.0
repos:v0.21.0
repos:v0.20.0
repos:v0.19.0
repos:v0.18.0
repos:v0.17.0
repos:v0.16.0
repos:v0.15.0
repos:v0.14.0
repos:v0.13.0
repos:v0.12.0
repos:v0.11.0
repos:v0.10.0
repos:v0.9.0
repos:v0.8.0
repos:v0.7.0
repos:v0.6.0
repos:v0.5.3
repos:v0.5.2
repos:v0.5.1
repos:v0.5.0
repos:v0.4.0
repos:v0.3.0
repos:v0.2.0
repos:v0.1.0
1 Commits
3911767063
...
main
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
| 7d8a4b7ac1 |
fix(deps): update dependency astroid to <=4.1.1 (#562)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [astroid](https://github.com/pylint-dev/astroid) | `<=4.1.0` → `<=4.1.1` |  |  | --- ### Release Notes <details> <summary>pylint-dev/astroid (astroid)</summary> ### [`v4.1.1`](https://github.com/pylint-dev/astroid/blob/HEAD/ChangeLog#Whats-New-in-astroid-411) [Compare Source](https://github.com/pylint-dev/astroid/compare/v4.1.0...v4.1.1) \============================ Release date: TBA - Let `UnboundMethodModel` inherit from `FunctionModel` to improve inference of dunder methods for unbound methods. - Filter `Unknown` from `UnboundMethod` and `Super` special attribute lookup to prevent placeholder nodes from leaking during inference. ### [`v4.1.0`](https://github.com/pylint-dev/astroid/blob/HEAD/ChangeLog#Whats-New-in-astroid-410) [Compare Source](https://github.com/pylint-dev/astroid/compare/v4.0.4...v4.1.0) \============================ Release date: 2026-02-08 - Add support for equality constraints (`==`, `!=`) in inference. Closes [pylint-dev/pylint#3632](https://github.com/pylint-dev/pylint/issues/3632) Closes [pylint-dev/pylint#3633](https://github.com/pylint-dev/pylint/issues/3633) - Ensure `ast.JoinedStr` nodes are `Uninferable` when the `ast.FormattedValue` is `Uninferable`. This prevents `unexpected-keyword-arg` messages in Pylint where the `Uninferable` string appeared in function arguments that were constructed dynamically. Closes [pylint-dev/pylint#10822](https://github.com/pylint-dev/pylint/issues/10822) - Add support for type constraints (`isinstance(x, y)`) in inference. Closes [pylint-dev/pylint#1162](https://github.com/pylint-dev/pylint/issues/1162) Closes [pylint-dev/pylint#4635](https://github.com/pylint-dev/pylint/issues/4635) Closes [pylint-dev/pylint#10469](https://github.com/pylint-dev/pylint/issues/10469) - Make `type.__new__()` raise clear errors instead of returning `None` - Move object dunder methods from `FunctionModel` to `ObjectModel` to make them available on all object types, not just functions. Closes [#​2742](https://github.com/pylint-dev/astroid/issues/2742) Closes [#​2741](https://github.com/pylint-dev/astroid/issues/2741) Closes [pylint-dev/pylint#6094](https://github.com/pylint-dev/pylint/issues/6094) - `lineno` and `end_lineno` are now available on `Arguments`. - Add helper to iterate over all annotations nodes of function arguments, `Arguments.get_annotations()`. Refs [#​2860](https://github.com/pylint-dev/astroid/issues/2860) - Skip direct parent when determining the `Decorator` frame. Refs [pylint-dev/pylint#8425](https://github.com/pylint-dev/pylint/issues/8425) - Add simple command line interface for astroid to output generated AST. Use with `python -m astroid`. - Fix incorrect type inference for `super().method()` calls that return `Self`. Previously, astroid would infer the parent class type instead of the child class type, causing pylint E1101 false positives in method chaining scenarios. Closes [#​457](https://github.com/pylint-dev/astroid/issues/457) - Add missing `dtype` and `casting` parameters to `numpy.concatenate` brain. Closes [#​2870](https://github.com/pylint-dev/astroid/issues/2870) - Fix ability to detect .py modules inside PATH directories on Windows described by a UNC path with a trailing backslash (`\`) - Example: modutils.modpath\_from\_file(filename=r"\Mac\Code\tests\test\_resources.py", path=\["\mac\code"]) == \['tests', 'test\_resources'] - Fix `random.sample` inference crash when sequence contains uninferable elements. Closes [#​2518](https://github.com/pylint-dev/astroid/issues/2518) - Fix `random.sample` crash when cloning `ClassDef` or `FunctionDef` nodes. Closes [#​2923](https://github.com/pylint-dev/astroid/issues/2923) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4zMS4xIiwidXBkYXRlZEluVmVyIjoiNDMuMzEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsidHlwZS9kZXBlbmRlbmNpZXMiXX0=--> Reviewed-on: https://git.tainton.uk/repos/webexmemebot/pulls/562 Reviewed-by: Luke Tainton <luke@tainton.uk> Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk> |