-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Revert "Release preparation for version 2.20.2" #18548
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 0.4.1 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 0.4.0 | ||
|
|
||
| ### New Features | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 0.4.1 | ||
| lastReleaseVersion: 0.4.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql/actions-all | ||
| version: 0.4.1 | ||
| version: 0.4.1-dev | ||
| library: true | ||
| warnOnImplicitThis: true | ||
| dependencies: | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 0.4.1 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 0.4.0 | ||
|
|
||
| ### New Queries | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 0.4.1 | ||
| lastReleaseVersion: 0.4.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: feature | ||
| --- | ||
| * A new class `ConstevalIfStmt` was introduced, which represents the C++23 `if consteval` and `if ! consteval` statements. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| 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. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| category: feature | ||
| --- | ||
| * A new class `ConceptIdExpr` was introduced, which represents C++20 concept id expressions. | ||
|
|
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| 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. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| 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. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| 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. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: feature | ||
| --- | ||
| * Add a new predicate `getAnIndirectBarrier` to the parameterized module `InstructionBarrierGuard` in `semmle.code.cpp.dataflow.new.DataFlow` for computing indirect dataflow nodes that are guarded by a given instruction. This predicate is similar to the `getAnIndirectBarrier` predicate on the parameterized module `BarrierGuard`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| category: feature | ||
| --- | ||
| * A new predicate `getDecltype`was added to the `ProxyClass` class, which yields the decltype for the proxy class. | ||
| * Template classes that are of `struct` type are now also instances of the `Struct` class. | ||
| * Template classes that are of `union` type are now also instances of the `Union` class. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * `DefaultOptions::exits` now holds for C23 functions with the `_Noreturn` or `___Noreturn__` attribute. |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 3.2.0 | ||
| lastReleaseVersion: 3.1.0 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,4 @@ | ||
| ## 1.3.2 | ||
|
|
||
| ### Minor Analysis Improvements | ||
|
|
||
| * Added dataflow models for `SysAllocString` and related functions. | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * 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. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * Added dataflow models for `SysAllocString` and related functions. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 1.3.2 | ||
| lastReleaseVersion: 1.3.1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql/cpp-queries | ||
| version: 1.3.2 | ||
| version: 1.3.2-dev | ||
| groups: | ||
| - cpp | ||
| - queries | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 1.7.32 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 1.7.31 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 1.7.32 | ||
| lastReleaseVersion: 1.7.31 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql/csharp-solorigate-all | ||
| version: 1.7.32 | ||
| version: 1.7.32-dev | ||
| groups: | ||
| - csharp | ||
| - solorigate | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 1.7.32 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 1.7.31 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 1.7.32 | ||
| lastReleaseVersion: 1.7.31 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql/csharp-solorigate-queries | ||
| version: 1.7.32 | ||
| version: 1.7.32-dev | ||
| groups: | ||
| - csharp | ||
| - solorigate | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * C# 13: Added extractor support and call dispatch logic (data flow) for the (negative) type parameter constraint `allows ref struct`. Added extractor support for the type parameter constraint `notnull`. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * The Razor source generator invocation in `build-mode:none` extraction has been changed to use relative file paths instead of absolute ones. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * Added extractor support for extracting implicit `ToString` calls in binary `+` expressions and string interpolation expressions. |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 4.0.2 | ||
| lastReleaseVersion: 4.0.1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 1.0.15 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 1.0.14 | ||
|
|
||
| ### Minor Analysis Improvements | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 1.0.15 | ||
| lastReleaseVersion: 1.0.14 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql/csharp-queries | ||
| version: 1.0.15 | ||
| version: 1.0.15-dev | ||
| groups: | ||
| - csharp | ||
| - queries | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 1.0.15 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 1.0.14 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 1.0.15 | ||
| lastReleaseVersion: 1.0.14 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql-go-consistency-queries | ||
| version: 1.0.15 | ||
| version: 1.0.15-dev | ||
| groups: | ||
| - go | ||
| - queries | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * `database` local source models have been added for the `database/sql` and `database/sql/driver` packages. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * Added `database` source models for database methods from the `gorm.io/gorm` package. | ||
| ` |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * `database` local source models have been added for the `github.com/jmoiron/sqlx` package. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| category: minorAnalysis | ||
| --- | ||
| * `database` local source models have been added for the Beego ORM package. |
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| --- | ||
| lastReleaseVersion: 3.0.2 | ||
| lastReleaseVersion: 3.0.1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| name: codeql/go-all | ||
| version: 3.0.2 | ||
| version: 3.0.2-dev | ||
| groups: go | ||
| dbscheme: go.dbscheme | ||
| extractor: go | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,3 @@ | ||
| ## 1.1.6 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
| ## 1.1.5 | ||
|
|
||
| No user-facing changes. | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There should be a space after
getDecltype. It should readgetDecltypewas added.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@smowton Could you fix this typo once you restart, thanks!