Skip to content

Commit 82a3f64

Browse files
authored
Merge pull request #2630 from github/backport-v2.27.6-aa5781025
Merge releases/v3 into releases/v2
2 parents e2b57b0 + 0d39235 commit 82a3f64

11 files changed

+24
-17
lines changed

CHANGELOG.md

+4
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+
## 2.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
## 2.27.5 - 19 Nov 2024
812

913
No user facing changes.

lib/analyze.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/api-compatibility.json

+1-1
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

+4-4
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

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "2.27.5",
3+
"version": "2.27.6",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

src/analyze.ts

+4-1
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

+1-1
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

+4-4
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)