Skip to content

Commit 0c73467

Browse files
committed
Fix minor issues with change notes
1 parent 075d063 commit 0c73467

File tree

8 files changed

+44
-58
lines changed

8 files changed

+44
-58
lines changed

cpp/ql/lib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### Deprecated APIs
88

9-
* The predicates single-parameter predicates `ArrayOrVectorAggregateLiteral.getElementExpr` and `ClassAggregateLiteral.getFieldExpr` have been deprecated in favor of `ArrayOrVectorAggregateLiteral.getAnElementExpr` and `ClassAggregateLiteral.getAFieldExpr`.
9+
* The single-parameter predicates `ArrayOrVectorAggregateLiteral.getElementExpr` and `ClassAggregateLiteral.getFieldExpr` have been deprecated in favor of `ArrayOrVectorAggregateLiteral.getAnElementExpr` and `ClassAggregateLiteral.getAFieldExpr`.
1010
* The recently introduced new data flow and taint tracking APIs have had a
1111
number of module and predicate renamings. The old APIs remain in place for
1212
now.

cpp/ql/lib/change-notes/released/0.7.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
### Deprecated APIs
88

9-
* The predicates single-parameter predicates `ArrayOrVectorAggregateLiteral.getElementExpr` and `ClassAggregateLiteral.getFieldExpr` have been deprecated in favor of `ArrayOrVectorAggregateLiteral.getAnElementExpr` and `ClassAggregateLiteral.getAFieldExpr`.
9+
* The single-parameter predicates `ArrayOrVectorAggregateLiteral.getElementExpr` and `ClassAggregateLiteral.getFieldExpr` have been deprecated in favor of `ArrayOrVectorAggregateLiteral.getAnElementExpr` and `ClassAggregateLiteral.getAFieldExpr`.
1010
* The recently introduced new data flow and taint tracking APIs have had a
1111
number of module and predicate renamings. The old APIs remain in place for
1212
now.

java/ql/lib/CHANGELOG.md

Lines changed: 19 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,17 @@
1818
* Added a summary model for the `java.lang.UnsupportedOperationException(String)` constructor.
1919
* The filenames embedded in `Compilation.toString()` now use `/` as the path separator on all platforms.
2020
* Added models for the following packages:
21-
* java.lang
22-
* java.net
23-
* java.nio.file
24-
* Added models for the following packages:
25-
* java.io
26-
* java.lang.module
27-
* org.apache.commons.io
21+
* `java.lang`
22+
* `java.net`
23+
* `java.nio.file`
24+
* `java.io`
25+
* `java.lang.module`
26+
* `org.apache.commons.httpclient.util`
27+
* `org.apache.commons.io`
28+
* `org.apache.http.client`
29+
* `org.eclipse.jetty.client`
30+
* `com.google.common.io`
31+
* `kotlin.io`
2832
* Added the `TaintedPathQuery.qll` library to provide the `TaintedPathFlow` and `TaintedPathLocalFlow` taint-tracking modules to reason about tainted path vulnerabilities.
2933
* Added the `ZipSlipQuery.qll` library to provide the `ZipSlipFlow` taint-tracking module to reason about zip-slip vulnerabilities.
3034
* Added the `InsecureBeanValidationQuery.qll` library to provide the `BeanValidationFlow` taint-tracking module to reason about bean validation vulnerabilities.
@@ -35,32 +39,21 @@
3539
* Improved the handling of addition in the range analysis. This can cause in minor changes to the results produced by `java/index-out-of-bounds` and `java/constant-comparison`.
3640
* A new models as data sink kind `command-injection` has been added.
3741
* The queries `java/command-line-injection` and `java/concatenated-command-line` now can be extended using the `command-injection` models as data sink kind.
38-
* Added models for the following packages:
39-
40-
* com.google.common.io
41-
* java.lang
42-
* java.nio.file
43-
* kotlin.io
44-
* org.apache.commons.httpclient.util
45-
* org.apache.http.client
46-
* org.eclipse.jetty.client
47-
* Added more sink and summary dataflow models for the following packages:
48-
* `hudson.model`
49-
* `hudson.scm`
50-
* `hudson.util`
51-
* Added more sink and summary dataflow models for the following packages:
52-
* `hudson.cli`
53-
* `hudson.lifecycle`
54-
* `hudson`
55-
* `hudson.util.io`
56-
* Added the extensible abstract class `JndiInjectionSanitizer`. Now this class can be extended to add more sanitizers to the `java/jndi-injection` query.
5742
* Added more sink and summary dataflow models for the following packages:
5843
* `java.net`
5944
* `java.nio.file`
6045
* `javax.imageio.stream`
6146
* `javax.naming`
6247
* `javax.servlet`
6348
* `org.geogebra.web.full.main`
49+
* `hudson`
50+
* `hudson.cli`
51+
* `hudson.lifecycle`
52+
* `hudson.model`
53+
* `hudson.scm`
54+
* `hudson.util`
55+
* `hudson.util.io`
56+
* Added the extensible abstract class `JndiInjectionSanitizer`. Now this class can be extended to add more sanitizers to the `java/jndi-injection` query.
6457
* Added a summary model for the `nativeSQL` method of the `java.sql.Connection` interface.
6558
* Added sink and summary dataflow models for the Jenkins and Netty frameworks.
6659
* The Models as Data syntax for selecting the qualifier has been changed from `-1` to `this` (e.g. `Argument[-1]` is now written as `Argument[this]`).

java/ql/lib/change-notes/released/0.6.0.md

Lines changed: 19 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,17 @@
1818
* Added a summary model for the `java.lang.UnsupportedOperationException(String)` constructor.
1919
* The filenames embedded in `Compilation.toString()` now use `/` as the path separator on all platforms.
2020
* Added models for the following packages:
21-
* java.lang
22-
* java.net
23-
* java.nio.file
24-
* Added models for the following packages:
25-
* java.io
26-
* java.lang.module
27-
* org.apache.commons.io
21+
* `java.lang`
22+
* `java.net`
23+
* `java.nio.file`
24+
* `java.io`
25+
* `java.lang.module`
26+
* `org.apache.commons.httpclient.util`
27+
* `org.apache.commons.io`
28+
* `org.apache.http.client`
29+
* `org.eclipse.jetty.client`
30+
* `com.google.common.io`
31+
* `kotlin.io`
2832
* Added the `TaintedPathQuery.qll` library to provide the `TaintedPathFlow` and `TaintedPathLocalFlow` taint-tracking modules to reason about tainted path vulnerabilities.
2933
* Added the `ZipSlipQuery.qll` library to provide the `ZipSlipFlow` taint-tracking module to reason about zip-slip vulnerabilities.
3034
* Added the `InsecureBeanValidationQuery.qll` library to provide the `BeanValidationFlow` taint-tracking module to reason about bean validation vulnerabilities.
@@ -35,32 +39,21 @@
3539
* Improved the handling of addition in the range analysis. This can cause in minor changes to the results produced by `java/index-out-of-bounds` and `java/constant-comparison`.
3640
* A new models as data sink kind `command-injection` has been added.
3741
* The queries `java/command-line-injection` and `java/concatenated-command-line` now can be extended using the `command-injection` models as data sink kind.
38-
* Added models for the following packages:
39-
40-
* com.google.common.io
41-
* java.lang
42-
* java.nio.file
43-
* kotlin.io
44-
* org.apache.commons.httpclient.util
45-
* org.apache.http.client
46-
* org.eclipse.jetty.client
47-
* Added more sink and summary dataflow models for the following packages:
48-
* `hudson.model`
49-
* `hudson.scm`
50-
* `hudson.util`
51-
* Added more sink and summary dataflow models for the following packages:
52-
* `hudson.cli`
53-
* `hudson.lifecycle`
54-
* `hudson`
55-
* `hudson.util.io`
56-
* Added the extensible abstract class `JndiInjectionSanitizer`. Now this class can be extended to add more sanitizers to the `java/jndi-injection` query.
5742
* Added more sink and summary dataflow models for the following packages:
5843
* `java.net`
5944
* `java.nio.file`
6045
* `javax.imageio.stream`
6146
* `javax.naming`
6247
* `javax.servlet`
6348
* `org.geogebra.web.full.main`
49+
* `hudson`
50+
* `hudson.cli`
51+
* `hudson.lifecycle`
52+
* `hudson.model`
53+
* `hudson.scm`
54+
* `hudson.util`
55+
* `hudson.util.io`
56+
* Added the extensible abstract class `JndiInjectionSanitizer`. Now this class can be extended to add more sanitizers to the `java/jndi-injection` query.
6457
* Added a summary model for the `nativeSQL` method of the `java.sql.Connection` interface.
6558
* Added sink and summary dataflow models for the Jenkins and Netty frameworks.
6659
* The Models as Data syntax for selecting the qualifier has been changed from `-1` to `this` (e.g. `Argument[-1]` is now written as `Argument[this]`).

python/ql/lib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
### Bug Fixes
1515

16-
* Fixed some accidental predicate visibility in the backwards-compatible wrapper for data flow configurations. In particular `DataFlow::hasFlowPath`, `DataFlow::hasFlow`, `DataFlow::hasFlowTo`, and `DataFlow::hasFlowToExpr` were accidentally exposed in a single version.
16+
* Fixed some accidental predicate visibility in the backwards-compatible wrapper for data flow configurations. In particular, `DataFlow::hasFlowPath`, `DataFlow::hasFlow`, `DataFlow::hasFlowTo`, and `DataFlow::hasFlowToExpr` were accidentally exposed in a single version.
1717

1818
## 0.8.3
1919

python/ql/lib/change-notes/released/0.9.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313

1414
### Bug Fixes
1515

16-
* Fixed some accidental predicate visibility in the backwards-compatible wrapper for data flow configurations. In particular `DataFlow::hasFlowPath`, `DataFlow::hasFlow`, `DataFlow::hasFlowTo`, and `DataFlow::hasFlowToExpr` were accidentally exposed in a single version.
16+
* Fixed some accidental predicate visibility in the backwards-compatible wrapper for data flow configurations. In particular, `DataFlow::hasFlowPath`, `DataFlow::hasFlow`, `DataFlow::hasFlowTo`, and `DataFlow::hasFlowToExpr` were accidentally exposed in a single version.

ruby/ql/lib/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Control flow graph: the evaluation order of scope expressions and receivers in multiple assignments has been adjusted to match the changes made in Ruby
1212
3.1 and 3.2.
1313
* The clear-text storage (`rb/clear-text-storage-sensitive-data`) and logging (`rb/clear-text-logging-sensitive-data`) queries now use built-in flow through hashes, for improved precision. This may result in both new true positives and less false positives.
14-
* Accesses of `params` in Sinatra applications are now recognised as HTTP input accesses.
14+
* Accesses of `params` in Sinatra applications are now recognized as HTTP input accesses.
1515
* Data flow is tracked from Sinatra route handlers to ERB files.
1616
* Data flow is tracked between basic Sinatra filters (those without URL patterns) and their corresponding route handlers.
1717

ruby/ql/lib/change-notes/released/0.6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Control flow graph: the evaluation order of scope expressions and receivers in multiple assignments has been adjusted to match the changes made in Ruby
1212
3.1 and 3.2.
1313
* The clear-text storage (`rb/clear-text-storage-sensitive-data`) and logging (`rb/clear-text-logging-sensitive-data`) queries now use built-in flow through hashes, for improved precision. This may result in both new true positives and less false positives.
14-
* Accesses of `params` in Sinatra applications are now recognised as HTTP input accesses.
14+
* Accesses of `params` in Sinatra applications are now recognized as HTTP input accesses.
1515
* Data flow is tracked from Sinatra route handlers to ERB files.
1616
* Data flow is tracked between basic Sinatra filters (those without URL patterns) and their corresponding route handlers.
1717

0 commit comments

Comments
 (0)