Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit aa57810

Browse filesBrowse files
authored
Merge pull request #2628 from github/update-v3.27.6-af49565b8
Merge main into releases/v3
2 parents f09c1c0 + 34e77b7 commit aa57810
Copy full SHA for aa57810

File tree

Expand file treeCollapse file tree

11 files changed

+24
-17
lines changed
Filter options
Expand file treeCollapse file tree

11 files changed

+24
-17
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
44

55
Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.
66

7+
## 3.27.6 - 03 Dec 2024
8+
9+
- Update default CodeQL bundle version to 2.19.4. [#2626](https://github.com/github/codeql-action/pull/2626)
10+
711
## 3.27.5 - 19 Nov 2024
812

913
No user facing changes.

‎lib/analyze.js

Copy file name to clipboardExpand all lines: lib/analyze.js
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/analyze.js.map

Copy file name to clipboardExpand all lines: lib/analyze.js.map
+1-1Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎lib/api-compatibility.json

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.15", "minimumVersion": "3.11" }
1+
{ "maximumVersion": "3.16", "minimumVersion": "3.11" }

‎lib/defaults.json

Copy file name to clipboard
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"bundleVersion": "codeql-bundle-v2.19.3",
3-
"cliVersion": "2.19.3",
4-
"priorBundleVersion": "codeql-bundle-v2.19.2",
5-
"priorCliVersion": "2.19.2"
2+
"bundleVersion": "codeql-bundle-v2.19.4",
3+
"cliVersion": "2.19.4",
4+
"priorBundleVersion": "codeql-bundle-v2.19.3",
5+
"priorCliVersion": "2.19.3"
66
}

‎node_modules/.package-lock.json

Copy file name to clipboardExpand all lines: node_modules/.package-lock.json
+1-1Lines 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

Copy file name to clipboardExpand all lines: package-lock.json
+2-2Lines 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

Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "3.27.5",
3+
"version": "3.27.6",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

‎src/analyze.ts

Copy file name to clipboardExpand all lines: src/analyze.ts
+4-1Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,10 @@ extensions:
428428
`;
429429

430430
let data = ranges
431-
.map((range) => ` - ["${range[0]}", ${range[1]}, ${range[2]}]\n`)
431+
.map(
432+
(range) =>
433+
` - ["${range.path}", ${range.startLine}, ${range.endLine}]\n`,
434+
)
432435
.join("");
433436
if (!data) {
434437
// Ensure that the data extension is not empty, so that a pull request with

‎src/api-compatibility.json

Copy file name to clipboard
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"maximumVersion": "3.15", "minimumVersion": "3.11"}
1+
{"maximumVersion": "3.16", "minimumVersion": "3.11"}

‎src/defaults.json

Copy file name to clipboard
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"bundleVersion": "codeql-bundle-v2.19.3",
3-
"cliVersion": "2.19.3",
4-
"priorBundleVersion": "codeql-bundle-v2.19.2",
5-
"priorCliVersion": "2.19.2"
2+
"bundleVersion": "codeql-bundle-v2.19.4",
3+
"cliVersion": "2.19.4",
4+
"priorBundleVersion": "codeql-bundle-v2.19.3",
5+
"priorCliVersion": "2.19.3"
66
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.