Skip to content

Commit 8e325ea

Browse files
committed
Add change notes
1 parent dcdb529 commit 8e325ea

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

change-notes/1.24/analysis-cpp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ The following changes in version 1.24 affect C/C++ analysis in all applications.
2626

2727
## Changes to libraries
2828

29-
* The data-flow library has been improved when flow through functions needs to be
30-
combined with both taint tracking and flow through fields allowing more flow
31-
to be tracked. This affects and improves some security queries, which may
32-
report additional results.
29+
* The data-flow library has been improved, which affects and improves some security queries. The improvements are:
30+
- Track flow through functions that combine taint tracking with flow through fields.
31+
- Track flow through clone-like functions, that is, functions that read contents of a field from a
32+
parameter and stores the value in the field of a returned object.
3333
* Created the `semmle.code.cpp.models.interfaces.Allocation` library to model allocation such as `new` expressions and calls to `malloc`. This in intended to replace the functionality in `semmle.code.cpp.commons.Alloc` with a more consistent and useful interface.
3434
* Created the `semmle.code.cpp.models.interfaces.Deallocation` library to model deallocation such as `delete` expressions and calls to `free`. This in intended to replace the functionality in `semmle.code.cpp.commons.Alloc` with a more consistent and useful interface.
3535
* The new class `StackVariable` should be used in place of `LocalScopeVariable`

change-notes/1.24/analysis-csharp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ The following changes in version 1.24 affect C# analysis in all applications.
2929

3030
## Changes to libraries
3131

32-
* The data-flow library has been improved when flow through methods needs to be
33-
combined with both taint tracking and flow through fields allowing more flow
34-
to be tracked. This affects and improves most security queries, which may
35-
report additional results.
32+
* The data-flow library has been improved, which affects and improves most security queries. The improvements are:
33+
- Track flow through methods that combine taint tracking with flow through fields.
34+
- Track flow through clone-like methods, that is, methods that read contents of a field from a
35+
parameter and stores the value in the field of a returned object.
3636
* The taint tracking library now tracks flow through (implicit or explicit) conversion operator calls.
3737
* [Code contracts](https://docs.microsoft.com/en-us/dotnet/framework/debug-trace-profile/code-contracts) are now recognized, and are treated like any other assertion methods.
3838
* Expression nullability flow state is given by the predicates `Expr.hasNotNullFlowState()` and `Expr.hasMaybeNullFlowState()`.

change-notes/1.24/analysis-java.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ The following changes in version 1.24 affect Java analysis in all applications.
2525

2626
## Changes to libraries
2727

28-
* The data-flow library has been improved when flow through methods needs to be
29-
combined with both taint tracking and flow through fields allowing more flow
30-
to be tracked. This affects and improves most security queries, which may
31-
report additional results.
28+
* The data-flow library has been improved, which affects and improves most security queries. The improvements are:
29+
- Track flow through methods that combine taint tracking with flow through fields.
30+
- Track flow through clone-like methods, that is, methods that read contents of a field from a
31+
parameter and stores the value in the field of a returned object.
3232
* Identification of test classes has been improved. Previously, one of the
3333
match conditions would classify any class with a name containing the string
3434
"Test" as a test class, but now this matching has been replaced with one that

0 commit comments

Comments
 (0)