mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
648 B
648 B
0.3.0
Breaking Changes
- The imports made available from
import pythonare no longer exposed underDataFlow::after doingimport semmle.python.dataflow.new.DataFlow, for example usingDataFlow::Addwill now cause a compile error.
Minor Analysis Improvements
The modeling of request.files in Flask has been fixed, so we now properly handle
assignments to local variables (such as files = request.files; files['key'].filename).
- Added taint propagation for
io.StringIOandio.BytesIO. This addition was originally submitted as part of an experimental query by @jorgectf.