Skip to content

Commit 2bf00f7

Browse files
authored
Merge branch 'main' into henrymercer/prompt-v1-to-v2-upgrades
2 parents 02083c3 + 6ed7f70 commit 2bf00f7

File tree

7 files changed

+12
-7
lines changed

7 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,14 @@
22

33
## [UNRELEASED]
44

5+
No user facing changes.
6+
7+
## 2.1.9 - 27 Apr 2022
8+
59
- Add `working-directory` input to the `autobuild` action. [#1024](https://github.com/github/codeql-action/pull/1024)
610
- The `analyze` and `upload-sarif` actions will now wait up to 2 minutes for processing to complete after they have uploaded the results so they can report any processing errors that occurred. This behavior can be disabled by setting the `wait-for-processing` action input to `"false"`. [#1007](https://github.com/github/codeql-action/pull/1007)
711
- Update default CodeQL bundle version to 2.9.0.
12+
- Fix a bug where [status reporting fails on Windows](https://github.com/github/codeql-action/issues/1041). [#1042](https://github.com/github/codeql-action/pull/1042)
813

914
## 2.1.8 - 08 Apr 2022
1015

lib/codeql.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/.package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "2.1.9",
3+
"version": "2.1.10",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

src/codeql.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ async function getCodeQLForCmd(
641641
async getVersion() {
642642
let result = util.getCachedCodeQlVersion();
643643
if (result === undefined) {
644-
result = await runTool(cmd, ["version", "--format=terse"]);
644+
result = (await runTool(cmd, ["version", "--format=terse"])).trim();
645645
util.cacheCodeQlVersion(result);
646646
}
647647
return result;

0 commit comments

Comments
 (0)