feat: sparse vector index + hybrid fusion + group-by (#4065, #4066, #4067) - #4070
Conversation
Not up to standards ⛔🔴 Issues
|
| Category | Results |
|---|---|
| ErrorProne | 1 medium |
| CodeStyle | 1 minor |
🟢 Metrics 320 complexity
Metric Results Complexity 320
NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.
There was a problem hiding this comment.
Code Review
This pull request introduces sparse vector indexing and hybrid retrieval fusion capabilities to ArcadeDB. It adds the LSM_SPARSE_VECTOR index type, which utilizes an LSM-Tree-backed posting list and the WAND algorithm for efficient top-K retrieval. New SQL functions vector.sparseNeighbors and vector.fuse (supporting RRF, DBSF, and LINEAR strategies) are implemented, along with groupBy and groupSize options for vector search results. Feedback focuses on several performance optimization opportunities, specifically addressing lock contention in the sparse index, reducing redundant database lookups in the fusion logic, and optimizing loop conditions and sorting within the search algorithms.
| synchronized (dimMaxWeight) { | ||
| dimMaxWeight.merge(dim, w, Math::max); | ||
| } |
There was a problem hiding this comment.
Using a synchronized block on a plain HashMap for every posting insertion creates a significant contention point during data ingestion. Since put is called for every non-zero dimension of every document, this global lock will bottleneck the DocumentIndexer on multi-core systems. Consider using a ConcurrentHashMap and its merge method to allow for higher concurrency.
| effectiveWeights[i] = 0.0f; | ||
| continue; | ||
| } | ||
| final long df = countPostings(qDim); |
There was a problem hiding this comment.
The countPostings method performs a full range scan of the posting list for a given dimension to calculate the Document Frequency (DF). Calling this for every non-zero dimension in the query vector within the topK method introduces a significant performance bottleneck ($O(\sum df_i)$). While the PR description mentions this will be optimized in a follow-up, the current implementation makes the IDF modifier extremely expensive for large indexes.
| synchronized (dimMaxWeight) { | ||
| if (!dimMaxWeightInitialized) { | ||
| initializeMaxWeightsLocked(); | ||
| dimMaxWeightInitialized = true; | ||
| } | ||
| return dimMaxWeight.getOrDefault(dim, 0.0f); | ||
| } | ||
| } | ||
|
|
||
| private void initializeMaxWeightsLocked() { | ||
| final IndexCursor cursor = underlyingIndex.iterator(true); | ||
| while (cursor.hasNext()) { | ||
| cursor.next(); | ||
| final Object[] keys = cursor.getKeys(); | ||
| if (keys == null || keys.length < 3) | ||
| continue; | ||
| if (!(keys[0] instanceof Number nDim) || !(keys[2] instanceof Number nW)) | ||
| continue; | ||
| dimMaxWeight.merge(nDim.intValue(), nW.floatValue(), Math::max); | ||
| } | ||
| } |
There was a problem hiding this comment.
The initializeMaxWeightsLocked method performs a full scan of the entire index while holding a lock on dimMaxWeight. This will cause a massive latency spike on the first query after the index is opened and will block all writer threads (which also synchronize on dimMaxWeight during put) for the duration of the scan. Consider performing this initialization in the background or persisting the max weights.
| for (int i = 0; i < cap; i++) { | ||
| final RidScore rs = finalRanked.get(i); | ||
| final Document record; | ||
| try { | ||
| record = (Document) db.lookupByRID(rs.rid, true); | ||
| } catch (final RecordNotFoundException ex) { | ||
| continue; | ||
| } | ||
| final LinkedHashMap<String, Object> entry = new LinkedHashMap<>(); | ||
| entry.put("record", record); | ||
| for (final String prop : record.getPropertyNames()) | ||
| entry.put(prop, record.get(prop)); | ||
| entry.put("@rid", record.getIdentity()); | ||
| entry.put("@type", record.getTypeName()); | ||
| entry.put("score", rs.score); | ||
| result.add(entry); | ||
| } |
There was a problem hiding this comment.
This loop performs redundant db.lookupByRID calls for results that were already loaded during the applyGroupBy phase (line 338). Additionally, manually iterating over property names and calling record.get(prop) is inefficient. Consider refactoring applyGroupBy to return the loaded Document objects and using record.toMap() to construct the result entry.
| } else if (perGroup.size() >= limit | ||
| && perGroup.values().stream().allMatch(c -> c >= groupSize)) { | ||
| break; |
There was a problem hiding this comment.
The condition perGroup.values().stream().allMatch(c -> c >= groupSize) is evaluated in every iteration of the results loop once the number of groups reaches the limit. This is an groupSize is 1, this check is redundant as perGroup.size() >= limit is sufficient. For groupSize > 1, it is more efficient to maintain a counter of 'completed' groups.
| } else if (perGroup.size() >= k | ||
| && perGroup.values().stream().allMatch(c -> c >= groupSize)) { | ||
| break; |
There was a problem hiding this comment.
The condition perGroup.values().stream().allMatch(c -> c >= groupSize) is evaluated in every iteration of the results loop once the number of groups reaches the k limit. This is an groupSize is 1, this check is redundant as perGroup.size() >= k is sufficient. For groupSize > 1, it is more efficient to maintain a counter of 'completed' groups.
| final Comparator<DimCursor> byCurrentRid = (a, b) -> a.currentRid.compareTo(b.currentRid); | ||
|
|
||
| while (liveCount > 0) { | ||
| Arrays.sort(cursors, 0, liveCount, byCurrentRid); |
There was a problem hiding this comment.
Sorting the cursors array in every iteration of the WAND loop is inefficient (PriorityQueue or a tournament tree to maintain the cursors sorted by their current RID would be more performant for high-dimensional queries.
Code Review: feat - sparse vector index + hybrid fusion + group-by (#4065, #4066, #4067)This is a substantial and well-executed set of features. Overall the implementation is clean and the design choices are sound. Below are observations grouped by concern. Correctness / Bugs
// instead of HashMap + synchronized blocks
private final ConcurrentHashMap<Integer, Float> dimMaxWeight = new ConcurrentHashMap<>();
// then in put():
dimMaxWeight.merge(dim, w, Math::max); // no synchronized needed
// and in getMaxWeight:
if (!dimMaxWeightInitialized) { ... } // still needs a lightweight guard - see next pointLazy init of
WAND cursor = underlying.range(true, new Object[] { dim, target }, true, new Object[] { dim }, true);The upper bound
Performance
} else if (perGroup.size() >= limit
&& perGroup.values().stream().allMatch(c -> c >= groupSize)) {This creates a stream allocation and a full traversal of the group map each time. Maintain a simple counter
Design / Style
Duplicate
Unused import SecurityNo resource exhaustion guard on the Test CoverageThe test suite is thorough. A few gaps worth noting:
SummaryThis is solid, feature-complete work with good javadoc, correct algorithm implementations (WAND, RRF/DBSF/LINEAR), and broad test coverage. The main actionable items before merge are:
|
Fixed issue #4072
|
test |
Code ReviewOverviewThis PR adds three tightly coupled features: a native LSM_SPARSE_VECTOR inverted index, server-side hybrid fusion via vector.fuse, and groupBy/groupSize options on vector neighbor functions. The motivation (Qdrant migration path from discussion #4044) is well-documented and the end-to-end test clearly validates the target use case. Strengths
IssuesHigh - Potential resource leak in DimCursorDimCursor wraps IndexCursor objects created via underlyingIndex.range(). Neither wandTopK nor seekTo closes the previous cursor before replacing it, and there is no close() on DimCursor itself. If IndexCursor holds file handles or off-heap memory, every query leaks resources proportional to the number of live query dimensions. In DimCursor.seekTo the old cursor is silently overwritten (the old cursor is leaked). Recommendation: add a close() method to DimCursor (delegating to cursor.close() if IndexCursor is Closeable/AutoCloseable) and call it from wandTopK before returning, and in seekTo before reassigning cursor. Medium - O(groups) stop-condition check per row in groupBy pathBoth SQLFunctionVectorNeighbors and SQLFunctionVectorSparseNeighbors check inside the inner loop whether all groups are full via perGroup.values().stream().allMatch(c -> c >= groupSize). This is O(number of groups) and is called on every candidate row. For large limit values or highly skewed group distributions, this dominates. A simple integer counter of full groups (incremented when a group reaches groupSize) makes the check O(1). Medium - Conditional super.fromJSON() in LSMSparseVectorIndexMetadataDuring index config loading in LocalSchema.readConfiguration(), the JSON passed to setMetadata(JSONObject) does not contain typeName, so super.fromJSON() is never called on the load path. If IndexMetadata.fromJSON reads fields that are important for the parent state, those fields are silently skipped on every database reopen. Worth verifying this is intentional and does not leave the parent object in an incomplete state. Low - Fully qualified class names in SQLFunctionVectorSparseNeighborsPer CLAUDE.md: "do not use fully qualified names if possible, always import the class and just use the name". In executeWithIndexes, java.util.HashMap is spelled out fully even though HashMap is already imported and used without qualification elsewhere in the file. Remove the java.util. prefix. Low - Duplicate inner record types (SourceRow / RidScore)Both hold (RID rid, float score) and are structurally identical inside SQLFunctionVectorFuse. Only one is needed; the two-pass materialization (SourceRow list then RidScore list) in the execute path could also be collapsed into one. Low - isOriginalCall heuristic fragilityThe method distinguishes an "original DocumentIndexer call" from a "transaction replay scalar posting" purely by checking that keys is a length-2 pair of array-typed values. The length-3 replay case (Integer, RID, Float) is safe today, but if the internal key structure changes this heuristic silently misfires in both directions. An explicit marker flag or a dedicated putRaw entry point for the replay path would be more resilient. Performance Note (already tracked)The O(df) scan in countPostings() for IDF is called once per query dimension on every topK invocation with modifier = "IDF". At large corpus sizes or high-cardinality query vectors this is a meaningful bottleneck. Already tracked as #4068. Minor
SummaryThe core algorithm (WAND, IDF, RRF/DBSF/LINEAR fusion, groupBy) is correctly implemented and well-tested. The main thing to address before merge is the cursor resource leak in DimCursor. The O(groups) stop-condition and the conditional super.fromJSON call are worth confirming. Everything else is minor polish. |
Code Review - PR #4070: Sparse vector index + hybrid fusion + group-byThis is a well-designed and substantial feature PR. The implementation is thoughtful, with good algorithm choices and solid test coverage. Below are my findings. OverviewThe PR adds three related features:
The algorithm choices are sound and the code structure follows project conventions closely. Bugs / Correctness Issues1. Resource leaks: unclosed `IndexCursor` in `initializeMaxWeights()` and `countPostings()` Both helpers iterate an `IndexCursor` without closing it, while the rest of the WAND code explicitly manages cursor lifecycle via `DimCursor.close()`: ```java private long countPostings(final int qDim) { Both methods should use try-with-resources or an explicit close in a finally block. 2. WAND correctness for negative document weights `put()` only skips zero weights but does not reject negative ones: If a user stores negative sparse weights, `dimMaxWeight` becomes an incorrect upper bound and WAND would prune candidates it should not. The index should either validate that weights are positive at write time or document that negative weights are unsupported. Performance3. `countPostings()` is O(df) per query dimension under IDF Each `topK()` call in IDF mode does a full scan of every query dimension's posting list to count `df`. For a corpus of 100k docs with average `df` of 1k and a 20-term query, that is 20 sequential O(1k) scans before the WAND loop begins. The PR acknowledges this ("Replaced by an incrementally maintained map in #4068") which is fine, but `dfCache` only helps when the same dim appears twice in one query - the per-query overhead is still O(sum of df over query dims). 4. `totalDocuments()` called once per `topK()` under IDF This calls `countType(typeName, false)` per query. Depending on how expensive a type count is, this could add measurable latency to every IDF query. Could be cached or moved outside the hot path. Code Quality5. `TypeLSMSparseVectorIndexBuilder.withMetadata(JSONObject)` returns void, breaking the fluent chain ```java The other `withMetadata(IndexMetadata)` overload correctly returns `TypeLSMSparseVectorIndexBuilder`. This one silently breaks the builder pattern and is inconsistent with `TypeLSMVectorIndexBuilder`. 6. Duplicate groupBy/groupSize post-filter logic The groupBy filtering loop - including the `perGroup` map, `filledGroups` counter, and the two-condition exit gate - is copy-pasted identically into `SQLFunctionVectorNeighbors.executeWithLSMVectorIndexes`, `SQLFunctionVectorSparseNeighbors.executeWithIndexes`, and `SQLFunctionVectorFuse.execute`. A protected helper on `SQLFunctionVectorAbstract` would consolidate this. Not blocking, but a maintenance concern as the three copies must stay in sync. 7. `System.out.println` in benchmark test `LSMSparseVectorIndexBenchmark.java` contains six `System.out.println` / `printf` calls. Per project conventions these should be replaced with `LogManager`. Benchmark output is arguably intentional, but if so the file should make this explicit. Minor / Style8. Studio: modifier value concatenated directly into SQL string `modifier` comes from a `` with two fixed options so injection is not possible in practice. If the select options ever expand, this pattern would need escaping. 9. `LSMSparseVectorIndexMetadata` fields are mutable public Consistent with `LSMVectorIndexMetadata` but allows external mutation of index metadata after creation. Not a regression, just noting. Test Coverage The 21 new tests are well-targeted and cover: persistence/reload, IDF correctness, concurrency, benchmarks, all three fusion strategies, score-less sources with RRF, groupBy/groupSize on all three functions, nested field paths, missing paths, over-fetch cap rejection, and the full E2E Qdrant-migration scenario. One gap: there is no test for negative document weights. Given the WAND correctness issue (#2 above), a test verifying the behaviour (or a thrown validation exception) would close the loop. Summary Solid, well-documented implementation. Two items need attention before merge: Resource leak - close the `IndexCursor` in `initializeMaxWeights()` and `countPostings()` (straightforward try-with-resources fix). Fluent builder - `TypeLSMSparseVectorIndexBuilder.withMetadata(JSONObject)` should return `this`. The negative-weight WAND issue (#2) is worth a decision: either document the constraint or add a write-time validation check. Everything else is either a planned follow-up (#4068) or low-severity style. |
…4067) (#4070) * feat: implemented lsm vector sparse index Fixed issue #4065 * Added VectorFuse function * feat: vector groupBy + groupSize Fixed #4067 * Added test case * Fixed issue #4072 Fixed issue #4072 * implemented claude code review * Implemented last batch of claude claude review output (cherry picked from commit 66d6757)
…ArcadeData#4066, ArcadeData#4067) (ArcadeData#4070) * feat: implemented lsm vector sparse index Fixed issue ArcadeData#4065 * Added VectorFuse function * feat: vector groupBy + groupSize Fixed ArcadeData#4067 * Added test case * Fixed issue ArcadeData#4072 Fixed issue ArcadeData#4072 * implemented claude code review * Implemented last batch of claude claude review output
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.183` | `1.0.187` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.37.4` | `4.37.6` | | [graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm) | `1.6.3` | `1.6.4` | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.37.4` | `4.37.6` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.37.4` | `4.37.6` | Updates `anthropics/claude-code-action` from 1.0.183 to 1.0.187 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.187 > -------- > > What's Changed > -------------- > > * Redact common credential patterns from published run output by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1595](https://redirect.github.com/anthropics/claude-code-action/pull/1595) > * Scope the config snapshot to files inside the working tree by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1596](https://redirect.github.com/anthropics/claude-code-action/pull/1596) > * Run checkout auth cleanup when API commit signing is enabled by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1597](https://redirect.github.com/anthropics/claude-code-action/pull/1597) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.187> > > v1.0.186 > -------- > > What's Changed > -------------- > > * Invoke the formatter directly from the format hook by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1594](https://redirect.github.com/anthropics/claude-code-action/pull/1594) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.186> > > v1.0.185 > -------- > > What's Changed > -------------- > > * Derive trigger timestamps for issues and pull\_request events by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1592](https://redirect.github.com/anthropics/claude-code-action/pull/1592) > * Pin bun config for MCP server processes by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1589](https://redirect.github.com/anthropics/claude-code-action/pull/1589) > * Match downloaded images to their source URLs by asset identifier by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1588](https://redirect.github.com/anthropics/claude-code-action/pull/1588) > * Check collaborator permissions for workflow\_run events by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1590](https://redirect.github.com/anthropics/claude-code-action/pull/1590) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.185> > > v1.0.184 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.184> Commits * [`1623c36`](anthropics/claude-code-action@1623c36) chore: bump Claude Code to 2.1.224 and Agent SDK to 0.3.224 * [`96e281f`](anthropics/claude-code-action@96e281f) Run checkout auth cleanup when API commit signing is enabled ([#1597](https://redirect.github.com/anthropics/claude-code-action/issues/1597)) * [`e1fc925`](anthropics/claude-code-action@e1fc925) Scope the config snapshot to files inside the working tree ([#1596](https://redirect.github.com/anthropics/claude-code-action/issues/1596)) * [`0aee57a`](anthropics/claude-code-action@0aee57a) Redact common credential patterns from published run output ([#1595](https://redirect.github.com/anthropics/claude-code-action/issues/1595)) * [`c038e4d`](anthropics/claude-code-action@c038e4d) chore: bump Claude Code to 2.1.223 and Agent SDK to 0.3.223 * [`4c04887`](anthropics/claude-code-action@4c04887) Invoke the formatter directly from the format hook ([#1594](https://redirect.github.com/anthropics/claude-code-action/issues/1594)) * [`9db594c`](anthropics/claude-code-action@9db594c) chore: bump Claude Code to 2.1.222 and Agent SDK to 0.3.222 * [`acb0385`](anthropics/claude-code-action@acb0385) Check collaborator permissions for workflow\_run events ([#1590](https://redirect.github.com/anthropics/claude-code-action/issues/1590)) * [`b80a0f0`](anthropics/claude-code-action@b80a0f0) Match downloaded images to their source URLs by asset identifier ([#1588](https://redirect.github.com/anthropics/claude-code-action/issues/1588)) * [`6fb6bb6`](anthropics/claude-code-action@6fb6bb6) Pin bun config for MCP server processes ([#1589](https://redirect.github.com/anthropics/claude-code-action/issues/1589)) * Additional commits viewable in [compare view](anthropics/claude-code-action@be7b93b...1623c36) Updates `github/codeql-action/upload-sarif` from 4.37.4 to 4.37.6 Release notes *Sourced from [github/codeql-action/upload-sarif's releases](https://github.com/github/codeql-action/releases).* > v4.37.6 > ------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > v4.37.5 > ------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) Changelog *Sourced from [github/codeql-action/upload-sarif's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) > * In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://redirect.github.com/github/codeql-action/pull/3973) > > 4.36.3 - 01 Jul 2026 > -------------------- > > No user facing changes. > > 4.36.2 - 04 Jun 2026 > -------------------- > > * Cache CodeQL CLI version information across Actions steps. [#3943](https://redirect.github.com/github/codeql-action/pull/3943) > * Reduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. [#3937](https://redirect.github.com/github/codeql-action/pull/3937) > * Update default CodeQL bundle version to [2.25.6](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6). [#3948](https://redirect.github.com/github/codeql-action/pull/3948) ... (truncated) Commits * [`5595cca`](github/codeql-action@5595cca) Merge pull request [#4071](https://redirect.github.com/github/codeql-action/issues/4071) from github/update-v4.37.6-6a9359a1b * [`ec9c757`](github/codeql-action@ec9c757) Add change note for PR 4070 * [`45c8742`](github/codeql-action@45c8742) Update changelog for v4.37.6 * [`6a9359a`](github/codeql-action@6a9359a) Merge pull request [#4070](https://redirect.github.com/github/codeql-action/issues/4070) from github/mbg/remote-address/change-file-default * [`065cdc0`](github/codeql-action@065cdc0) Change `DEFAULT_CONFIG_FILE_NAME` * [`f99dd5a`](github/codeql-action@f99dd5a) Merge pull request [#4066](https://redirect.github.com/github/codeql-action/issues/4066) from github/dependabot/npm\_and\_yarn/js-yaml-5.2.2 * [`1804b21`](github/codeql-action@1804b21) Merge pull request [#4068](https://redirect.github.com/github/codeql-action/issues/4068) from github/mergeback/v4.37.5-to-main-d1ba80a1 * [`3020a2f`](github/codeql-action@3020a2f) Rebuild * [`93c3a5a`](github/codeql-action@93c3a5a) Update changelog and version after v4.37.5 * [`d1ba80a`](github/codeql-action@d1ba80a) Merge pull request [#4067](https://redirect.github.com/github/codeql-action/issues/4067) from github/update-v4.37.5-1cd4d01d5 * Additional commits viewable in [compare view](github/codeql-action@f205ea1...5595cca) Updates `graalvm/setup-graalvm` from 1.6.3 to 1.6.4 Release notes *Sourced from [graalvm/setup-graalvm's releases](https://github.com/graalvm/setup-graalvm/releases).* > v1.6.4 > ------ > > What's Changed > -------------- > > * Bump js-yaml from 5.2.0 to 5.2.2 by [`@dependabot`](https://github.com/dependabot)[bot] in [graalvm/setup-graalvm#230](https://redirect.github.com/graalvm/setup-graalvm/pull/230) > * Bump the "all" group with 2 updates across multiple ecosystems by [`@dependabot`](https://github.com/dependabot)[bot] in [graalvm/setup-graalvm#232](https://redirect.github.com/graalvm/setup-graalvm/pull/232) > > **Full Changelog**: <graalvm/setup-graalvm@v1.6.3...v1.6.4> Commits * [`5298d94`](graalvm/setup-graalvm@5298d94) Bump version to `1.6.4`. * [`fdb7cac`](graalvm/setup-graalvm@fdb7cac) Stay on typescript `6.0.3`. * [`ecfa7c7`](graalvm/setup-graalvm@ecfa7c7) Bump the all group with 3 updates * [`4b14c74`](graalvm/setup-graalvm@4b14c74) Drop build jobs of outdated `22.3.3`. * [`1f08baa`](graalvm/setup-graalvm@1f08baa) Drop `native-image` gu component. * [`fe57852`](graalvm/setup-graalvm@fe57852) Update dependencies. * [`785f14e`](graalvm/setup-graalvm@785f14e) Use `17.0.20` instead of `17.0.8`. * [`33fc590`](graalvm/setup-graalvm@33fc590) Bump js-yaml from 5.2.0 to 5.2.2 * See full diff in [compare view](graalvm/setup-graalvm@0def53c...5298d94) Updates `github/codeql-action/init` from 4.37.4 to 4.37.6 Release notes *Sourced from [github/codeql-action/init's releases](https://github.com/github/codeql-action/releases).* > v4.37.6 > ------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > v4.37.5 > ------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) Changelog *Sourced from [github/codeql-action/init's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) > * In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://redirect.github.com/github/codeql-action/pull/3973) > > 4.36.3 - 01 Jul 2026 > -------------------- > > No user facing changes. > > 4.36.2 - 04 Jun 2026 > -------------------- > > * Cache CodeQL CLI version information across Actions steps. [#3943](https://redirect.github.com/github/codeql-action/pull/3943) > * Reduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. [#3937](https://redirect.github.com/github/codeql-action/pull/3937) > * Update default CodeQL bundle version to [2.25.6](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6). [#3948](https://redirect.github.com/github/codeql-action/pull/3948) ... (truncated) Commits * [`5595cca`](github/codeql-action@5595cca) Merge pull request [#4071](https://redirect.github.com/github/codeql-action/issues/4071) from github/update-v4.37.6-6a9359a1b * [`ec9c757`](github/codeql-action@ec9c757) Add change note for PR 4070 * [`45c8742`](github/codeql-action@45c8742) Update changelog for v4.37.6 * [`6a9359a`](github/codeql-action@6a9359a) Merge pull request [#4070](https://redirect.github.com/github/codeql-action/issues/4070) from github/mbg/remote-address/change-file-default * [`065cdc0`](github/codeql-action@065cdc0) Change `DEFAULT_CONFIG_FILE_NAME` * [`f99dd5a`](github/codeql-action@f99dd5a) Merge pull request [#4066](https://redirect.github.com/github/codeql-action/issues/4066) from github/dependabot/npm\_and\_yarn/js-yaml-5.2.2 * [`1804b21`](github/codeql-action@1804b21) Merge pull request [#4068](https://redirect.github.com/github/codeql-action/issues/4068) from github/mergeback/v4.37.5-to-main-d1ba80a1 * [`3020a2f`](github/codeql-action@3020a2f) Rebuild * [`93c3a5a`](github/codeql-action@93c3a5a) Update changelog and version after v4.37.5 * [`d1ba80a`](github/codeql-action@d1ba80a) Merge pull request [#4067](https://redirect.github.com/github/codeql-action/issues/4067) from github/update-v4.37.5-1cd4d01d5 * Additional commits viewable in [compare view](github/codeql-action@f205ea1...5595cca) Updates `github/codeql-action/analyze` from 4.37.4 to 4.37.6 Release notes *Sourced from [github/codeql-action/analyze's releases](https://github.com/github/codeql-action/releases).* > v4.37.6 > ------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > v4.37.5 > ------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) Changelog *Sourced from [github/codeql-action/analyze's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) > * In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://redirect.github.com/github/codeql-action/pull/3973) > > 4.36.3 - 01 Jul 2026 > -------------------- > > No user facing changes. > > 4.36.2 - 04 Jun 2026 > -------------------- > > * Cache CodeQL CLI version information across Actions steps. [#3943](https://redirect.github.com/github/codeql-action/pull/3943) > * Reduce requests while waiting for analysis processing by using exponential backoff when polling SARIF processing status. [#3937](https://redirect.github.com/github/codeql-action/pull/3937) > * Update default CodeQL bundle version to [2.25.6](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.6). [#3948](https://redirect.github.com/github/codeql-action/pull/3948) ... (truncated) Commits * [`5595cca`](github/codeql-action@5595cca) Merge pull request [#4071](https://redirect.github.com/github/codeql-action/issues/4071) from github/update-v4.37.6-6a9359a1b * [`ec9c757`](github/codeql-action@ec9c757) Add change note for PR 4070 * [`45c8742`](github/codeql-action@45c8742) Update changelog for v4.37.6 * [`6a9359a`](github/codeql-action@6a9359a) Merge pull request [#4070](https://redirect.github.com/github/codeql-action/issues/4070) from github/mbg/remote-address/change-file-default * [`065cdc0`](github/codeql-action@065cdc0) Change `DEFAULT_CONFIG_FILE_NAME` * [`f99dd5a`](github/codeql-action@f99dd5a) Merge pull request [#4066](https://redirect.github.com/github/codeql-action/issues/4066) from github/dependabot/npm\_and\_yarn/js-yaml-5.2.2 * [`1804b21`](github/codeql-action@1804b21) Merge pull request [#4068](https://redirect.github.com/github/codeql-action/issues/4068) from github/mergeback/v4.37.5-to-main-d1ba80a1 * [`3020a2f`](github/codeql-action@3020a2f) Rebuild * [`93c3a5a`](github/codeql-action@93c3a5a) Update changelog and version after v4.37.5 * [`d1ba80a`](github/codeql-action@d1ba80a) Merge pull request [#4067](https://redirect.github.com/github/codeql-action/issues/4067) from github/update-v4.37.5-1cd4d01d5 * Additional commits viewable in [compare view](github/codeql-action@f205ea1...5595cca) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [zgosalvez/github-actions-ensure-sha-pinned-actions](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions) | `5.0.6` | `5.0.7` | | [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.187` | `1.0.192` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.37.6` | `4.37.7` | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.37.6` | `4.37.7` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.37.6` | `4.37.7` | Updates `zgosalvez/github-actions-ensure-sha-pinned-actions` from 5.0.6 to 5.0.7 Release notes *Sourced from [zgosalvez/github-actions-ensure-sha-pinned-actions's releases](https://github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/releases).* > v5.0.7 > ------ > > What's Changed > -------------- > > * Bump actions/setup-node from 6.4.0 to 7.0.0 by [`@dependabot`](https://github.com/dependabot)[bot] in [zgosalvez/github-actions-ensure-sha-pinned-actions#337](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/337) > * Bump actions/checkout from 7.0.0 to 7.0.1 by [`@dependabot`](https://github.com/dependabot)[bot] in [zgosalvez/github-actions-ensure-sha-pinned-actions#336](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/336) > * Bump zgosalvez/github-actions-get-action-runs-using-version from 3.0.2 to 3.0.3 by [`@dependabot`](https://github.com/dependabot)[bot] in [zgosalvez/github-actions-ensure-sha-pinned-actions#335](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/335) > * Bump undici from 6.27.0 to 6.28.0 by [`@dependabot`](https://github.com/dependabot)[bot] in [zgosalvez/github-actions-ensure-sha-pinned-actions#338](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/338) > * Fix by [`@zgosalvez`](https://github.com/zgosalvez) in [zgosalvez/github-actions-ensure-sha-pinned-actions#339](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/339) > * Fix by [`@zgosalvez`](https://github.com/zgosalvez) in [zgosalvez/github-actions-ensure-sha-pinned-actions#340](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/340) > * Fix by [`@zgosalvez`](https://github.com/zgosalvez) in [zgosalvez/github-actions-ensure-sha-pinned-actions#341](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/pull/341) > > **Full Changelog**: <zgosalvez/github-actions-ensure-sha-pinned-actions@v5...v5.0.7> Commits * [`c5fc58b`](zgosalvez/github-actions-ensure-sha-pinned-actions@c5fc58b) Fix ([#341](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/341)) * [`c8f8804`](zgosalvez/github-actions-ensure-sha-pinned-actions@c8f8804) Fix ([#340](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/340)) * [`5321e41`](zgosalvez/github-actions-ensure-sha-pinned-actions@5321e41) Fix ([#339](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/339)) * [`e7e8129`](zgosalvez/github-actions-ensure-sha-pinned-actions@e7e8129) Bump undici from 6.27.0 to 6.28.0 ([#338](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/338)) * [`84ca7d6`](zgosalvez/github-actions-ensure-sha-pinned-actions@84ca7d6) Bump zgosalvez/github-actions-get-action-runs-using-version ([#335](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/335)) * [`eb88057`](zgosalvez/github-actions-ensure-sha-pinned-actions@eb88057) Bump actions/checkout from 7.0.0 to 7.0.1 ([#336](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/336)) * [`a1ee078`](zgosalvez/github-actions-ensure-sha-pinned-actions@a1ee078) Bump actions/setup-node from 6.4.0 to 7.0.0 ([#337](https://redirect.github.com/zgosalvez/github-actions-ensure-sha-pinned-actions/issues/337)) * See full diff in [compare view](zgosalvez/github-actions-ensure-sha-pinned-actions@46cfe80...c5fc58b) Updates `anthropics/claude-code-action` from 1.0.187 to 1.0.192 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.192 > -------- > > What's Changed > -------------- > > * fix(mcp): paginate GitHub Actions results by [`@abhinavkr26104`](https://github.com/abhinavkr26104) in [anthropics/claude-code-action#1629](https://redirect.github.com/anthropics/claude-code-action/pull/1629) > * fix(summary): keep every text block in structured tool results by [`@Neal006`](https://github.com/Neal006) in [anthropics/claude-code-action#1619](https://redirect.github.com/anthropics/claude-code-action/pull/1619) > * fix(mcp): detect binary files by content instead of extension allowlist by [`@henriquepe`](https://github.com/henriquepe) in [anthropics/claude-code-action#1633](https://redirect.github.com/anthropics/claude-code-action/pull/1633) > > New Contributors > ---------------- > > * [`@abhinavkr26104`](https://github.com/abhinavkr26104) made their first contribution in [anthropics/claude-code-action#1629](https://redirect.github.com/anthropics/claude-code-action/pull/1629) > * [`@Neal006`](https://github.com/Neal006) made their first contribution in [anthropics/claude-code-action#1619](https://redirect.github.com/anthropics/claude-code-action/pull/1619) > * [`@henriquepe`](https://github.com/henriquepe) made their first contribution in [anthropics/claude-code-action#1633](https://redirect.github.com/anthropics/claude-code-action/pull/1633) > > **Full Changelog**: <anthropics/claude-code-action@v1.0.191...v1.0.192> > > v1.0.191 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.190...v1.0.191> > > v1.0.190 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.190> > > v1.0.189 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.189> > > v1.0.188 > -------- > > What's Changed > -------------- > > * Enforce max-turn limits from claude\_args by [`@ulofiai`](https://github.com/ulofiai) in [anthropics/claude-code-action#1607](https://redirect.github.com/anthropics/claude-code-action/pull/1607) > * fix: handle null files field from GraphQL on very large PRs by [`@leepokai`](https://github.com/leepokai) in [anthropics/claude-code-action#1593](https://redirect.github.com/anthropics/claude-code-action/pull/1593) > * fix: support labeled action for pull\_request events in track\_progress by [`@takakisatojp`](https://github.com/takakisatojp) in [anthropics/claude-code-action#1586](https://redirect.github.com/anthropics/claude-code-action/pull/1586) > * fix: match label\_trigger case-insensitively by [`@sahilempire`](https://github.com/sahilempire) in [anthropics/claude-code-action#1576](https://redirect.github.com/anthropics/claude-code-action/pull/1576) > * docs: fix broken Bedrock anchor in cloud-providers.md by [`@shoemoney`](https://github.com/shoemoney) in [anthropics/claude-code-action#1579](https://redirect.github.com/anthropics/claude-code-action/pull/1579) > * docs: replace removed base-action inputs with claude\_args and settings by [`@fallintoplace`](https://github.com/fallintoplace) in [anthropics/claude-code-action#1550](https://redirect.github.com/anthropics/claude-code-action/pull/1550) > * fix(cache): disable setup-bun cache to avoid 5-retry HTML-error burn by [`@necofuryai`](https://github.com/necofuryai) in [anthropics/claude-code-action#1580](https://redirect.github.com/anthropics/claude-code-action/pull/1580) > * ci: pass base-action tool restrictions through claude\_args by [`@fallintoplace`](https://github.com/fallintoplace) in [anthropics/claude-code-action#1552](https://redirect.github.com/anthropics/claude-code-action/pull/1552) > * fix(mcp): stop retrying deterministic reference update failures by [`@fallintoplace`](https://github.com/fallintoplace) in [anthropics/claude-code-action#1551](https://redirect.github.com/anthropics/claude-code-action/pull/1551) > * fix: expose conclusion as a root action output by [`@fallintoplace`](https://github.com/fallintoplace) in [anthropics/claude-code-action#1549](https://redirect.github.com/anthropics/claude-code-action/pull/1549) > * fix(branch): validate generated branch name under commit signing by [`@rishavnaskar`](https://github.com/rishavnaskar) in [anthropics/claude-code-action#1582](https://redirect.github.com/anthropics/claude-code-action/pull/1582) > * fix(branch): collapse empty path segments in branch\_name\_template by [`@NickNojiri`](https://github.com/NickNojiri) in [anthropics/claude-code-action#1539](https://redirect.github.com/anthropics/claude-code-action/pull/1539) > > New Contributors > ---------------- > > * [`@ulofiai`](https://github.com/ulofiai) made their first contribution in [anthropics/claude-code-action#1607](https://redirect.github.com/anthropics/claude-code-action/pull/1607) > * [`@leepokai`](https://github.com/leepokai) made their first contribution in [anthropics/claude-code-action#1593](https://redirect.github.com/anthropics/claude-code-action/pull/1593) > * [`@takakisatojp`](https://github.com/takakisatojp) made their first contribution in [anthropics/claude-code-action#1586](https://redirect.github.com/anthropics/claude-code-action/pull/1586) > * [`@sahilempire`](https://github.com/sahilempire) made their first contribution in [anthropics/claude-code-action#1576](https://redirect.github.com/anthropics/claude-code-action/pull/1576) > * [`@shoemoney`](https://github.com/shoemoney) made their first contribution in [anthropics/claude-code-action#1579](https://redirect.github.com/anthropics/claude-code-action/pull/1579) > * [`@fallintoplace`](https://github.com/fallintoplace) made their first contribution in [anthropics/claude-code-action#1550](https://redirect.github.com/anthropics/claude-code-action/pull/1550) > * [`@necofuryai`](https://github.com/necofuryai) made their first contribution in [anthropics/claude-code-action#1580](https://redirect.github.com/anthropics/claude-code-action/pull/1580) > * [`@rishavnaskar`](https://github.com/rishavnaskar) made their first contribution in [anthropics/claude-code-action#1582](https://redirect.github.com/anthropics/claude-code-action/pull/1582) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.188> Commits * [`e63208c`](anthropics/claude-code-action@e63208c) chore: bump Claude Code to 2.1.232 and Agent SDK to 0.3.232 * [`dc33e8a`](anthropics/claude-code-action@dc33e8a) chore: bump Claude Code to 2.1.231 and Agent SDK to 0.3.231 * [`c58ad32`](anthropics/claude-code-action@c58ad32) chore: bump Claude Code to 2.1.229 and Agent SDK to 0.3.229 * [`dfb8fc7`](anthropics/claude-code-action@dfb8fc7) fix(mcp): detect binary files by content instead of extension allowlist ([#1633](https://redirect.github.com/anthropics/claude-code-action/issues/1633)) * [`a2489ef`](anthropics/claude-code-action@a2489ef) fix(summary): keep every text block in structured tool results ([#1619](https://redirect.github.com/anthropics/claude-code-action/issues/1619)) * [`8b87458`](anthropics/claude-code-action@8b87458) fix: paginate GitHub Actions MCP responses ([#1629](https://redirect.github.com/anthropics/claude-code-action/issues/1629)) * [`239e3a7`](anthropics/claude-code-action@239e3a7) chore: bump Claude Code to 2.1.228 and Agent SDK to 0.3.228 * [`5ef2e55`](anthropics/claude-code-action@5ef2e55) chore: bump Claude Code to 2.1.227 and Agent SDK to 0.3.227 * [`6b082c4`](anthropics/claude-code-action@6b082c4) chore: bump Claude Code to 2.1.226 and Agent SDK to 0.3.226 * [`7ff6806`](anthropics/claude-code-action@7ff6806) chore: bump Claude Code to 2.1.225 and Agent SDK to 0.3.225 * Additional commits viewable in [compare view](anthropics/claude-code-action@1623c36...e63208c) Updates `github/codeql-action/upload-sarif` from 4.37.6 to 4.37.7 Release notes *Sourced from [github/codeql-action/upload-sarif's releases](https://github.com/github/codeql-action/releases).* > v4.37.7 > ------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) Changelog *Sourced from [github/codeql-action/upload-sarif's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.7 - 13 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) > * In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://redirect.github.com/github/codeql-action/pull/3973) > > 4.36.3 - 01 Jul 2026 > -------------------- > > No user facing changes. > > 4.36.2 - 04 Jun 2026 > -------------------- ... (truncated) Commits * [`ff2f1c6`](github/codeql-action@ff2f1c6) Merge pull request [#4093](https://redirect.github.com/github/codeql-action/issues/4093) from github/update-v4.37.7-be7a3dbb8 * [`951a133`](github/codeql-action@951a133) Update changelog for v4.37.7 * [`be7a3db`](github/codeql-action@be7a3db) Merge pull request [#4087](https://redirect.github.com/github/codeql-action/issues/4087) from github/dependabot/npm\_and\_yarn/npm-minor-0aa561... * [`9310334`](github/codeql-action@9310334) Merge pull request [#4086](https://redirect.github.com/github/codeql-action/issues/4086) from github/mbg/thread-action-state-to-codeql * [`b4d8a54`](github/codeql-action@b4d8a54) Rebuild * [`ab5db25`](github/codeql-action@ab5db25) Bump the npm-minor group across 1 directory with 8 updates * [`38055a3`](github/codeql-action@38055a3) Drop `logger` from `databaseInitCluster` in interface * [`1f87aed`](github/codeql-action@1f87aed) Merge pull request [#4085](https://redirect.github.com/github/codeql-action/issues/4085) from github/update-bundle/codeql-bundle-v2.26.3 * [`dc1b98a`](github/codeql-action@dc1b98a) Make `logger` available to `getCodeQLForCmd` * [`6f0220e`](github/codeql-action@6f0220e) Merge pull request [#4084](https://redirect.github.com/github/codeql-action/issues/4084) from github/navntoft/bump-undici * Additional commits viewable in [compare view](github/codeql-action@5595cca...ff2f1c6) Updates `github/codeql-action/init` from 4.37.6 to 4.37.7 Release notes *Sourced from [github/codeql-action/init's releases](https://github.com/github/codeql-action/releases).* > v4.37.7 > ------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) Changelog *Sourced from [github/codeql-action/init's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.7 - 13 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) > * In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://redirect.github.com/github/codeql-action/pull/3973) > > 4.36.3 - 01 Jul 2026 > -------------------- > > No user facing changes. > > 4.36.2 - 04 Jun 2026 > -------------------- ... (truncated) Commits * [`ff2f1c6`](github/codeql-action@ff2f1c6) Merge pull request [#4093](https://redirect.github.com/github/codeql-action/issues/4093) from github/update-v4.37.7-be7a3dbb8 * [`951a133`](github/codeql-action@951a133) Update changelog for v4.37.7 * [`be7a3db`](github/codeql-action@be7a3db) Merge pull request [#4087](https://redirect.github.com/github/codeql-action/issues/4087) from github/dependabot/npm\_and\_yarn/npm-minor-0aa561... * [`9310334`](github/codeql-action@9310334) Merge pull request [#4086](https://redirect.github.com/github/codeql-action/issues/4086) from github/mbg/thread-action-state-to-codeql * [`b4d8a54`](github/codeql-action@b4d8a54) Rebuild * [`ab5db25`](github/codeql-action@ab5db25) Bump the npm-minor group across 1 directory with 8 updates * [`38055a3`](github/codeql-action@38055a3) Drop `logger` from `databaseInitCluster` in interface * [`1f87aed`](github/codeql-action@1f87aed) Merge pull request [#4085](https://redirect.github.com/github/codeql-action/issues/4085) from github/update-bundle/codeql-bundle-v2.26.3 * [`dc1b98a`](github/codeql-action@dc1b98a) Make `logger` available to `getCodeQLForCmd` * [`6f0220e`](github/codeql-action@6f0220e) Merge pull request [#4084](https://redirect.github.com/github/codeql-action/issues/4084) from github/navntoft/bump-undici * Additional commits viewable in [compare view](github/codeql-action@5595cca...ff2f1c6) Updates `github/codeql-action/analyze` from 4.37.6 to 4.37.7 Release notes *Sourced from [github/codeql-action/analyze's releases](https://github.com/github/codeql-action/releases).* > v4.37.7 > ------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) Changelog *Sourced from [github/codeql-action/analyze's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.7 - 13 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) > * In addition to the existing input format, the `config-file` input for the `codeql-action/init` step will soon support a new `[owner/]repo[@ref][:path]` format. All components except the repository name are optional. If omitted, `owner` defaults to the same owner as the repository the analysis is running for, `ref` to `main`, and `path` to `.github/codeql-action.yaml`. Support for this format ships in this version of the CodeQL Action, but will only be enabled over the coming weeks. [#3973](https://redirect.github.com/github/codeql-action/pull/3973) > > 4.36.3 - 01 Jul 2026 > -------------------- > > No user facing changes. > > 4.36.2 - 04 Jun 2026 > -------------------- ... (truncated) Commits * [`ff2f1c6`](github/codeql-action@ff2f1c6) Merge pull request [#4093](https://redirect.github.com/github/codeql-action/issues/4093) from github/update-v4.37.7-be7a3dbb8 * [`951a133`](github/codeql-action@951a133) Update changelog for v4.37.7 * [`be7a3db`](github/codeql-action@be7a3db) Merge pull request [#4087](https://redirect.github.com/github/codeql-action/issues/4087) from github/dependabot/npm\_and\_yarn/npm-minor-0aa561... * [`9310334`](github/codeql-action@9310334) Merge pull request [#4086](https://redirect.github.com/github/codeql-action/issues/4086) from github/mbg/thread-action-state-to-codeql * [`b4d8a54`](github/codeql-action@b4d8a54) Rebuild * [`ab5db25`](github/codeql-action@ab5db25) Bump the npm-minor group across 1 directory with 8 updates * [`38055a3`](github/codeql-action@38055a3) Drop `logger` from `databaseInitCluster` in interface * [`1f87aed`](github/codeql-action@1f87aed) Merge pull request [#4085](https://redirect.github.com/github/codeql-action/issues/4085) from github/update-bundle/codeql-bundle-v2.26.3 * [`dc1b98a`](github/codeql-action@dc1b98a) Make `logger` available to `getCodeQLForCmd` * [`6f0220e`](github/codeql-action@6f0220e) Merge pull request [#4084](https://redirect.github.com/github/codeql-action/issues/4084) from github/navntoft/bump-undici * Additional commits viewable in [compare view](github/codeql-action@5595cca...ff2f1c6) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.198` | `1.0.208` | | [MeterianHQ/meterian-github-action](https://github.com/meterianhq/meterian-github-action) | `1.0.17` | `1.0.18` | | [github/codeql-action/upload-sarif](https://github.com/github/codeql-action) | `4.37.7` | `4.37.9` | | [github/codeql-action/init](https://github.com/github/codeql-action) | `4.37.7` | `4.37.9` | | [github/codeql-action/analyze](https://github.com/github/codeql-action) | `4.37.7` | `4.37.9` | Updates `anthropics/claude-code-action` from 1.0.198 to 1.0.208 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.208 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.207...v1.0.208> > > v1.0.207 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.206...v1.0.207> > > v1.0.206 > -------- > > What's Changed > -------------- > > * chore: add .gitattributes to normalize line endings by [`@MohammedAlkindi`](https://github.com/MohammedAlkindi) in [anthropics/claude-code-action#1708](https://redirect.github.com/anthropics/claude-code-action/pull/1708) > * fix: use paths in delete\_files prompt example by [`@WeAreResilience`](https://github.com/WeAreResilience) in [anthropics/claude-code-action#1702](https://redirect.github.com/anthropics/claude-code-action/pull/1702) > * fix: allow parentheses in valid branch names by [`@YauheniPo`](https://github.com/YauheniPo) in [anthropics/claude-code-action#1710](https://redirect.github.com/anthropics/claude-code-action/pull/1710) > * fix: bound download\_job\_log against a stalled log fetch by [`@shoemoney`](https://github.com/shoemoney) in [anthropics/claude-code-action#1719](https://redirect.github.com/anthropics/claude-code-action/pull/1719) > * fix: encode branch names in GitHub links by [`@Abdullah-Builds`](https://github.com/Abdullah-Builds) in [anthropics/claude-code-action#1713](https://redirect.github.com/anthropics/claude-code-action/pull/1713) > > New Contributors > ---------------- > > * [`@MohammedAlkindi`](https://github.com/MohammedAlkindi) made their first contribution in [anthropics/claude-code-action#1708](https://redirect.github.com/anthropics/claude-code-action/pull/1708) > * [`@YauheniPo`](https://github.com/YauheniPo) made their first contribution in [anthropics/claude-code-action#1710](https://redirect.github.com/anthropics/claude-code-action/pull/1710) > * [`@Abdullah-Builds`](https://github.com/Abdullah-Builds) made their first contribution in [anthropics/claude-code-action#1713](https://redirect.github.com/anthropics/claude-code-action/pull/1713) > > **Full Changelog**: <anthropics/claude-code-action@v1.0.205...v1.0.206> > > v1.0.205 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.203...v1.0.205> > > v1.0.204 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.202...v1.0.204> > > v1.0.203 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.202...v1.0.203> > > v1.0.202 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.201...v1.0.202> > > v1.0.201 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.200...v1.0.201> > > v1.0.200 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1.0.199...v1.0.200> > > v1.0.199 > -------- > > What's Changed > -------------- > > * fix(github): honor GITHUB\_GRAPHQL\_URL for the GraphQL client by [`@rover0811`](https://github.com/rover0811) in [anthropics/claude-code-action#1575](https://redirect.github.com/anthropics/claude-code-action/pull/1575) > * fix(cleanup): keep the base-branch config revert out of the auto-commit by [`@GautamSharma99`](https://github.com/GautamSharma99) in [anthropics/claude-code-action#1677](https://redirect.github.com/anthropics/claude-code-action/pull/1677) > * fix(mcp): recognize mcp\_\_github aggregate selector for GitHub MCP server initialization by [`@anishesg`](https://github.com/anishesg) in [anthropics/claude-code-action#1657](https://redirect.github.com/anthropics/claude-code-action/pull/1657) > * Document 1M gateway models and surface resolved limits by [`@ulofiai`](https://github.com/ulofiai) in [anthropics/claude-code-action#1608](https://redirect.github.com/anthropics/claude-code-action/pull/1608) > * fix: teach claude\_args --allowedTools in the signed prompt by [`@WeAreResilience`](https://github.com/WeAreResilience) in [anthropics/claude-code-action#1704](https://redirect.github.com/anthropics/claude-code-action/pull/1704) > > New Contributors > ---------------- > > * [`@rover0811`](https://github.com/rover0811) made their first contribution in [anthropics/claude-code-action#1575](https://redirect.github.com/anthropics/claude-code-action/pull/1575) > * [`@GautamSharma99`](https://github.com/GautamSharma99) made their first contribution in [anthropics/claude-code-action#1677](https://redirect.github.com/anthropics/claude-code-action/pull/1677) ... (truncated) Commits * [`e8c2d7c`](anthropics/claude-code-action@e8c2d7c) chore: bump Claude Code to 2.1.248 and Agent SDK to 0.3.248 * [`70fec18`](anthropics/claude-code-action@70fec18) chore: bump Claude Code to 2.1.247 and Agent SDK to 0.3.247 * [`1f291e1`](anthropics/claude-code-action@1f291e1) chore: bump Claude Code to 2.1.246 and Agent SDK to 0.3.246 * [`76ac41a`](anthropics/claude-code-action@76ac41a) fix: encode branch names in GitHub links ([#1713](https://redirect.github.com/anthropics/claude-code-action/issues/1713)) * [`8ef9699`](anthropics/claude-code-action@8ef9699) fix: bound download\_job\_log against a stalled log fetch ([#1719](https://redirect.github.com/anthropics/claude-code-action/issues/1719)) * [`791545d`](anthropics/claude-code-action@791545d) fix: allow parentheses in valid branch names ([#1710](https://redirect.github.com/anthropics/claude-code-action/issues/1710)) * [`2d7a787`](anthropics/claude-code-action@2d7a787) fix: use paths in delete\_files prompt example ([#1702](https://redirect.github.com/anthropics/claude-code-action/issues/1702)) * [`b58c16b`](anthropics/claude-code-action@b58c16b) chore: add .gitattributes to normalize line endings ([#1708](https://redirect.github.com/anthropics/claude-code-action/issues/1708)) * [`16b3b31`](anthropics/claude-code-action@16b3b31) chore: bump Claude Code to 2.1.245 and Agent SDK to 0.3.245 * [`6bcfb82`](anthropics/claude-code-action@6bcfb82) chore: bump Claude Code to 2.1.241 and Agent SDK to 0.3.241 * Additional commits viewable in [compare view](anthropics/claude-code-action@3f854a8...e8c2d7c) Updates `MeterianHQ/meterian-github-action` from 1.0.17 to 1.0.18 Release notes *Sourced from [MeterianHQ/meterian-github-action's releases](https://github.com/meterianhq/meterian-github-action/releases).* > v1.0.18 > ------- > > What's Changed > -------------- > > * Fix malformed --autofix string when autofix\_stability is set alone by [`@bbossola`](https://github.com/bbossola) in [MeterianHQ/meterian-github-action#24](https://redirect.github.com/MeterianHQ/meterian-github-action/pull/24) > > **Full Changelog**: <MeterianHQ/meterian-github-action@v1.0.17...v1.0.18> Commits * [`9603528`](MeterianHQ/meterian-github-action@9603528) Merge pull request [#24](https://redirect.github.com/meterianhq/meterian-github-action/issues/24) from MeterianHQ/autofix-program-assembly-fix * [`124c40d`](MeterianHQ/meterian-github-action@124c40d) Bumped release version * [`8c06e06`](MeterianHQ/meterian-github-action@8c06e06) Add CLAUDE.md with repository guidance for Claude Code * [`3bd90a1`](MeterianHQ/meterian-github-action@3bd90a1) Now building the autofix program list from the non-empty programs only * See full diff in [compare view](MeterianHQ/meterian-github-action@6849965...9603528) Updates `github/codeql-action/upload-sarif` from 4.37.7 to 4.37.9 Release notes *Sourced from [github/codeql-action/upload-sarif's releases](https://github.com/github/codeql-action/releases).* > v4.37.9 > ------- > > * Update default CodeQL bundle version to [2.26.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.4). [#4106](https://redirect.github.com/github/codeql-action/pull/4106) > > v4.37.8 > ------- > > No user facing changes. Changelog *Sourced from [github/codeql-action/upload-sarif's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.9 - 26 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.4). [#4106](https://redirect.github.com/github/codeql-action/pull/4106) > > 4.37.8 - 21 Aug 2026 > -------------------- > > No user facing changes. > > 4.37.7 - 13 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) ... (truncated) Commits * [`cdf488f`](github/codeql-action@cdf488f) Merge pull request [#4107](https://redirect.github.com/github/codeql-action/issues/4107) from github/update-v4.37.9-920ba7cd1 * [`7243f38`](github/codeql-action@7243f38) Update changelog for v4.37.9 * [`920ba7c`](github/codeql-action@920ba7c) Merge pull request [#4106](https://redirect.github.com/github/codeql-action/issues/4106) from github/update-bundle/codeql-bundle-v2.26.4 * [`ecfa6e1`](github/codeql-action@ecfa6e1) Add changelog note * [`adcdf4a`](github/codeql-action@adcdf4a) Update default bundle to codeql-bundle-v2.26.4 * [`486fec2`](github/codeql-action@486fec2) Merge pull request [#4099](https://redirect.github.com/github/codeql-action/issues/4099) from github/update-supported-enterprise-server-versions * [`134624c`](github/codeql-action@134624c) Merge pull request [#4101](https://redirect.github.com/github/codeql-action/issues/4101) from github/dependabot/npm\_and\_yarn/npm-minor-457d82... * [`ff43db8`](github/codeql-action@ff43db8) Merge pull request [#4103](https://redirect.github.com/github/codeql-action/issues/4103) from github/mergeback/v4.37.8-to-main-db488dde * [`4605e03`](github/codeql-action@4605e03) Rebuild * [`099c869`](github/codeql-action@099c869) Update changelog and version after v4.37.8 * Additional commits viewable in [compare view](github/codeql-action@ff2f1c6...cdf488f) Updates `github/codeql-action/init` from 4.37.7 to 4.37.9 Release notes *Sourced from [github/codeql-action/init's releases](https://github.com/github/codeql-action/releases).* > v4.37.9 > ------- > > * Update default CodeQL bundle version to [2.26.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.4). [#4106](https://redirect.github.com/github/codeql-action/pull/4106) > > v4.37.8 > ------- > > No user facing changes. Changelog *Sourced from [github/codeql-action/init's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.9 - 26 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.4). [#4106](https://redirect.github.com/github/codeql-action/pull/4106) > > 4.37.8 - 21 Aug 2026 > -------------------- > > No user facing changes. > > 4.37.7 - 13 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) ... (truncated) Commits * [`cdf488f`](github/codeql-action@cdf488f) Merge pull request [#4107](https://redirect.github.com/github/codeql-action/issues/4107) from github/update-v4.37.9-920ba7cd1 * [`7243f38`](github/codeql-action@7243f38) Update changelog for v4.37.9 * [`920ba7c`](github/codeql-action@920ba7c) Merge pull request [#4106](https://redirect.github.com/github/codeql-action/issues/4106) from github/update-bundle/codeql-bundle-v2.26.4 * [`ecfa6e1`](github/codeql-action@ecfa6e1) Add changelog note * [`adcdf4a`](github/codeql-action@adcdf4a) Update default bundle to codeql-bundle-v2.26.4 * [`486fec2`](github/codeql-action@486fec2) Merge pull request [#4099](https://redirect.github.com/github/codeql-action/issues/4099) from github/update-supported-enterprise-server-versions * [`134624c`](github/codeql-action@134624c) Merge pull request [#4101](https://redirect.github.com/github/codeql-action/issues/4101) from github/dependabot/npm\_and\_yarn/npm-minor-457d82... * [`ff43db8`](github/codeql-action@ff43db8) Merge pull request [#4103](https://redirect.github.com/github/codeql-action/issues/4103) from github/mergeback/v4.37.8-to-main-db488dde * [`4605e03`](github/codeql-action@4605e03) Rebuild * [`099c869`](github/codeql-action@099c869) Update changelog and version after v4.37.8 * Additional commits viewable in [compare view](github/codeql-action@ff2f1c6...cdf488f) Updates `github/codeql-action/analyze` from 4.37.7 to 4.37.9 Release notes *Sourced from [github/codeql-action/analyze's releases](https://github.com/github/codeql-action/releases).* > v4.37.9 > ------- > > * Update default CodeQL bundle version to [2.26.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.4). [#4106](https://redirect.github.com/github/codeql-action/pull/4106) > > v4.37.8 > ------- > > No user facing changes. Changelog *Sourced from [github/codeql-action/analyze's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.37.9 - 26 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.4). [#4106](https://redirect.github.com/github/codeql-action/pull/4106) > > 4.37.8 - 21 Aug 2026 > -------------------- > > No user facing changes. > > 4.37.7 - 13 Aug 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.3). [#4085](https://redirect.github.com/github/codeql-action/pull/4085) > > 4.37.6 - 04 Aug 2026 > -------------------- > > * Changed the default filepath for the new remote file address format that was introduced in CodeQL Action 4.37.0 / 3.37.0 to `.github/codeql-config.yml` to align it with the suggested path that is used elsewhere. [#4070](https://redirect.github.com/github/codeql-action/pull/4070) > > 4.37.5 - 03 Aug 2026 > -------------------- > > * Fixed a bug where a network error while streaming the download of the CodeQL bundle could terminate the `init` Action instead of falling back to downloading the bundle before extracting it. [#4061](https://redirect.github.com/github/codeql-action/pull/4061) > > 4.37.4 - 29 Jul 2026 > -------------------- > > * This version of the CodeQL Action adds support for the `tools` input for the `codeql-action/init` step to be specified using a `github-codeql-tools` [repository property](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). This feature will gradually be rolled out following the release of this version. Once rolled out, this allows for the CodeQL CLI version that is used in GitHub-managed workflows, such as Default Setup, to be set to a custom value. For example, customers who run into issues with rate limits when a new CodeQL CLI version is released can set the value to `toolcache` to always use the CodeQL CLI version that is available in the runner toolcache. For Advanced Setup workflows, the value provided for `tools` in the workflow definition always takes precedence unless the value of the repository property starts with `!`. [#4037](https://redirect.github.com/github/codeql-action/pull/4037) > * Update default CodeQL bundle version to [2.26.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.2). [#4051](https://redirect.github.com/github/codeql-action/pull/4051) > > 4.37.3 - 22 Jul 2026 > -------------------- > > No user facing changes. > > 4.37.2 - 21 Jul 2026 > -------------------- > > * The new address format for the `config-file` input that was introduced in CodeQL Action 4.37.0 is now enabled by default. In addition to the format described there, the `remote=` prefix can now be used to explicitly indicate that the input refers to a remote file. All previous input formats continue to be accepted as well. [#4023](https://redirect.github.com/github/codeql-action/pull/4023) > * The CodeQL Action can now make use of [configured private registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) in Default Setup to retrieve CodeQL configuration files from remote repositories that require authentication. This will allow customers to store their CodeQL configuration in a single repository that can then be referenced by Default Setup workflows in other repositories. We expect to roll this and other, related changes out to everyone in July. [#4007](https://redirect.github.com/github/codeql-action/pull/4007) > > 4.37.1 - 16 Jul 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.20.6 and earlier. These versions of CodeQL were discontinued on 1 July 2026 alongside GitHub Enterprise Server 3.16, and will be unsupported by the next minor release of the CodeQL Action. [#3956](https://redirect.github.com/github/codeql-action/pull/3956) > * Update default CodeQL bundle version to [2.26.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.1). [#4019](https://redirect.github.com/github/codeql-action/pull/4019) > > 4.37.0 - 08 Jul 2026 > -------------------- > > * Update default CodeQL bundle version to [2.26.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.26.0). [#3995](https://redirect.github.com/github/codeql-action/pull/3995) ... (truncated) Commits * [`cdf488f`](github/codeql-action@cdf488f) Merge pull request [#4107](https://redirect.github.com/github/codeql-action/issues/4107) from github/update-v4.37.9-920ba7cd1 * [`7243f38`](github/codeql-action@7243f38) Update changelog for v4.37.9 * [`920ba7c`](github/codeql-action@920ba7c) Merge pull request [#4106](https://redirect.github.com/github/codeql-action/issues/4106) from github/update-bundle/codeql-bundle-v2.26.4 * [`ecfa6e1`](github/codeql-action@ecfa6e1) Add changelog note * [`adcdf4a`](github/codeql-action@adcdf4a) Update default bundle to codeql-bundle-v2.26.4 * [`486fec2`](github/codeql-action@486fec2) Merge pull request [#4099](https://redirect.github.com/github/codeql-action/issues/4099) from github/update-supported-enterprise-server-versions * [`134624c`](github/codeql-action@134624c) Merge pull request [#4101](https://redirect.github.com/github/codeql-action/issues/4101) from github/dependabot/npm\_and\_yarn/npm-minor-457d82... * [`ff43db8`](github/codeql-action@ff43db8) Merge pull request [#4103](https://redirect.github.com/github/codeql-action/issues/4103) from github/mergeback/v4.37.8-to-main-db488dde * [`4605e03`](github/codeql-action@4605e03) Rebuild * [`099c869`](github/codeql-action@099c869) Update changelog and version after v4.37.8 * Additional commits viewable in [compare view](github/codeql-action@ff2f1c6...cdf488f) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Summary
Closes the three feature requests opened from discussion #4044 (Qdrant migration):
LSM_SPARSE_VECTORindexvector.fuse)groupBy/groupSizeonvector.neighborsandvector.sparseNeighborsThe original Qdrant
query_points_groupscall from #4044 is now a single SQL statement:What's in this PR
Sparse vector index (#4065)
Schema.INDEX_TYPE.LSM_SPARSE_VECTORenum,withSparseVectorType()Java builder,CREATE INDEX ... LSM_SPARSE_VECTOR METADATA { dimensions, modifier }SQL syntax.(int dim_id, RID rid, float weight). Inherits ACID, WAL, replication, compaction.max_weightupper bounds (lazy-populated, monotone). Tighter per-page bounds (BlockMax-WAND), weight quantization, and parallel per-segment scoring tracked in feat: WAND/BlockMax-WAND dynamic pruning for LSM_SPARSE_VECTOR (scale to 100M+) #4068.vector.sparseNeighbors(indexSpec, indices, values, K, options)SQL function withfilter,groupBy,groupSizeoptions.LSM_SPARSE_VECTORoption, parallel-array property pickers (indices / weights), dimensions, modifier.Server-side hybrid fusion (#4066)
vector.fuse(source1, source2, ..., sourceN [, options])SQL function.RRF(default, withkand per-sourceweights),DBSF(Qdrant 1.11+ mean ± 3σ normalization),LINEAR(per-source min-max normalization).vector.neighbors,vector.sparseNeighbors,SEARCH_INDEX, and any plainSELECT ... ORDER BY ... LIMIT N.distanceto similarity at extract time so dense and sparse sources fuse without manual rescaling.groupBy+groupSizeapplied post-fusion (mirroring Qdrant'squery_points_groups).Group-by on vector neighbors (#4067)
groupBy+groupSizeoptions on bothvector.neighborsandvector.sparseNeighbors.groupSizedefaults to 1; the third positionalkbecomes max distinct groups whengroupByis set.k * groupSize * 5); integration into the HNSW traversal proper is a follow-up.filteroption.Tests
vector.sparseDotbaseline.@Tag("slow")) with 4 writers and 4 readers in parallel.@Tag("benchmark")) comparing the index vs brute-force.Discussion4044HybridSearchE2ETest) replicating astarso's exact use case in a single SQL statement (Russian sparse-disambiguation: «процентов» vs «баллов»).Totals: 21 new tests, 224 vector-related tests passing, 1469 SQL parser/executor tests passing, no regressions.
Test plan
mvn -pl engine test -Dtest='com.arcadedb.index.sparsevector.*Test,com.arcadedb.function.sql.vector.*Test'greenmvn -pl engine test -Dtest='Discussion4044HybridSearchE2ETest'greenmvn -pl engine test -Dtest='LSMSparseVectorIndexConcurrencyTest' -DexcludedGroups=green (slow tag)LSM_SPARSE_VECTORindex end-to-endOut of scope (follow-ups)
vector.fuse(last open acceptance criterion on feat: server-side hybrid retrieval fusion (vector.fuse with RRF/DBSF/LINEAR) #4066).groupBy(e.g.metadata.author): feat: dotted nested-field groupBy for vector search (follow-up to #4067) #4072.