Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9e9a842
Introduce a feature-flag to enable/disable lua-based tracing.
criemen May 5, 2022
db50ada
Add tests for the Lua feature flag.
criemen May 9, 2022
970e087
Fix linter errors.
criemen May 16, 2022
c88cf91
Update changelog and version after v2.1.11
invalid-email-address May 17, 2022
6f285ad
Update checked-in dependencies
invalid-email-address May 17, 2022
aaff818
Merge pull request #1079 from github/mergeback/v2.1.11-to-main-a3a6c128
edoardopirovano May 17, 2022
2faa3e1
Remove outdated guidance on missing analysis
marcogario May 17, 2022
f0705a6
Merge pull request #1081 from github/clarify_missing_base
marcogario May 19, 2022
4b77568
Choose the correct version to enable the Lua tracer for.
criemen May 25, 2022
255ffd4
Merge branch 'main' into criemen/lua-tracing-ff
criemen May 25, 2022
822fe5e
Merge pull request #1057 from github/criemen/lua-tracing-ff
criemen May 25, 2022
b36688d
Update default CodeQL to 2.9.3
cklin May 27, 2022
dbe6f21
Merge pull request #1084 from github/cklin/codeql-bundle-2.9.3
cklin May 31, 2022
3f00a12
Update changelog for v2.1.12
invalid-email-address Jun 1, 2022
27ea8f8
Merge pull request #1088 from github/update-v2.1.12-dbe6f211
cklin Jun 1, 2022
4c3af19
Revert "Update version and changelog for v1.1.11"
invalid-email-address Jun 1, 2022
af390c0
Revert "Update checked-in dependencies"
invalid-email-address Jun 1, 2022
b6b48ce
Merge remote-tracking branch 'origin/releases/v2' into update-v1.1.12…
invalid-email-address Jun 1, 2022
24d91cb
Update version and changelog for v1.1.12
invalid-email-address Jun 1, 2022
6efabfe
Update checked-in dependencies
invalid-email-address Jun 1, 2022
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
Prev Previous commit
Next Next commit
Revert "Update version and changelog for v1.1.11"
This reverts commit acc7a4b.
  • Loading branch information
github-actions[bot] committed Jun 1, 2022
commit 4c3af19a400066d3c03247084f29da5b6f8a3cf0
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,33 @@
# CodeQL Action Changelog

## 1.1.11 - 17 May 2022
## 2.1.11 - 17 May 2022

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

## 1.1.10 - 10 May 2022
## 2.1.10 - 10 May 2022

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

## 1.1.9 - 27 Apr 2022
## 2.1.9 - 27 Apr 2022

- Add `working-directory` input to the `autobuild` action. [#1024](https://github.com/github/codeql-action/pull/1024)
- 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)
- Update default CodeQL bundle version to 2.9.0.
- 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)

## 1.1.8 - 08 Apr 2022
## 2.1.8 - 08 Apr 2022

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

## 1.1.7 - 05 Apr 2022
## 2.1.7 - 05 Apr 2022

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

## 1.1.6 - 30 Mar 2022
## 2.1.6 - 30 Mar 2022

- [v2+ only] The CodeQL Action now runs on Node.js v16. [#1000](https://github.com/github/codeql-action/pull/1000)
- Update default CodeQL bundle version to 2.8.4. [#990](https://github.com/github/codeql-action/pull/990)
- 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)

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeql",
"version": "1.1.11",
"version": "2.1.11",
"private": true,
"description": "CodeQL action",
"scripts": {
Expand Down