Skip to content

Commit 468c12e

Browse files
authored
Merge pull request github#18944 from github/changedocs-2.20.6
Changedocs for 2.20.6
2 parents 16e84d0 + b742ed2 commit 468c12e

File tree

4 files changed

+132
-3
lines changed

4 files changed

+132
-3
lines changed

docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.20.4.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ Java/Kotlin
117117
* Deleted the deprecated :code:`isLValue` and :code:`isRValue` predicates from the :code:`VarAccess` class, use :code:`isVarWrite` and :code:`isVarRead` respectively instead.
118118
* Deleted the deprecated :code:`getRhs` predicate from the :code:`VarWrite` class, use :code:`getASource` instead.
119119
* Deleted the deprecated :code:`LValue` and :code:`RValue` classes, use :code:`VarWrite` and :code:`VarRead` respectively instead.
120-
* Deleted a lot of deprecated classes ending in ``*Access``, use the corresponding ``*Call`` classes instead.
121-
* Deleted a lot of deprecated predicates ending in ``*Access``, use the corresponding ``*Call`` predicates instead.
120+
* Deleted a lot of deprecated classes ending in :code:`*Access`, use the corresponding :code:`*Call` classes instead.
121+
* Deleted a lot of deprecated predicates ending in :code:`*Access`, use the corresponding :code:`*Call` predicates instead.
122122
* Deleted the deprecated :code:`EnvInput` and :code:`DatabaseInput` classes from :code:`FlowSources.qll`, use the threat models feature instead.
123123
* Deleted some deprecated API predicates from :code:`SensitiveApi.qll`, use the Sink classes from that file instead.
124124

@@ -144,7 +144,7 @@ Ruby
144144
* Deleted the deprecated :code:`ModelClass` and :code:`ModelInstance` classes from :code:`ActiveResource.qll`, use :code:`ModelClassNode` and :code:`ModelClassNode.getAnInstanceReference()` instead.
145145
* Deleted the deprecated :code:`Collection` class from :code:`ActiveResource.qll`, use :code:`CollectionSource` instead.
146146
* Deleted the deprecated :code:`ServiceInstantiation` and :code:`ClientInstantiation` classes from :code:`Twirp.qll`.
147-
* Deleted a lot of deprecated dataflow modules from ``*Query.qll`` files.
147+
* Deleted a lot of deprecated dataflow modules from :code:`*Query.qll` files.
148148
* Deleted the old deprecated TypeTracking library.
149149

150150
Swift

docs/codeql/codeql-overview/codeql-changelog/codeql-cli-2.20.5.rst

+8
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ Python
109109
* Fixed a bug in the extractor where a comment inside a subscript could sometimes cause the AST to be missing nodes.
110110
* Using the :code:`break` and :code:`continue` keywords outside of a loop, which is a syntax error but is accepted by our parser, would cause the control-flow construction to fail. This is now no longer the case.
111111

112+
Major Analysis Improvements
113+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
114+
115+
Golang
116+
""""""
117+
118+
* Go 1.24 is now supported. This includes the new language feature of generic type aliases.
119+
112120
Minor Analysis Improvements
113121
~~~~~~~~~~~~~~~~~~~~~~~~~~~
114122

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
.. _codeql-cli-2.20.6:
2+
3+
==========================
4+
CodeQL 2.20.6 (2025-03-06)
5+
==========================
6+
7+
.. contents:: Contents
8+
:depth: 2
9+
:local:
10+
:backlinks: none
11+
12+
This is an overview of changes in the CodeQL CLI and relevant CodeQL query and library packs. For additional updates on changes to the CodeQL code scanning experience, check out the `code scanning section on the GitHub blog <https://github.blog/tag/code-scanning/>`__, `relevant GitHub Changelog updates <https://github.blog/changelog/label/code-scanning/>`__, `changes in the CodeQL extension for Visual Studio Code <https://marketplace.visualstudio.com/items/GitHub.vscode-codeql/changelog>`__, and the `CodeQL Action changelog <https://github.com/github/codeql-action/blob/main/CHANGELOG.md>`__.
13+
14+
Security Coverage
15+
-----------------
16+
17+
CodeQL 2.20.6 runs a total of 450 security queries when configured with the Default suite (covering 168 CWE). The Extended suite enables an additional 137 queries (covering 35 more CWE). 1 security query has been added with this release.
18+
19+
CodeQL CLI
20+
----------
21+
22+
Miscellaneous
23+
~~~~~~~~~~~~~
24+
25+
* The CodeQL XML extractor is now able to parse documents in a wider array of character sets.
26+
27+
* The build of Eclipse Temurin OpenJDK that is used to run the CodeQL CLI has been updated to version 21.0.6.
28+
29+
Query Packs
30+
-----------
31+
32+
Bug Fixes
33+
~~~~~~~~~
34+
35+
GitHub Actions
36+
""""""""""""""
37+
38+
* The :code:`actions/unversioned-immutable-action` query will no longer report any alerts, since the Immutable Actions feature is not yet available for customer use. The query remains in the default Code Scanning suites for use internal to GitHub. Once the Immutable Actions feature is available, the query will be updated to report alerts again.
39+
40+
Major Analysis Improvements
41+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
42+
43+
Java/Kotlin
44+
"""""""""""
45+
46+
* Fixed false positive alerts in the java query "Cross-site scripting" (:code:`java/xss`) when :code:`javax.servlet.http.HttpServletResponse` is used with a content type which is not exploitable.
47+
48+
JavaScript/TypeScript
49+
"""""""""""""""""""""
50+
51+
* Improved precision of data flow through arrays, fixing some spurious flows that would sometimes cause the :code:`length` property of an array to be seen as tainted.
52+
* Improved call resolution logic to better handle calls resolving "downwards", targeting a method declared in a subclass of the enclosing class. Data flow analysis has also improved to avoid spurious flow between unrelated classes in the class hierarchy.
53+
54+
Minor Analysis Improvements
55+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
56+
57+
C/C++
58+
"""""
59+
60+
* Due to changes in libraries the query "Static array access may cause overflow" (:code:`cpp/static-buffer-overflow`) will no longer report cases where multiple fields of a struct or class are written with a single :code:`memset` or similar operation.
61+
* The query "Call to memory access function may overflow buffer" (:code:`cpp/overflow-buffer`) has been added to the security-extended query suite. The query detects a range of buffer overflow and underflow issues.
62+
63+
C#
64+
""
65+
66+
* C#: Improve precision of the query :code:`cs/call-to-object-tostring` for value tuples.
67+
68+
Language Libraries
69+
------------------
70+
71+
Major Analysis Improvements
72+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
73+
74+
JavaScript/TypeScript
75+
"""""""""""""""""""""
76+
77+
* Added support for the :code:`response` threat model kind, which can enabled with `advanced setup <https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/customizing-your-advanced-setup-for-code-scanning#extending-codeql-coverage-with-threat-models>`__. When enabled, the response data coming back from an outgoing HTTP request is considered a source of taint.
78+
* Added support for the :code:`useQuery` hook from :code:`@tanstack/react-query`.
79+
80+
Minor Analysis Improvements
81+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
82+
83+
C/C++
84+
"""""
85+
86+
* Modified the :code:`getBufferSize` predicate in :code:`commons/Buffer.qll` to be more tolerant in some cases involving member variables in a larger struct or class.
87+
* Fixed an issue where the :code:`getBufferSize` predicate in :code:`commons/Buffer.qll` was returning results for references inside :code:`offsetof` expressions, which are not accesses to a buffer.
88+
89+
Golang
90+
""""""
91+
92+
* The location info for the following classes has been changed slightly to match a location that is in the database: :code:`BasicBlock`, :code:`ControlFlow::EntryNode`, :code:`ControlFlow::ExitNode`, :code:`ControlFlow::ConditionGuardNode`, :code:`IR::ImplicitLiteralElementIndexInstruction`, :code:`IR::EvalImplicitTrueInstruction`, :code:`SsaImplicitDefinition`, :code:`SsaPhiNode`.
93+
* Added :code:`database` source models for the :code:`github.com/rqlite/gorqlite` package.
94+
* Added :code:`database` source models for database methods from the :code:`go.mongodb.org/mongo-driver/mongo` package.
95+
96+
Java/Kotlin
97+
"""""""""""
98+
99+
* Added a path injection sanitizer for the :code:`child` argument of a :code:`java.io.File` constructor if that argument does not contain path traversal sequences.
100+
101+
JavaScript/TypeScript
102+
"""""""""""""""""""""
103+
104+
* The :code:`response.download()` function in :code:`express` is now recognized as a sink for path traversal attacks.
105+
106+
Deprecated APIs
107+
~~~~~~~~~~~~~~~
108+
109+
Golang
110+
""""""
111+
112+
* The member predicate :code:`hasLocationInfo` has been deprecated on the following classes: :code:`BasicBlock`, :code:`Callable`, :code:`Content`, :code:`ContentSet`, :code:`ControlFlow::Node`, :code:`DataFlowCallable`, :code:`DataFlow::Node`, :code:`Entity`, :code:`GVN`, :code:`HtmlTemplate::TemplateStmt`, :code:`IR:WriteTarget`, :code:`SourceSinkInterpretationInput::SourceOrSinkElement`, :code:`SourceSinkInterpretationInput::InterpretNode`, :code:`SsaVariable`, :code:`SsaDefinition`, :code:`SsaWithFields`, :code:`StringOps::ConcatenationElement`, :code:`Type`, and :code:`VariableWithFields`. Use :code:`getLocation()` instead.
113+
114+
New Features
115+
~~~~~~~~~~~~
116+
117+
Java/Kotlin
118+
"""""""""""
119+
120+
* The Java extractor and QL libraries now support Java 24.

docs/codeql/codeql-overview/codeql-changelog/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ A list of queries for each suite and language `is available here <https://docs.g
1111
.. toctree::
1212
:maxdepth: 1
1313

14+
codeql-cli-2.20.6
1415
codeql-cli-2.20.5
1516
codeql-cli-2.20.4
1617
codeql-cli-2.20.3

0 commit comments

Comments
 (0)