Skip to content

Commit ef66aea

Browse files
committed
Merge branch 'main' into henrymercer/ignore-already-specified-flags
2 parents ade98b9 + 9b87e0a commit ef66aea

Some content is hidden

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

48 files changed

+495
-213
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Note that the only difference between `v2` and `v3` of the CodeQL Action is the
66

77
## [UNRELEASED]
88

9-
No user facing changes.
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)
1010

1111
## 3.25.0 - 15 Apr 2024
1212

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)