mirror of
https://github.com/github/codeql.git
synced 2026-02-11 20:51:06 +01:00
1.6 KiB
1.6 KiB
8.0.0
Breaking Changes
- Support for Kotlin 1.6.x and 1.7.x series has been dropped
New Features
- Kotlin versions up to 2.3.0 are now supported.
Minor Analysis Improvements
- Added support for Struts 7.x package names in the Struts framework library. The library now recognizes both the legacy
com.opensymphony.xwork2package names (Struts 2.x-6.x) and the neworg.apache.struts2package names (Struts 7.x+), maintaining backward compatibility while enabling analysis of code using the latest Struts versions. - The query
java/unreleased-lockno longer applies to lock types with names ending in "Pool", as these typically manage a collection of resources and thelockandunlockmethods typically only lock one resource at a time. This may lead to a reduction in false positives. - The predicate
SummarizedCallable.propagatesFlowhas been extended with the columnsProvenance pandboolean isExact, and as a consequence the predicatesSummarizedCallable.hasProvenanceandSummarizedCallable.hasExactModelhave been removed. - When Maven-compatible private package registries are configured for an organisation for Default Setup, CodeQL will now configure Maven to also use these as plugin repositories. CodeQL previously already configured Maven to use them as regular package repositories. This should now allow Maven plugins to be obtained from private registries.
Bug Fixes
- Kotlin: The Kotlin extractor now registers as the last IR generation extension, ensuring that code generated by other compiler plugins (such as kotlinx.serialization) is correctly captured.