Files
codeql/python/ql/lib/change-notes/released/0.4.0.md
Anders Schack-Mulligen 673355df65 Fix markdown lists
2022-05-25 10:02:48 +02:00

428 B

0.4.0

Breaking Changes

  • API::moduleImport no longer has any results for dotted names, such as API::moduleImport("foo.bar"). Using API::moduleImport("foo.bar").getMember("baz").getACall() previously worked if the Python code was from foo.bar import baz; baz(), but not if the code was import foo.bar; foo.bar.baz() -- we are making this change to ensure the approach that can handle all cases is always used.