Skip to content

Commit 3620110

Browse files
committed
Merge branch 'main' into tausbn/python-add-support-for-python-3.12-type-syntax
2 parents 216cd88 + 9bdc2d1 commit 3620110

File tree

211 files changed

+1058
-427
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+1058
-427
lines changed

cpp/ql/lib/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.12.0
2+
3+
### Breaking Changes
4+
5+
* The expressions `AssignPointerAddExpr` and `AssignPointerSubExpr` are no longer subtypes of `AssignBitwiseOperation`.
6+
7+
### Minor Analysis Improvements
8+
9+
* The "Returning stack-allocated memory" (`cpp/return-stack-allocated-memory`) query now also detects returning stack-allocated memory allocated by calls to `alloca`, `strdupa`, and `strndupa`.
10+
* Added models for `strlcpy` and `strlcat`.
11+
* Added models for the `sprintf` variants from the `StrSafe.h` header.
12+
* Added SQL API models for `ODBC`.
13+
* Added taint models for `realloc` and related functions.
14+
115
## 0.11.0
216

317
### Breaking Changes

cpp/ql/lib/change-notes/2023-10-30-realloc-flow.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/lib/change-notes/2023-10-31-assign-pointer-add-sub-expr.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/lib/change-notes/2023-10-31-odbc-models.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/lib/change-notes/2023-11-08-strsafe-models.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/lib/change-notes/2023-11-10-strlcpy-strlcat-models.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/lib/change-notes/2023-11-15-return-stack-allocated-memory.md

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## 0.12.0
2+
3+
### Breaking Changes
4+
5+
* The expressions `AssignPointerAddExpr` and `AssignPointerSubExpr` are no longer subtypes of `AssignBitwiseOperation`.
6+
7+
### Minor Analysis Improvements
8+
9+
* The "Returning stack-allocated memory" (`cpp/return-stack-allocated-memory`) query now also detects returning stack-allocated memory allocated by calls to `alloca`, `strdupa`, and `strndupa`.
10+
* Added models for `strlcpy` and `strlcat`.
11+
* Added models for the `sprintf` variants from the `StrSafe.h` header.
12+
* Added SQL API models for `ODBC`.
13+
* Added taint models for `realloc` and related functions.

cpp/ql/lib/codeql-pack.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
lastReleaseVersion: 0.11.0
2+
lastReleaseVersion: 0.12.0

cpp/ql/lib/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: codeql/cpp-all
2-
version: 0.11.1-dev
2+
version: 0.12.1-dev
33
groups: cpp
44
dbscheme: semmlecode.cpp.dbscheme
55
extractor: cpp

0 commit comments

Comments
 (0)