Release preparation for version 2.20.2

This commit is contained in:
github-actions[bot]
2025-01-10 15:37:55 +00:00
parent fd878a1f33
commit cd07af62e9
162 changed files with 399 additions and 141 deletions

View File

@@ -1,3 +1,7 @@
## 0.4.1
No user-facing changes.
## 0.4.0
### New Features

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 0.4.0
lastReleaseVersion: 0.4.1

View File

@@ -1,5 +1,5 @@
name: codeql/actions-all
version: 0.4.1-dev
version: 0.4.1
library: true
warnOnImplicitThis: true
dependencies:

View File

@@ -1,3 +1,7 @@
## 0.4.1
No user-facing changes.
## 0.4.0
### New Queries

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 0.4.0
lastReleaseVersion: 0.4.1

View File

@@ -1,5 +1,5 @@
name: codeql/actions-queries
version: 0.4.1-dev
version: 0.4.1
library: false
warnOnImplicitThis: true
groups: [actions, queries]

View File

@@ -1,3 +1,18 @@
## 3.2.0
### New Features
* A new abstract class `ConfigurationTestFile` (`semmle.code.cpp.ConfigurationTestFile.ConfigurationTestFile`) was introduced, which represents files created to test the build configuration. A subclass `CmakeTryCompileFile` of `ConfigurationTestFile` was also introduced, which represents files created by CMake to test the build configuration.
* New predicates `getARequiresClause`, `getTemplateRequiresClause` and `getFunctionRequiresClause` were added to the `FunctionDeclarationEntry` class, which yield the requires clauses when the entry represents a function template declaration with requires clauses.
* A new predicate `getRequiresClause` was added to the `TypeDeclarationEntry` class, which yields the requires clause when the entry represents a class template declaration with a requires clause.
* A new predicate `getRequiresClause` was added to the `VariableDeclarationEntry` class, which yields the requires clause when the entry represents a variable template declaration with a requires clause.
* A new predicate `getTypeConstraint` was added to the `TypeTemplateParameter` class, which yields the type constraint of the parameter if it exists.
* A new class `VariableTemplateSpecialization` was introduced, which represents explicit specializations of variable templates.
* A new predicate `isSpecialization` was added to the `Variable` class, which holds if the variable is a template specialization.
* A new class `ConceptIdExpr` was introduced, which represents C++20 concept id expressions.
* A new class `Concept` was introduced, which represents C++20 concepts.
* The `getTemplateArgumentType` and `getTemplateArgumentValue` predicates of the `Declaration` class now also yield template arguments of concepts.
## 3.1.0
### Deprecated APIs

View File

@@ -1,5 +0,0 @@
---
category: feature
---
* A new class `Concept` was introduced, which represents C++20 concepts.
* The `getTemplateArgumentType` and `getTemplateArgumentValue` predicates of the `Declaration` class now also yield template arguments of concepts.

View File

@@ -1,5 +0,0 @@
---
category: feature
---
* A new class `ConceptIdExpr` was introduced, which represents C++20 concept id expressions.

View File

@@ -1,5 +0,0 @@
---
category: feature
---
* A new class `VariableTemplateSpecialization` was introduced, which represents explicit specializations of variable templates.
* A new predicate `isSpecialization` was added to the `Variable` class, which holds if the variable is a template specialization.

View File

@@ -1,7 +0,0 @@
---
category: feature
---
* New predicates `getARequiresClause`, `getTemplateRequiresClause` and `getFunctionRequiresClause` were added to the `FunctionDeclarationEntry` class, which yield the requires clauses when the entry represents a function template declaration with requires clauses.
* A new predicate `getRequiresClause` was added to the `TypeDeclarationEntry` class, which yields the requires clause when the entry represents a class template declaration with a requires clause.
* A new predicate `getRequiresClause` was added to the `VariableDeclarationEntry` class, which yields the requires clause when the entry represents a variable template declaration with a requires clause.
* A new predicate `getTypeConstraint` was added to the `TypeTemplateParameter` class, which yields the type constraint of the parameter if it exists.

View File

@@ -1,4 +0,0 @@
---
category: feature
---
* A new abstract class `ConfigurationTestFile` (`semmle.code.cpp.ConfigurationTestFile.ConfigurationTestFile`) was introduced, which represents files created to test the build configuration. A subclass `CmakeTryCompileFile` of `ConfigurationTestFile` was also introduced, which represents files created by CMake to test the build configuration.

View File

@@ -0,0 +1,14 @@
## 3.2.0
### New Features
* A new abstract class `ConfigurationTestFile` (`semmle.code.cpp.ConfigurationTestFile.ConfigurationTestFile`) was introduced, which represents files created to test the build configuration. A subclass `CmakeTryCompileFile` of `ConfigurationTestFile` was also introduced, which represents files created by CMake to test the build configuration.
* New predicates `getARequiresClause`, `getTemplateRequiresClause` and `getFunctionRequiresClause` were added to the `FunctionDeclarationEntry` class, which yield the requires clauses when the entry represents a function template declaration with requires clauses.
* A new predicate `getRequiresClause` was added to the `TypeDeclarationEntry` class, which yields the requires clause when the entry represents a class template declaration with a requires clause.
* A new predicate `getRequiresClause` was added to the `VariableDeclarationEntry` class, which yields the requires clause when the entry represents a variable template declaration with a requires clause.
* A new predicate `getTypeConstraint` was added to the `TypeTemplateParameter` class, which yields the type constraint of the parameter if it exists.
* A new class `VariableTemplateSpecialization` was introduced, which represents explicit specializations of variable templates.
* A new predicate `isSpecialization` was added to the `Variable` class, which holds if the variable is a template specialization.
* A new class `ConceptIdExpr` was introduced, which represents C++20 concept id expressions.
* A new class `Concept` was introduced, which represents C++20 concepts.
* The `getTemplateArgumentType` and `getTemplateArgumentValue` predicates of the `Declaration` class now also yield template arguments of concepts.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 3.1.0
lastReleaseVersion: 3.2.0

View File

@@ -1,5 +1,5 @@
name: codeql/cpp-all
version: 3.1.1-dev
version: 3.2.0
groups: cpp
dbscheme: semmlecode.cpp.dbscheme
extractor: cpp

View File

@@ -1,3 +1,10 @@
## 1.3.2
### Minor Analysis Improvements
* Added dataflow models for `SysAllocString` and related functions.
* The `cpp/badly-bounded-write`, `cpp/equality-on-floats`, `cpp/short-global-name`, `cpp/static-buffer-overflow`, `cpp/too-few-arguments`, `cpp/useless-expression`, `cpp/world-writable-file-creation` queries no longer produce alerts on files created by CMake to test the build configuration.
## 1.3.1
### Minor Analysis Improvements

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* Added dataflow models for `SysAllocString` and related functions.

View File

@@ -1,4 +1,6 @@
---
category: minorAnalysis
---
## 1.3.2
### Minor Analysis Improvements
* Added dataflow models for `SysAllocString` and related functions.
* The `cpp/badly-bounded-write`, `cpp/equality-on-floats`, `cpp/short-global-name`, `cpp/static-buffer-overflow`, `cpp/too-few-arguments`, `cpp/useless-expression`, `cpp/world-writable-file-creation` queries no longer produce alerts on files created by CMake to test the build configuration.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.3.1
lastReleaseVersion: 1.3.2

View File

@@ -1,5 +1,5 @@
name: codeql/cpp-queries
version: 1.3.2-dev
version: 1.3.2
groups:
- cpp
- queries

View File

@@ -1,3 +1,7 @@
## 1.7.32
No user-facing changes.
## 1.7.31
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.7.31
lastReleaseVersion: 1.7.32

View File

@@ -1,5 +1,5 @@
name: codeql/csharp-solorigate-all
version: 1.7.32-dev
version: 1.7.32
groups:
- csharp
- solorigate

View File

@@ -1,3 +1,7 @@
## 1.7.32
No user-facing changes.
## 1.7.31
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.7.31
lastReleaseVersion: 1.7.32

View File

@@ -1,5 +1,5 @@
name: codeql/csharp-solorigate-queries
version: 1.7.32-dev
version: 1.7.32
groups:
- csharp
- solorigate

View File

@@ -1,3 +1,9 @@
## 4.0.2
### Minor Analysis Improvements
* The Razor source generator invocation in `build-mode:none` extraction has been changed to use relative file paths instead of absolute ones.
## 4.0.1
### Minor Analysis Improvements

View File

@@ -1,4 +1,5 @@
---
category: minorAnalysis
---
## 4.0.2
### Minor Analysis Improvements
* The Razor source generator invocation in `build-mode:none` extraction has been changed to use relative file paths instead of absolute ones.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 4.0.1
lastReleaseVersion: 4.0.2

View File

@@ -1,5 +1,5 @@
name: codeql/csharp-all
version: 4.0.2-dev
version: 4.0.2
groups: csharp
dbscheme: semmlecode.csharp.dbscheme
extractor: csharp

View File

@@ -1,3 +1,7 @@
## 1.0.15
No user-facing changes.
## 1.0.14
### Minor Analysis Improvements

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.0.14
lastReleaseVersion: 1.0.15

View File

@@ -1,5 +1,5 @@
name: codeql/csharp-queries
version: 1.0.15-dev
version: 1.0.15
groups:
- csharp
- queries

View File

@@ -1,3 +1,7 @@
## 1.0.15
No user-facing changes.
## 1.0.14
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.0.14
lastReleaseVersion: 1.0.15

View File

@@ -1,5 +1,5 @@
name: codeql-go-consistency-queries
version: 1.0.15-dev
version: 1.0.15
groups:
- go
- queries

View File

@@ -1,3 +1,13 @@
## 3.0.2
### Minor Analysis Improvements
* `database` local source models have been added for the Beego ORM package.
* `database` local source models have been added for the `github.com/jmoiron/sqlx` package.
* Added `database` source models for database methods from the `gorm.io/gorm` package.
`
* `database` local source models have been added for the `database/sql` and `database/sql/driver` packages.
## 3.0.1
### Minor Analysis Improvements

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* `database` local source models have been added for the `database/sql` and `database/sql/driver` packages.

View File

@@ -1,5 +0,0 @@
---
category: minorAnalysis
---
* Added `database` source models for database methods from the `gorm.io/gorm` package.
`

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* `database` local source models have been added for the `github.com/jmoiron/sqlx` package.

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* `database` local source models have been added for the Beego ORM package.

View File

@@ -0,0 +1,9 @@
## 3.0.2
### Minor Analysis Improvements
* `database` local source models have been added for the Beego ORM package.
* `database` local source models have been added for the `github.com/jmoiron/sqlx` package.
* Added `database` source models for database methods from the `gorm.io/gorm` package.
`
* `database` local source models have been added for the `database/sql` and `database/sql/driver` packages.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 3.0.1
lastReleaseVersion: 3.0.2

View File

@@ -1,5 +1,5 @@
name: codeql/go-all
version: 3.0.2-dev
version: 3.0.2
groups: go
dbscheme: go.dbscheme
extractor: go

View File

@@ -1,3 +1,7 @@
## 1.1.6
No user-facing changes.
## 1.1.5
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.1.5
lastReleaseVersion: 1.1.6

View File

@@ -1,5 +1,5 @@
name: codeql/go-queries
version: 1.1.6-dev
version: 1.1.6
groups:
- go
- queries

View File

@@ -1,3 +1,7 @@
## 6.0.1
No user-facing changes.
## 6.0.0
### Breaking Changes

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 6.0.0
lastReleaseVersion: 6.0.1

View File

@@ -1,5 +1,5 @@
name: codeql/java-all
version: 6.0.1-dev
version: 6.0.1
groups: java
dbscheme: config/semmlecode.dbscheme
extractor: java

View File

@@ -1,3 +1,9 @@
## 1.1.12
### Bug Fixes
* Classes that define a `writeReplace` method are no longer flagged by the `java/missing-no-arg-constructor-on-serializable` query on the assumption they are unlikely to be deserialized using the default algorithm.
## 1.1.11
No user-facing changes.

View File

@@ -1,4 +1,5 @@
---
category: fix
---
## 1.1.12
### Bug Fixes
* Classes that define a `writeReplace` method are no longer flagged by the `java/missing-no-arg-constructor-on-serializable` query on the assumption they are unlikely to be deserialized using the default algorithm.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.1.11
lastReleaseVersion: 1.1.12

View File

@@ -1,5 +1,5 @@
name: codeql/java-queries
version: 1.1.12-dev
version: 1.1.12
groups:
- java
- queries

View File

@@ -1,3 +1,7 @@
## 2.2.2
No user-facing changes.
## 2.2.1
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 2.2.1
lastReleaseVersion: 2.2.2

View File

@@ -1,5 +1,5 @@
name: codeql/javascript-all
version: 2.2.2-dev
version: 2.2.2
groups: javascript
dbscheme: semmlecode.javascript.dbscheme
extractor: javascript

View File

@@ -1,3 +1,10 @@
## 1.2.7
### Bug Fixes
* Fixed a TypeScript extractor crash that would occur when encountering an export specifier
whose local specifier was a string literal.
## 1.2.6
No user-facing changes.

View File

@@ -1,5 +1,6 @@
---
category: fix
---
## 1.2.7
### Bug Fixes
* Fixed a TypeScript extractor crash that would occur when encountering an export specifier
whose local specifier was a string literal.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.2.6
lastReleaseVersion: 1.2.7

View File

@@ -1,5 +1,5 @@
name: codeql/javascript-queries
version: 1.2.7-dev
version: 1.2.7
groups:
- javascript
- queries

View File

@@ -1,3 +1,7 @@
## 1.0.15
No user-facing changes.
## 1.0.14
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.0.14
lastReleaseVersion: 1.0.15

View File

@@ -1,4 +1,4 @@
name: codeql/suite-helpers
version: 1.0.15-dev
version: 1.0.15
groups: shared
warnOnImplicitThis: true

View File

@@ -1,3 +1,9 @@
## 3.1.1
### Minor Analysis Improvements
- Additional taint steps through methods of `lxml.etree.Element` and `lxml.etree.ElementTree` objects from the `lxml` PyPI package have been modeled.
## 3.1.0
### New Features

View File

@@ -1,4 +1,5 @@
---
category: minorAnalysis
---
- Additional taint steps through methods of `lxml.etree.Element` and `lxml.etree.ElementTree` objects from the `lxml` PyPI package have been modeled.
## 3.1.1
### Minor Analysis Improvements
- Additional taint steps through methods of `lxml.etree.Element` and `lxml.etree.ElementTree` objects from the `lxml` PyPI package have been modeled.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 3.1.0
lastReleaseVersion: 3.1.1

View File

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

View File

@@ -1,3 +1,7 @@
## 1.4.1
No user-facing changes.
## 1.4.0
### New Queries

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.4.0
lastReleaseVersion: 1.4.1

View File

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

View File

@@ -1,3 +1,9 @@
## 3.0.2
### Minor Analysis Improvements
* Types are now being tracked in data flow, but only when the type of an object is obvious from the context. For example, `C.new` has guaranteed type `C`, while in `def add(x, y) { x + y }` we cannot assign a type to `x + y` (it could, for instance, be both `String` and `Integer`). Tracking types allows us to remove false-positive results when type incompatibility can be established.
## 3.0.1
No user-facing changes.

View File

@@ -1,4 +1,5 @@
---
category: minorAnalysis
---
* Types are now being tracked in data flow, but only when the type of an object is obvious from the context. For example, `C.new` has guaranteed type `C`, while in `def add(x, y) { x + y }` we cannot assign a type to `x + y` (it could, for instance, be both `String` and `Integer`). Tracking types allows us to remove false-positive results when type incompatibility can be established.
## 3.0.2
### Minor Analysis Improvements
* Types are now being tracked in data flow, but only when the type of an object is obvious from the context. For example, `C.new` has guaranteed type `C`, while in `def add(x, y) { x + y }` we cannot assign a type to `x + y` (it could, for instance, be both `String` and `Integer`). Tracking types allows us to remove false-positive results when type incompatibility can be established.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 3.0.1
lastReleaseVersion: 3.0.2

View File

@@ -1,5 +1,5 @@
name: codeql/ruby-all
version: 3.0.2-dev
version: 3.0.2
groups: ruby
extractor: ruby
dbscheme: ruby.dbscheme

View File

@@ -1,3 +1,7 @@
## 1.1.10
No user-facing changes.
## 1.1.9
No user-facing changes.

View File

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

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 1.1.9
lastReleaseVersion: 1.1.10

View File

@@ -1,5 +1,5 @@
name: codeql/ruby-queries
version: 1.1.10-dev
version: 1.1.10
groups:
- ruby
- queries

3
rust/ql/lib/CHANGELOG.md Normal file
View File

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

View File

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

View File

@@ -0,0 +1,2 @@
---
lastReleaseVersion: 0.1.0

View File

@@ -1,5 +1,5 @@
name: codeql/rust-all
version: 0.1.0-dev
version: 0.1.0
groups: rust
extractor: rust
dbscheme: rust.dbscheme

3
rust/ql/src/CHANGELOG.md Normal file
View File

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

View File

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

View File

@@ -0,0 +1,2 @@
---
lastReleaseVersion: 0.1.0

View File

@@ -1,5 +1,5 @@
name: codeql/rust-queries
version: 0.1.0-dev
version: 0.1.0
groups:
- rust
- queries

View File

@@ -1,3 +1,7 @@
## 1.0.15
No user-facing changes.
## 1.0.14
No user-facing changes.

View File

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

Some files were not shown because too many files have changed in this diff Show More