diff --git a/python/ql/lib/change-notes/2026-03-05-ignore-type-overloaded-methods-during-resolution.md b/python/ql/lib/change-notes/2026-03-05-ignore-type-overloaded-methods-during-resolution.md new file mode 100644 index 00000000000..001b46a0adb --- /dev/null +++ b/python/ql/lib/change-notes/2026-03-05-ignore-type-overloaded-methods-during-resolution.md @@ -0,0 +1,5 @@ +--- +category: minorAnalysis +--- + +- The call graph resolution no longer considers methods marked using [`@typing.overload`](https://typing.python.org/en/latest/spec/overload.html#overloads) as valid targets. This ensures that only the method that contains the actual implementation gets resolved as a target.