Skip to content

Commit d0b6402

Browse files
author
github-actions[bot]
committed
Update version and changelog for v1.1.36
1 parent 64815a1 commit d0b6402

File tree

2 files changed

+32
-33
lines changed

2 files changed

+32
-33
lines changed

CHANGELOG.md

+31-32
Original file line numberDiff line numberDiff line change
@@ -1,150 +1,149 @@
11
# CodeQL Action Changelog
22

3-
## 2.1.36 - 08 Dec 2022
3+
## 1.1.36 - 08 Dec 2022
44

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

9-
## 2.1.35 - 01 Dec 2022
9+
## 1.1.35 - 01 Dec 2022
1010

1111
No user facing changes.
1212

13-
## 2.1.34 - 25 Nov 2022
13+
## 1.1.34 - 25 Nov 2022
1414

1515
- Update default CodeQL bundle version to 2.11.4. [#1391](https://github.com/github/codeql-action/pull/1391)
1616
- Fixed a bug where some the `init` action and the `analyze` action would have different sets of experimental feature flags enabled. [#1384](https://github.com/github/codeql-action/pull/1384)
1717

18-
## 2.1.33 - 16 Nov 2022
18+
## 1.1.33 - 16 Nov 2022
1919

2020
- Go is now analyzed in the same way as other compiled languages such as C/C++, C#, and Java. This completes the rollout of the feature described in [CodeQL Action version 2.1.27](#2127---06-oct-2022). [#1322](https://github.com/github/codeql-action/pull/1322)
2121
- Bump the minimum CodeQL bundle version to 2.6.3. [#1358](https://github.com/github/codeql-action/pull/1358)
2222

23-
## 2.1.32 - 14 Nov 2022
23+
## 1.1.32 - 14 Nov 2022
2424

2525
- Update default CodeQL bundle version to 2.11.3. [#1348](https://github.com/github/codeql-action/pull/1348)
2626
- Update the ML-powered additional query pack for JavaScript to version 0.4.0. [#1351](https://github.com/github/codeql-action/pull/1351)
2727

28-
## 2.1.31 - 04 Nov 2022
28+
## 1.1.31 - 04 Nov 2022
2929

3030
- The `rb/weak-cryptographic-algorithm` Ruby query has been updated to no longer report uses of hash functions such as `MD5` and `SHA1` even if they are known to be weak. These hash algorithms are used very often in non-sensitive contexts, making the query too imprecise in practice. For more information, see the corresponding change in the [github/codeql repository](https://github.com/github/codeql/pull/11129). [#1344](https://github.com/github/codeql-action/pull/1344)
3131

32-
## 2.1.30 - 02 Nov 2022
32+
## 1.1.30 - 02 Nov 2022
3333

3434
- Improve the error message when using CodeQL bundle version 2.7.2 and earlier in a workflow that runs on a runner image such as `ubuntu-22.04` that uses glibc version 2.34 and later. [#1334](https://github.com/github/codeql-action/pull/1334)
3535

36-
## 2.1.29 - 26 Oct 2022
36+
## 1.1.29 - 26 Oct 2022
3737

3838
- Update default CodeQL bundle version to 2.11.2. [#1320](https://github.com/github/codeql-action/pull/1320)
3939

40-
## 2.1.28 - 18 Oct 2022
40+
## 1.1.28 - 18 Oct 2022
4141

4242
- Update default CodeQL bundle version to 2.11.1. [#1294](https://github.com/github/codeql-action/pull/1294)
4343
- Replace uses of GitHub Actions command `set-output` because it is now deprecated. See more information in the [GitHub Changelog](https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/). [#1301](https://github.com/github/codeql-action/pull/1301)
4444

45-
## 2.1.27 - 06 Oct 2022
45+
## 1.1.27 - 06 Oct 2022
4646

4747
- We are rolling out a feature of the CodeQL Action in October 2022 that changes the way that Go code is analyzed to be more consistent with other compiled languages like C/C++, C#, and Java. You do not need to alter your code scanning workflows. If you encounter any problems, please [file an issue](https://github.com/github/codeql-action/issues) or open a private ticket with GitHub Support and request an escalation to engineering.
4848

49-
## 2.1.26 - 29 Sep 2022
49+
## 1.1.26 - 29 Sep 2022
5050

5151
- Update default CodeQL bundle version to 2.11.0. [#1267](https://github.com/github/codeql-action/pull/1267)
5252

53-
## 2.1.25 - 21 Sep 2022
53+
## 1.1.25 - 21 Sep 2022
5454

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

58-
## 2.1.24 - 16 Sep 2022
58+
## 1.1.24 - 16 Sep 2022
5959

6060
No user facing changes.
6161

62-
## 2.1.23 - 14 Sep 2022
62+
## 1.1.23 - 14 Sep 2022
6363

6464
- Allow CodeQL packs to be downloaded from GitHub Enterprise Server instances, using the new `registries` input for the `init` action. [#1221](https://github.com/github/codeql-action/pull/1221)
6565
- Update default CodeQL bundle version to 2.10.5. [#1240](https://github.com/github/codeql-action/pull/1240)
6666

67-
## 2.1.22 - 01 Sep 2022
67+
## 1.1.22 - 01 Sep 2022
6868

6969
- Downloading CodeQL packs has been moved to the `init` step. Previously, CodeQL packs were downloaded during the `analyze` step. [#1218](https://github.com/github/codeql-action/pull/1218)
7070
- Update default CodeQL bundle version to 2.10.4. [#1224](https://github.com/github/codeql-action/pull/1224)
7171
- The newly released [Poetry 1.2](https://python-poetry.org/blog/announcing-poetry-1.2.0) is not yet supported. In the most common case where the CodeQL Action is automatically installing Python dependencies, it will continue to install and use Poetry 1.1 on its own. However, in certain cases such as with self-hosted runners, you may need to ensure Poetry 1.1 is installed yourself.
7272

73-
## 2.1.21 - 25 Aug 2022
73+
## 1.1.21 - 25 Aug 2022
7474

7575
- Improve error messages when the code scanning configuration file includes an invalid `queries` block or an invalid `query-filters` block. [#1208](https://github.com/github/codeql-action/pull/1208)
7676
- Fix a bug where Go build tracing could fail on Windows. [#1209](https://github.com/github/codeql-action/pull/1209)
7777

78-
## 2.1.20 - 22 Aug 2022
78+
## 1.1.20 - 22 Aug 2022
7979

8080
No user facing changes.
8181

82-
## 2.1.19 - 17 Aug 2022
82+
## 1.1.19 - 17 Aug 2022
8383

8484
- Add the ability to filter queries from a code scanning run by using the `query-filters` option in the code scanning configuration file. [#1098](https://github.com/github/codeql-action/pull/1098)
8585
- In debug mode, debug artifacts are now uploaded even if a step in the Actions workflow fails. [#1159](https://github.com/github/codeql-action/pull/1159)
8686
- Update default CodeQL bundle version to 2.10.3. [#1178](https://github.com/github/codeql-action/pull/1178)
8787
- The combination of python2 and Pipenv is no longer supported. [#1181](https://github.com/github/codeql-action/pull/1181)
8888

89-
## 2.1.18 - 03 Aug 2022
89+
## 1.1.18 - 03 Aug 2022
9090

9191
- Update default CodeQL bundle version to 2.10.2. [#1156](https://github.com/github/codeql-action/pull/1156)
9292

93-
## 2.1.17 - 28 Jul 2022
93+
## 1.1.17 - 28 Jul 2022
9494

9595
- Update default CodeQL bundle version to 2.10.1. [#1143](https://github.com/github/codeql-action/pull/1143)
9696

97-
## 2.1.16 - 13 Jul 2022
97+
## 1.1.16 - 13 Jul 2022
9898

9999
- You can now quickly debug a job that uses the CodeQL Action by re-running the job from the GitHub UI and selecting the "Enable debug logging" option. [#1132](https://github.com/github/codeql-action/pull/1132)
100100
- You can now see diagnostic messages produced by the analysis in the logs of the `analyze` Action by enabling debug mode. To enable debug mode, pass `debug: true` to the `init` Action, or [enable step debug logging](https://docs.github.com/en/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging). This feature is available for CodeQL CLI version 2.10.0 and later. [#1133](https://github.com/github/codeql-action/pull/1133)
101101

102-
## 2.1.15 - 28 Jun 2022
102+
## 1.1.15 - 28 Jun 2022
103103

104104
- CodeQL query packs listed in the `packs` configuration field will be skipped if their target language is not being analyzed in the current Actions job. Previously, this would throw an error. [#1116](https://github.com/github/codeql-action/pull/1116)
105105
- The combination of python2 and poetry is no longer supported. See <https://github.com/actions/setup-python/issues/374> for more details. [#1124](https://github.com/github/codeql-action/pull/1124)
106106
- Update default CodeQL bundle version to 2.10.0. [#1123](https://github.com/github/codeql-action/pull/1123)
107107

108-
## 2.1.14 - 22 Jun 2022
108+
## 1.1.14 - 22 Jun 2022
109109

110110
No user facing changes.
111111

112-
## 2.1.13 - 21 Jun 2022
112+
## 1.1.13 - 21 Jun 2022
113113

114114
- Update default CodeQL bundle version to 2.9.4. [#1100](https://github.com/github/codeql-action/pull/1100)
115115

116-
## 2.1.12 - 01 Jun 2022
116+
## 1.1.12 - 01 Jun 2022
117117

118118
- Update default CodeQL bundle version to 2.9.3. [#1084](https://github.com/github/codeql-action/pull/1084)
119119

120-
## 2.1.11 - 17 May 2022
120+
## 1.1.11 - 17 May 2022
121121

122122
- Update default CodeQL bundle version to 2.9.2. [#1074](https://github.com/github/codeql-action/pull/1074)
123123

124-
## 2.1.10 - 10 May 2022
124+
## 1.1.10 - 10 May 2022
125125

126126
- Update default CodeQL bundle version to 2.9.1. [#1056](https://github.com/github/codeql-action/pull/1056)
127127
- When `wait-for-processing` is enabled, the workflow will now fail if there were any errors that occurred during processing of the analysis results.
128128

129-
## 2.1.9 - 27 Apr 2022
129+
## 1.1.9 - 27 Apr 2022
130130

131131
- Add `working-directory` input to the `autobuild` action. [#1024](https://github.com/github/codeql-action/pull/1024)
132132
- The `analyze` and `upload-sarif` actions will now wait up to 2 minutes for processing to complete after they have uploaded the results so they can report any processing errors that occurred. This behavior can be disabled by setting the `wait-for-processing` action input to `"false"`. [#1007](https://github.com/github/codeql-action/pull/1007)
133133
- Update default CodeQL bundle version to 2.9.0.
134134
- Fix a bug where [status reporting fails on Windows](https://github.com/github/codeql-action/issues/1041). [#1042](https://github.com/github/codeql-action/pull/1042)
135135

136-
## 2.1.8 - 08 Apr 2022
136+
## 1.1.8 - 08 Apr 2022
137137

138138
- Update default CodeQL bundle version to 2.8.5. [#1014](https://github.com/github/codeql-action/pull/1014)
139139
- Fix error where the init action would fail due to a GitHub API request that was taking too long to complete [#1025](https://github.com/github/codeql-action/pull/1025)
140140

141-
## 2.1.7 - 05 Apr 2022
141+
## 1.1.7 - 05 Apr 2022
142142

143143
- A bug where additional queries specified in the workflow file would sometimes not be respected has been fixed. [#1018](https://github.com/github/codeql-action/pull/1018)
144144

145-
## 2.1.6 - 30 Mar 2022
145+
## 1.1.6 - 30 Mar 2022
146146

147-
- [v2+ only] The CodeQL Action now runs on Node.js v16. [#1000](https://github.com/github/codeql-action/pull/1000)
148147
- Update default CodeQL bundle version to 2.8.4. [#990](https://github.com/github/codeql-action/pull/990)
149148
- Fix a bug where an invalid `commit_oid` was being sent to code scanning when a custom checkout path was being used. [#956](https://github.com/github/codeql-action/pull/956)
150149

package.json

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

0 commit comments

Comments
 (0)