Skip to content

Commit a34ca99

Browse files
authored
Merge pull request #1489 from github/update-v2.1.39-597c2041
Merge main into releases/v2
2 parents 515828d + 48fa828 commit a34ca99

24 files changed

+148
-113
lines changed

CHANGELOG.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CodeQL Action Changelog
22

3+
## 2.1.39 - 18 Jan 2023
4+
5+
- CodeQL Action v1 is now deprecated, and is no longer updated or supported. For better performance, improved security, and new features, upgrade to v2. For more information, see [this changelog post](https://github.blog/changelog/2023-01-18-code-scanning-codeql-action-v1-is-now-deprecated/). [#1467](https://github.com/github/codeql-action/pull/1466)
6+
- Python automatic dependency installation will no longer fail for projects using Poetry that specify `virtualenvs.options.no-pip = true` in their `poetry.toml`. [#1431](https://github.com/github/codeql-action/pull/1431)
7+
- Avoid printing a stack trace and error message when the action fails to find the SHA at the
8+
current directory. This will happen in several non-error states and so we now avoid cluttering the
9+
log with this message. [#1485](https://github.com/github/codeql-action/pull/1485)
10+
311
## 2.1.38 - 12 Jan 2023
412

513
- Update default CodeQL bundle version to 2.12.0. [#1466](https://github.com/github/codeql-action/pull/1466)
@@ -12,7 +20,7 @@
1220

1321
- Update default CodeQL bundle version to 2.11.5. [#1412](https://github.com/github/codeql-action/pull/1412)
1422
- Add a step that tries to upload a SARIF file for the workflow run when that workflow run fails. This will help better surface failed code scanning workflow runs. [#1393](https://github.com/github/codeql-action/pull/1393)
15-
- Python automatic dependency installation will no longer consider dependecy code installed in venv as user-written, for projects using Poetry that specify `virtualenvs.in-project = true` in their `poetry.toml`. [#1419](https://github.com/github/codeql-action/pull/1419).
23+
- Python automatic dependency installation will no longer consider dependency code installed in venv as user-written, for projects using Poetry that specify `virtualenvs.in-project = true` in their `poetry.toml`. [#1419](https://github.com/github/codeql-action/pull/1419)
1624

1725
## 2.1.35 - 01 Dec 2022
1826

@@ -61,7 +69,7 @@ No user facing changes.
6169
## 2.1.25 - 21 Sep 2022
6270

6371
- We will soon be rolling out a feature of the CodeQL Action that stores some information used to make future runs faster in the GitHub Actions cache. Initially, this will only be enabled on JavaScript repositories, but we plan to add more languages to this soon. The new feature can be disabled by passing the `trap-caching: false` option to your workflow's `init` step, for example if you are already using the GitHub Actions cache for a different purpose and are near the storage limit for it.
64-
- Add support for Python automatic dependency installation with Poetry 1.2 [#1258](https://github.com/github/codeql-action/pull/1258).
72+
- Add support for Python automatic dependency installation with Poetry 1.2 [#1258](https://github.com/github/codeql-action/pull/1258)
6573

6674
## 2.1.24 - 16 Sep 2022
6775

@@ -313,7 +321,7 @@ No user facing changes.
313321
## 1.0.4 - 28 Jun 2021
314322

315323
- Fix `RUNNER_TEMP environment variable must be set` when using runner. [#594](https://github.com/github/codeql-action/pull/594)
316-
- Fix couting of lines of code for C# projects. [#586](https://github.com/github/codeql-action/pull/586)
324+
- Fix counting of lines of code for C# projects. [#586](https://github.com/github/codeql-action/pull/586)
317325

318326
## 1.0.3 - 23 Jun 2021
319327

lib/actions-util.js

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

lib/actions-util.js.map

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

lib/analyze.js

+10-10
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.8", "minimumVersion": "3.3" }
1+
{ "maximumVersion": "3.8", "minimumVersion": "3.4" }

lib/codeql.js

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

lib/codeql.js.map

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

lib/util.js

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

0 commit comments

Comments
 (0)