Skip to content

Commit 04c22aa

Browse files
authored
Merge pull request #192 from microsoft/main
FI from main to development branch
2 parents 4ed18e0 + 21faa42 commit 04c22aa

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,9 @@ on:
88
required: true
99
type: string
1010
release-type:
11-
description: 'Publish as a pre-release'
11+
description: 'Publish with pre-release version'
1212
required: false
13-
type: choice
14-
options:
15-
- alpha
16-
- beta
13+
type: string
1714

1815
jobs:
1916
publish:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,8 +145,8 @@ The versions below are the minumum required versions for WHCP certification. New
145145
| Windows 11, version 23H2 | [2.6.3](https://github.com/github/codeql-cli-binaries/releases/tag/v2.6.3) or [2.15.4](https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.4)| 1.0.13 (If using codeql 2.15.4)| N/A |0.9.0 (If using codeql 2.15.4) | WHCP_22H2 |
146146
| Windows 11 | [2.4.6](https://github.com/github/codeql-cli-binaries/releases/tag/v2.4.6) or [2.15.4](https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.4)| 1.0.13 (If using codeql 2.15.4)| N/A |0.9.0 (If using codeql 2.15.4) | WHCP_21H2 |
147147
| Windows 11, version 24H2 | [2.15.4](https://github.com/github/codeql-cli-binaries/releases/tag/v2.15.4) | 1.1.0 | N/A |0.9.0 | WHCP_24H2 |
148-
| Windows Server 2025 | [2.20.1](https://github.com/github/codeql-cli-binaries/releases/tag/v2.20.1) | 1.6.0 | 0.0.4 | N/A | <todo> |
149-
| Windows 11, version <todo> | [2.20.1](https://github.com/github/codeql-cli-binaries/releases/tag/v2.20.1) | 1.6.0 | 0.0.4 | N/A | <todo> |
148+
| Windows Server 2025 | [2.20.1](https://github.com/github/codeql-cli-binaries/releases/tag/v2.20.1) | 1.8.0 | 0.0.4 | N/A | WHCP_25H2 |
149+
| Windows 11, version 25H2 | [2.20.1](https://github.com/github/codeql-cli-binaries/releases/tag/v2.20.1) | 1.8.0 | 0.0.4 | N/A | WHCP_25H2 |
150150
151151
152152
### Special instructions for for WHCP_21H2 and WHCP_22H2 branches:

src/drivers/libraries/Suppression.qll

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ abstract class CASuppression extends PreprocessorPragma {
110110
this.getRuleName() = any(["__WARNING_PROTOTYPE_MISMATCH", "28127"]) and
111111
result = "lgtm[cpp/drivers/routine-function-type-not-expected]"
112112
or
113+
this.getRuleName() = any(["__WARNING_UNEXPECTED_IRQL_CHANGE", "28167"]) and
114+
result = "lgtm[cpp/drivers/irql-function-not-annotated]"
115+
or
113116
result = "lgtm[" + this.getRuleName() + "]"
114117
}
115118
}

0 commit comments

Comments
 (0)