Skip to content

Commit fd3190b

Browse files
Merge pull request #767 from github/update-v1.0.18-0bbf22e3
Merge main into v1
2 parents 03e7dda + 4a45fbe commit fd3190b

File tree

9 files changed

+45
-10
lines changed

9 files changed

+45
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL Action and CodeQL Runner Changelog
22

3+
## 1.0.18 - 08 Oct 2021
4+
5+
- Fixed a bug where some builds were no longer being traced correctly. [#766](https://github.com/github/codeql-action/pull/766)
6+
37
## 1.0.17 - 07 Oct 2021
48

59
- Update default CodeQL bundle version to 2.6.3. [#761](https://github.com/github/codeql-action/pull/761)

lib/codeql.js

Lines changed: 17 additions & 2 deletions
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": "1.0.17",
3+
"version": "1.0.18",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

runner/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.

runner/package.json

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

src/codeql.ts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,9 +212,25 @@ const CODEQL_VERSION_DIAGNOSTICS = "2.5.6";
212212
const CODEQL_VERSION_METRICS = "2.5.5";
213213
const CODEQL_VERSION_GROUP_RULES = "2.5.5";
214214
const CODEQL_VERSION_SARIF_GROUP = "2.5.3";
215-
export const CODEQL_VERSION_NEW_TRACING = "2.6.0"; // Use multi-language (>= 2.5.6) and indirect (>= 2.6.0) tracing.
216215
export const CODEQL_VERSION_COUNTS_LINES = "2.6.2";
217216

217+
/**
218+
* Version above which we use the CLI's indirect build tracing and
219+
* multi-language tracing features.
220+
*
221+
* There are currently three blockers on the CLI's side to enabling this:
222+
* (1) The logs directory should be created for a DB cluster, as some
223+
* autobuilders expect it to be present.
224+
* (2) The SEMMLE_PRELOAD_libtrace{32,64}? env variables need to be set.
225+
* (3) The .environment and .win32env files need to be created next to
226+
* the DB spec.
227+
*
228+
* Once _all_ of these are fixed, we can enable this by setting the
229+
* version flag below to the earliest version of the CLI that resolved
230+
* the above issues.
231+
*/
232+
export const CODEQL_VERSION_NEW_TRACING = "99.99.99";
233+
218234
function getCodeQLBundleName(): string {
219235
let platform: string;
220236
if (process.platform === "win32") {

0 commit comments

Comments
 (0)