Release preparation for version 2.24.3

This commit is contained in:
github-actions[bot]
2026-03-02 13:23:40 +00:00
parent 600f585a31
commit 7795badd18
175 changed files with 448 additions and 151 deletions

View File

@@ -1,3 +1,18 @@
## 7.0.0
### Breaking Changes
- The `Metrics` library no longer contains code that depends on the points-to analysis. The removed functionality has instead been moved to the `LegacyPointsTo` module, to classes like `ModuleMetricsWithPointsTo` etc. If you depend on any of these classes, you must now remember to import `LegacyPointsTo`, and use the appropriate types in order to use the points-to-based functionality.
### Major Analysis Improvements
- The CodeQL Python libraries have been updated to be compatible with overlay evaluation. This should result in a significant speedup on analyses for which a base database already exists. Note that it may be necessary to add `overlay[local?] module;` to user-managed libraries that extend classes that are now marked as `overlay[local]`.
### Minor Analysis Improvements
* Added new full SSRF sanitization barrier from the new AntiSSRF library.
* When a guard such as `isSafe(x)` is defined, we now also automatically handle `isSafe(x) == true` and `isSafe(x) != false`.
## 6.1.1
### Minor Analysis Improvements
@@ -7,7 +22,7 @@
### Bug Fixes
- Using `=` as a fill character in a format specifier (e.g `f"{x:=^20}"`) now no longer results in a syntax error during parsing.
- Using `=` as a fill character in a format specifier (e.g. `f"{x:=^20}"`) now no longer results in a syntax error during parsing.
## 6.1.0

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* When a guard such as `isSafe(x)` is defined, we now also automatically handle `isSafe(x) == true` and `isSafe(x) != false`.

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* Added new full SSRF sanitization barrier from the new AntiSSRF library.

View File

@@ -1,5 +0,0 @@
---
category: majorAnalysis
---
- The CodeQL Python libraries have been updated to be compatible with overlay evaluation. This should result in a significant speedup on analyses for which a base database already exists. Note that it may be necessary to add `overlay[local?] module;` to user-managed libraries that extend classes that are now marked as `overlay[local]`.

View File

@@ -1,5 +0,0 @@
---
category: breaking
---
- The `Metrics` library no longer contains code that depends on the points-to analysis. The removed functionality has instead been moved to the `LegacyPointsTo` module, to classes like `ModuleMetricsWithPointsTo` etc. If you depend on any of these classes, you must now remember to import `LegacyPointsTo`, and use the appropriate types in order to use the points-to-based functionality.

View File

@@ -0,0 +1,14 @@
## 7.0.0
### Breaking Changes
- The `Metrics` library no longer contains code that depends on the points-to analysis. The removed functionality has instead been moved to the `LegacyPointsTo` module, to classes like `ModuleMetricsWithPointsTo` etc. If you depend on any of these classes, you must now remember to import `LegacyPointsTo`, and use the appropriate types in order to use the points-to-based functionality.
### Major Analysis Improvements
- The CodeQL Python libraries have been updated to be compatible with overlay evaluation. This should result in a significant speedup on analyses for which a base database already exists. Note that it may be necessary to add `overlay[local?] module;` to user-managed libraries that extend classes that are now marked as `overlay[local]`.
### Minor Analysis Improvements
* Added new full SSRF sanitization barrier from the new AntiSSRF library.
* When a guard such as `isSafe(x)` is defined, we now also automatically handle `isSafe(x) == true` and `isSafe(x) != false`.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 6.1.1
lastReleaseVersion: 7.0.0

View File

@@ -1,5 +1,5 @@
name: codeql/python-all
version: 6.1.2-dev
version: 7.0.0
groups: python
dbscheme: semmlecode.python.dbscheme
extractor: python

View File

@@ -1,3 +1,7 @@
## 1.7.8
No user-facing changes.
## 1.7.7
No user-facing changes.

View File

@@ -0,0 +1,3 @@
## 1.7.8
No user-facing changes.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.7.7
lastReleaseVersion: 1.7.8

View File

@@ -1,5 +1,5 @@
name: codeql/python-queries
version: 1.7.8-dev
version: 1.7.8
groups:
- python
- queries