Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge releases/v2 into releases/v1 #1491

Merged
merged 32 commits into from
Jan 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
00c2a84
Update changelog and version after v2.1.38
invalid-email-address Jan 12, 2023
10f2d3c
Update checked-in dependencies
invalid-email-address Jan 12, 2023
2073a69
Merge pull request #1477 from github/mergeback/v2.1.38-to-main-515828d9
henrymercer Jan 12, 2023
259993b
python-setup: Handle poetry `virtualenvs.options.no-pip = true`
RasmusWL Dec 9, 2022
932b6a9
python-setup: Fix path for tests
RasmusWL Dec 12, 2022
ebf1b8f
Fix prettier problem
RasmusWL Dec 12, 2022
b810730
python-setup: Fix for python2
RasmusWL Dec 15, 2022
2649b66
python-setup: Fix site-packages selection without pip for Windows
RasmusWL Jan 13, 2023
2f6d174
python-setup: Make debug printing more obvious
RasmusWL Jan 13, 2023
4bd9723
`npm run build`
RasmusWL Dec 15, 2022
5ed1e98
python-setup: Fix site-package selection for unix
RasmusWL Jan 13, 2023
32be38e
Merge pull request #1431 from github/rasmuswl/poetry-always-install-pip
RasmusWL Jan 16, 2023
4b40a3a
Add a notice that CodeQL Action v1 is discontinued
henrymercer Jan 16, 2023
28c93a0
Add changelog note
henrymercer Jan 16, 2023
b625b62
Hide error message and stack for non-error
aeisenberg Jan 17, 2023
5b9b480
Update changelog
aeisenberg Jan 17, 2023
e6e3bf4
Update src/actions-util.ts
aeisenberg Jan 17, 2023
e199504
Update supported GitHub Enterprise Server versions.
web-flow Jan 18, 2023
40cfcb0
Merge pull request #1485 from github/aeisenberg/comitoid-message
aeisenberg Jan 18, 2023
9b1206e
Fix a bug in cli config parsing
aeisenberg Jan 18, 2023
60e58b4
Merge branch 'main' into henrymercer/discontinue-v1
henrymercer Jan 18, 2023
6dfc772
Add link to new changelog post
henrymercer Jan 18, 2023
d731c01
Merge pull request #1486 from github/update-supported-enterprise-serv…
henrymercer Jan 18, 2023
e0fd640
Merge pull request #1487 from github/aeisenberg/queries-check
aeisenberg Jan 18, 2023
597c204
Merge pull request #1481 from github/henrymercer/discontinue-v1
henrymercer Jan 18, 2023
48fa828
Update changelog for v2.1.39
invalid-email-address Jan 18, 2023
a34ca99
Merge pull request #1489 from github/update-v2.1.39-597c2041
henrymercer Jan 18, 2023
a5cefa8
Revert "Update version and changelog for v1.1.38"
invalid-email-address Jan 18, 2023
be59c06
Revert "Update checked-in dependencies"
invalid-email-address Jan 18, 2023
61d6a49
Merge remote-tracking branch 'origin/releases/v2' into update-v1.1.39…
invalid-email-address Jan 18, 2023
beac105
Update version and changelog for v1.1.39
invalid-email-address Jan 18, 2023
1e06504
Update checked-in dependencies
invalid-email-address Jan 18, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CodeQL Action Changelog

## 1.1.39 - 18 Jan 2023

- 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)
- 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)
- Avoid printing a stack trace and error message when the action fails to find the SHA at the
current directory. This will happen in several non-error states and so we now avoid cluttering the
log with this message. [#1485](https://github.com/github/codeql-action/pull/1485)

## 1.1.38 - 12 Jan 2023

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

- Update default CodeQL bundle version to 2.11.5. [#1412](https://github.com/github/codeql-action/pull/1412)
- 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)
- 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).
- 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)

## 1.1.35 - 01 Dec 2022

Expand Down Expand Up @@ -61,7 +69,7 @@ No user facing changes.
## 1.1.25 - 21 Sep 2022

- 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.
- Add support for Python automatic dependency installation with Poetry 1.2 [#1258](https://github.com/github/codeql-action/pull/1258).
- Add support for Python automatic dependency installation with Poetry 1.2 [#1258](https://github.com/github/codeql-action/pull/1258)

## 1.1.24 - 16 Sep 2022

Expand Down Expand Up @@ -312,7 +320,7 @@ No user facing changes.
## 1.0.4 - 28 Jun 2021

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

## 1.0.3 - 23 Jun 2021

Expand Down
5 changes: 3 additions & 2 deletions lib/actions-util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/actions-util.js.map

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions lib/analyze.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/analyze.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/api-compatibility.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "maximumVersion": "3.8", "minimumVersion": "3.3" }
{ "maximumVersion": "3.8", "minimumVersion": "3.4" }
10 changes: 7 additions & 3 deletions lib/codeql.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/codeql.js.map

Large diffs are not rendered by default.

24 changes: 6 additions & 18 deletions lib/util.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading