mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
949 B
949 B
0.1.0
Breaking Changes
- The recently added flow-state versions of
isBarrierIn,isBarrierOut,isSanitizerIn, andisSanitizerOutin the data flow and taint tracking libraries have been removed.
Deprecated APIs
- Queries importing a data-flow configuration from
semmle.python.security.dataflowshould ensure that the imported file ends withQuery, and only import its top-level module. For example, a query that usedCommandInjection::Configurationfromsemmle.python.security.dataflow.CommandInjectionshould from now useConfigurationfromsemmle.python.security.dataflow.CommandInjectionQueryinstead.
Major Analysis Improvements
- Added data-flow for Django ORM models that are saved in a database (no
models.ForeignKeysupport).
Minor Analysis Improvements
- Improved modeling of Flask
Responseobjects, so passing a response body with the keyword argumentresponseis now recognized.