Skip to content

Commit 15e5faf

Browse files
authored
Merge branch 'main' into templ-func-prototype
2 parents 4b5674a + e566357 commit 15e5faf

File tree

145 files changed

+1896
-243
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+1896
-243
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: ATM Check Queries Run
2+
3+
# This check is required, therefore we must run it on all PRs, even if only Markdown has changed.
4+
on:
5+
workflow_dispatch:
6+
7+
jobs:
8+
hello-world:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: foo
13+
run: echo "Hello world"

cpp/ql/lib/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.4.2
2+
3+
No user-facing changes.
4+
15
## 0.4.1
26

37
No user-facing changes.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## 0.4.2
2+
3+
No user-facing changes.

cpp/ql/lib/codeql-pack.release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
lastReleaseVersion: 0.4.1
2+
lastReleaseVersion: 0.4.2

cpp/ql/lib/qlpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: codeql/cpp-all
2-
version: 0.4.2-dev
2+
version: 0.4.3-dev
33
groups: cpp
44
dbscheme: semmlecode.cpp.dbscheme
55
extractor: cpp

cpp/ql/src/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.4.2
2+
3+
### New Queries
4+
5+
* Added a new medium-precision query, `cpp/comma-before-misleading-indentation`, which detects instances of whitespace that have readability issues.
6+
7+
### Minor Analysis Improvements
8+
9+
* The "Unterminated variadic call" (`cpp/unterminated-variadic-call`) query has been tuned to produce fewer false positive results.
10+
* Fixed false positives from the "Unused static function" (`cpp/unused-static-function`) query in files that had errors during compilation.
11+
112
## 0.4.1
213

314
### Minor Analysis Improvements

cpp/ql/src/change-notes/2022-09-21-unused-static-function.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/src/change-notes/2022-09-30-comma-before-missing-indentation.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

cpp/ql/src/change-notes/2022-10-06-unterminated-variadic-call.md

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## 0.4.2
2+
3+
### New Queries
4+
5+
* Added a new medium-precision query, `cpp/comma-before-misleading-indentation`, which detects instances of whitespace that have readability issues.
6+
7+
### Minor Analysis Improvements
8+
9+
* The "Unterminated variadic call" (`cpp/unterminated-variadic-call`) query has been tuned to produce fewer false positive results.
10+
* Fixed false positives from the "Unused static function" (`cpp/unused-static-function`) query in files that had errors during compilation.

0 commit comments

Comments
 (0)