Release preparation for version 2.13.0

This commit is contained in:
github-actions[bot]
2023-04-14 13:31:30 +00:00
parent 9169ddb9c1
commit 075d063370
142 changed files with 545 additions and 323 deletions

View File

@@ -1,3 +1,13 @@
## 0.6.0
### New Queries
* The query `cpp/redundant-null-check-simple` has been promoted to Code Scanning. The query finds cases where a pointer is compared to null after it has already been dereferenced. Such comparisons likely indicate a bug at the place where the pointer is dereferenced, or where the pointer is compared to null.
### Minor Analysis Improvements
* The query `cpp/tainted-arithmetic` now also flags possible overflows in arithmetic assignment operations.
## 0.5.6
No user-facing changes.

View File

@@ -1,4 +0,0 @@
---
category: minorAnalysis
---
* The query `cpp/tainted-arithmetic` now also flags possible overflows in arithmetic assignment operations.

View File

@@ -1,4 +1,9 @@
---
category: newQuery
---
* The query `cpp/redundant-null-check-simple` has been promoted to Code Scanning. The query finds cases where a pointer is compared to null after it has already been dereferenced. Such comparisons likely indicate a bug at the place where the pointer is dereferenced, or where the pointer is compared to null.
## 0.6.0
### New Queries
* The query `cpp/redundant-null-check-simple` has been promoted to Code Scanning. The query finds cases where a pointer is compared to null after it has already been dereferenced. Such comparisons likely indicate a bug at the place where the pointer is dereferenced, or where the pointer is compared to null.
### Minor Analysis Improvements
* The query `cpp/tainted-arithmetic` now also flags possible overflows in arithmetic assignment operations.

View File

@@ -1,2 +1,2 @@
---
lastReleaseVersion: 0.5.6
lastReleaseVersion: 0.6.0

View File

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