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 main into releases/v2 #1905

Merged
merged 28 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
eac8f8c
Update changelog and version after v2.21.8
github-actions[bot] Sep 19, 2023
74e25cd
Update checked-in dependencies
github-actions[bot] Sep 19, 2023
01b8760
Merge pull request #1894 from github/mergeback/v2.21.8-to-main-6a28655e
henrymercer Sep 19, 2023
8e0b1c7
Add `continueOnError: true` for debug artifact upload (#1895)
angelapwen Sep 19, 2023
5897cf7
Update default bundle to codeql-bundle-v2.14.6
github-actions[bot] Sep 20, 2023
59aaff8
Add changelog note
github-actions[bot] Sep 20, 2023
c4c0678
C++: introduce automatic installation of dependencies in the autobuilder
redsun82 Sep 18, 2023
bf21875
C++: simplify `CppDependencyInstallation` interface
redsun82 Sep 20, 2023
765807b
Add `RUNNER_ENVIRONMENT` to the list of known default setup variables
redsun82 Sep 20, 2023
ab81590
Add changelog entry
redsun82 Sep 20, 2023
53bed11
Apply suggestions from code review
redsun82 Sep 21, 2023
c21e1dd
Lint and build
redsun82 Sep 21, 2023
49aaa9a
Merge pull request #1889 from github/redsun82/cpp-autoinstall-depende…
redsun82 Sep 21, 2023
724d643
Bump min. version for evaluator parallelism feature flag
nickrolfe Sep 22, 2023
d0c18ba
Warn when workflow analyzes the same language twice
henrymercer Sep 22, 2023
3078f51
Merge pull request #1900 from github/nickrolfe/fine-grained-version
nickrolfe Sep 22, 2023
431174f
Factor out `groupLanguagesByExtractor`
henrymercer Sep 22, 2023
d1a917f
Test that workflow with two different languages doesn't produce an error
henrymercer Sep 22, 2023
0dfaf4e
Add a changelog note
henrymercer Sep 22, 2023
0de36d4
Merge branch 'main' into henrymercer/check-for-duplicated-languages
henrymercer Sep 22, 2023
650a85e
Merge pull request #1901 from github/henrymercer/check-for-duplicated…
henrymercer Sep 25, 2023
41d2ffa
Enable sub-language file coverage behind a ff
henrymercer Sep 26, 2023
c95737b
Add changelog note
henrymercer Sep 26, 2023
cc65420
Merge branch 'main' into update-bundle/codeql-bundle-v2.14.6
alexet Sep 26, 2023
e548601
Merge pull request #1897 from github/update-bundle/codeql-bundle-v2.14.6
alexet Sep 26, 2023
4818fdd
Merge pull request #1903 from github/henrymercer/sublanguage-file-cov…
henrymercer Sep 26, 2023
27cb1e1
Bump the npm group with 6 updates (#1902)
dependabot[bot] Sep 26, 2023
d8cb5a2
Update changelog for v2.21.9
github-actions[bot] Sep 27, 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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.

## 2.21.9 - 27 Sep 2023

- Update default CodeQL bundle version to 2.14.6. [#1897](https://github.com/github/codeql-action/pull/1897)
- We are rolling out a feature in October 2023 that will improve the success rate of C/C++ autobuild. [#1889](https://github.com/github/codeql-action/pull/1889)
- We are rolling out a feature in October 2023 that will provide specific file coverage information for C and C++, Java and Kotlin, and JavaScript and TypeScript. Currently file coverage information for each of these pairs of languages is grouped together. [#1903](https://github.com/github/codeql-action/pull/1903)
- Add a warning to help customers avoid inadvertently analyzing the same CodeQL language in multiple matrix jobs. [#1901](https://github.com/github/codeql-action/pull/1901)

## 2.21.8 - 19 Sep 2023

- Add a deprecation warning for customers using CodeQL version 2.10.4 and earlier. These versions of CodeQL were discontinued on 12 September 2023 alongside GitHub Enterprise Server 3.6, and will be unsupported by the next minor release of the CodeQL Action. [#1884](https://github.com/github/codeql-action/pull/1884)
Expand Down
58 changes: 58 additions & 0 deletions lib/autobuild.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/autobuild.js.map

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

6 changes: 6 additions & 0 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.

2 changes: 1 addition & 1 deletion lib/debug-artifacts.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/debug-artifacts.js.map

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

8 changes: 4 additions & 4 deletions lib/defaults.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"bundleVersion": "codeql-bundle-v2.14.5",
"cliVersion": "2.14.5",
"priorBundleVersion": "codeql-bundle-v2.14.4",
"priorCliVersion": "2.14.4"
"bundleVersion": "codeql-bundle-v2.14.6",
"cliVersion": "2.14.6",
"priorBundleVersion": "codeql-bundle-v2.14.5",
"priorCliVersion": "2.14.5"
}
Loading