Skip to content

Commit c7f9125

Browse files
authored
Merge pull request #2248 from github/update-v3.25.1-c4fb45143
Merge main into releases/v3
2 parents df5a14d + 1c7e8b2 commit c7f9125

File tree

207 files changed

+5039
-2521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+5039
-2521
lines changed

.github/update-release-branch.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -186,16 +186,17 @@ def process_changelog_for_backports(source_branch_major_version, target_branch_m
186186
with open('CHANGELOG.md', 'r') as f:
187187

188188
# until we find the first section, just duplicate all lines
189-
while True:
189+
found_first_section = False
190+
while not found_first_section:
190191
line = f.readline()
191192
if not line:
192193
raise Exception('Could not find any change sections in CHANGELOG.md') # EOF
193194

194-
output += line
195195
if line.startswith('## '):
196196
line = line.replace(f'## {source_branch_major_version}', f'## {target_branch_major_version}')
197-
# we have found the first section, so now handle things differently
198-
break
197+
found_first_section = True
198+
199+
output += line
199200

200201
# found_content tracks whether we hit two headings in a row
201202
found_content = False

.github/workflows/__autobuild-direct-tracing.yml

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

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
44

55
Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.
66

7+
## 3.25.1 - 17 Apr 2024
8+
9+
- We are rolling out a feature in April/May 2024 that improves the reliability and performance of analyzing code when analyzing a compiled language with the `autobuild` [build mode](https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages#codeql-build-modes). [#2235](https://github.com/github/codeql-action/pull/2235)
10+
- Fix a bug where the `init` Action would fail if `--overwrite` was specified in `CODEQL_ACTION_EXTRA_OPTIONS`. [#2245](https://github.com/github/codeql-action/pull/2245)
11+
712
## 3.25.0 - 15 Apr 2024
813

914
- The deprecated feature for extracting dependencies for a Python analysis has been removed. [#2224](https://github.com/github/codeql-action/pull/2224)

lib/analyze-action.js

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

lib/analyze-action.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

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

0 commit comments

Comments
 (0)