Skip to content

fix(opencypher): MATCH WHERE ID(n) = <expr> falls back to full scan when expr is dynamic#3865

Merged
lvca merged 2 commits into
ArcadeData:mainfrom
ExtReMLapin:opt_match_expr
Apr 15, 2026
Merged

fix(opencypher): MATCH WHERE ID(n) = <expr> falls back to full scan when expr is dynamic#3865
lvca merged 2 commits into
ArcadeData:mainfrom
ExtReMLapin:opt_match_expr

Conversation

@ExtReMLapin
Copy link
Copy Markdown
Contributor

Fixes #3864

Long story short, in

UNWIND $batch AS BatchEntry
MATCH (b:CHUNK) WHERE ID(b) = BatchEntry.destRID
CREATE (p:CHUNK_EMBEDDING {vector: BatchEntry.vector})
CREATE (p)-[:embb]->(b)  

MATCH (b:CHUNK) WHERE ID(b) = BatchEntry.destRID is doing a full scan on CHUNK

@ExtReMLapin
Copy link
Copy Markdown
Contributor Author

Gemini wrote that, claude checked it

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request implements dynamic ID filtering within MatchNodeStep to optimize OpenCypher queries where the node ID is specified in a WHERE clause. It introduces logic to extract ID filters from boolean expressions and refactors the ExpressionEvaluator into a class member for reuse. Review feedback highlights a potential NullPointerException when a vertex is not found by its RID and suggests optimizing the AST traversal by pre-analyzing the filter expression.

Comment on lines +309 to 312
final RID rid = new RID(context.getDatabase(), effectiveIdFilter);
final Identifiable vertex = context.getDatabase().lookupByRID(rid, true);
// Return single-element iterator for the matched vertex
return List.of(vertex).iterator();
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The List.of(vertex) call will throw a NullPointerException if the RID is valid but the vertex does not exist in the database (i.e., lookupByRID returns null). Since List.of does not allow null elements, you should check for null and return an empty iterator instead.

        final RID rid = new RID(context.getDatabase(), effectiveIdFilter);
        final Identifiable vertex = context.getDatabase().lookupByRID(rid, true);
        if (vertex == null)
          return Collections.emptyIterator();
        // Return single-element iterator for the matched vertex
        return List.of(vertex).iterator();

// Check for dynamic ID filter from WHERE clause if static idFilter is not present
String effectiveIdFilter = this.idFilter;
if ((effectiveIdFilter == null || effectiveIdFilter.isEmpty()) && whereFilter != null) {
effectiveIdFilter = extractDynamicIdFilter(whereFilter, currentInputResult);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The extractDynamicIdFilter method is called for every input row and performs a recursive traversal of the whereFilter AST. Since the structure of the whereFilter is constant for the duration of this execution step, this traversal is redundant.

It would be more efficient to pre-analyze the whereFilter once (e.g., in the constructor) to identify the Expression that provides the ID value, and then simply evaluate that expression here. Additionally, consider supporting elementId() in addition to id() for broader Cypher compatibility.

@codacy-production
Copy link
Copy Markdown

codacy-production Bot commented Apr 15, 2026

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

TIP This summary will be updated as you push new changes. Give us feedback

@ExtReMLapin
Copy link
Copy Markdown
Contributor Author

According to claude (but I don't have any tokens left) There might be other cases where it's not fixed, for example

UNWIND $batch AS BatchEntry
MATCH (b:CHUNK {someKey: BatchEntry.value})  -- inline props, not WHERE clause
  1. MergeStep.findNode() / findAllNodes() - always full scan
    MERGE (n:CHUNK {name: $value})

@lvca lvca self-requested a review April 15, 2026 17:13
@lvca lvca added this to the 26.4.1 milestone Apr 15, 2026
@lvca lvca merged commit eb0faca into ArcadeData:main Apr 15, 2026
13 of 16 checks passed
@lvca
Copy link
Copy Markdown
Member

lvca commented Apr 15, 2026

It actually makes sense! Merged, thanks!! I'm going to write some test cases to avoid future regressions.

@codecov
Copy link
Copy Markdown

codecov Bot commented Apr 15, 2026

Codecov Report

❌ Patch coverage is 38.82353% with 52 lines in your changes missing coverage. Please review.
✅ Project coverage is 64.94%. Comparing base (973cb52) to head (801337d).
⚠️ Report is 5 commits behind head on main.

Files with missing lines Patch % Lines
...edb/query/opencypher/executor/steps/MergeStep.java 16.66% 32 Missing and 8 partials ⚠️
...query/opencypher/executor/steps/MatchNodeStep.java 67.56% 5 Missing and 7 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3865      +/-   ##
==========================================
+ Coverage   64.66%   64.94%   +0.28%     
==========================================
  Files        1579     1579              
  Lines      116503   116618     +115     
  Branches    24707    24749      +42     
==========================================
+ Hits        75335    75742     +407     
+ Misses      30871    30504     -367     
- Partials    10297    10372      +75     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

mergify Bot added a commit that referenced this pull request May 3, 2026
Bumps the github-actions group with 2 updates: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [github/codeql-action](https://github.com/github/codeql-action).
Updates `anthropics/claude-code-action` from 1.0.107 to 1.0.111
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.111
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.111>
>
> v1.0.110
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.110>
>
> v1.0.109
> --------
>
> What's Changed
> --------------
>
> * docs: pull\_request\_target guidance and base-action trust model by [`@​OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#1250](https://redirect.github.com/anthropics/claude-code-action/pull/1250)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.109>
>
> v1.0.108
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.108>


Commits

* [`fefa07e`](anthropics/claude-code-action@fefa07e) chore: bump Claude Code to 2.1.126 and Agent SDK to 0.2.126
* [`ef50f12`](anthropics/claude-code-action@ef50f12) chore: bump Claude Code to 2.1.123 and Agent SDK to 0.2.123
* [`b3c0320`](anthropics/claude-code-action@b3c0320) chore: bump Claude Code to 2.1.122 and Agent SDK to 0.2.122
* [`c93e8fe`](anthropics/claude-code-action@c93e8fe) docs: pull\_request\_target guidance and base-action trust model ([#1250](https://redirect.github.com/anthropics/claude-code-action/issues/1250))
* [`11a9dad`](anthropics/claude-code-action@11a9dad) chore: bump Claude Code to 2.1.121 and Agent SDK to 0.2.121
* See full diff in [compare view](anthropics/claude-code-action@567fe95...fefa07e)
  
Updates `github/codeql-action` from 4.35.2 to 4.35.3
Release notes

*Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).*

> v4.35.3
> -------
>
> * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837)
> * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850)
> * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853)
> * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852)
> * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865)


Changelog

*Sourced from [github/codeql-action'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.35.3 - 01 May 2026
> --------------------
>
> * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837)
> * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850)
> * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853)
> * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852)
> * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865)
>
> 4.35.2 - 15 Apr 2026
> --------------------
>
> * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795)
> * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789)
> * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794)
> * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807)
> * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823)
>
> 4.35.1 - 27 Mar 2026
> --------------------
>
> * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781)
>
> 4.35.0 - 27 Mar 2026
> --------------------
>
> * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767)
> * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773)
>
> 4.34.1 - 20 Mar 2026
> --------------------
>
> * Downgrade default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3) due to issues with a small percentage of Actions and JavaScript analyses. [#3762](https://redirect.github.com/github/codeql-action/pull/3762)
>
> 4.34.0 - 20 Mar 2026
> --------------------
>
> * Added an experimental change which disables TRAP caching when [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. [#3569](https://redirect.github.com/github/codeql-action/pull/3569)
> * We are rolling out improved incremental analysis to C/C++ analyses that use build mode `none`. We expect this rollout to be complete by the end of April 2026. [#3584](https://redirect.github.com/github/codeql-action/pull/3584)
> * Update default CodeQL bundle version to [2.25.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.0). [#3585](https://redirect.github.com/github/codeql-action/pull/3585)
>
> 4.33.0 - 16 Mar 2026
> --------------------
>
> * Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. [#3562](https://redirect.github.com/github/codeql-action/pull/3562)
>
>   To opt out of this change:
>
>   + **Repositories owned by an organization:** Create a custom repository property with the name `github-codeql-file-coverage-on-prs` and the type "True/false", then set this property to `true` in the repository's settings. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). Alternatively, if you are using an advanced setup workflow, you can set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow.
>   + **User-owned repositories using default setup:** Switch to an advanced setup workflow and set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow.

... (truncated)


Commits

* [`e46ed2c`](github/codeql-action@e46ed2c) Merge pull request [#3867](https://redirect.github.com/github/codeql-action/issues/3867) from github/update-v4.35.3-8c6e48dbe
* [`b73d1d1`](github/codeql-action@b73d1d1) Add changelog entry for [#3853](https://redirect.github.com/github/codeql-action/issues/3853)
* [`24e0bb0`](github/codeql-action@24e0bb0) Reorder changelog entries
* [`ec298da`](github/codeql-action@ec298da) Update changelog for v4.35.3
* [`8c6e48d`](github/codeql-action@8c6e48d) Merge pull request [#3865](https://redirect.github.com/github/codeql-action/issues/3865) from github/update-bundle/codeql-bundle-v2.25.3
* [`7190983`](github/codeql-action@7190983) Add changelog note
* [`2bb2095`](github/codeql-action@2bb2095) Update default bundle to codeql-bundle-v2.25.3
* [`7851e55`](github/codeql-action@7851e55) Merge pull request [#3850](https://redirect.github.com/github/codeql-action/issues/3850) from github/mbg/private-registry/cloudsmith-gcp
* [`262a15f`](github/codeql-action@262a15f) Add generic non-printable chars test for OIDC configs
* [`a6109b1`](github/codeql-action@a6109b1) Merge pull request [#3853](https://redirect.github.com/github/codeql-action/issues/3853) from github/mbg/start-proxy/improved-checks
* Additional commits viewable in [compare view](github/codeql-action@95e58e9...e46ed2c)
  
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
mergify Bot added a commit that referenced this pull request May 10, 2026
Bumps the github-actions group with 2 updates: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [github/codeql-action](https://github.com/github/codeql-action).
Updates `anthropics/claude-code-action` from 1.0.111 to 1.0.119
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.119
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.119>
>
> v1.0.118
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.118>
>
> v1.0.117
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.117>
>
> v1.0.116
> --------
>
> What's Changed
> --------------
>
> * Update HackerOne links in SECURITY.md by [`@​OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#1268](https://redirect.github.com/anthropics/claude-code-action/pull/1268)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.116>
>
> v1.0.115
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.115>
>
> v1.0.114
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.114>
>
> v1.0.113
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.113>
>
> v1.0.112
> --------
>
> What's Changed
> --------------
>
> * fix: make trigger\_phrase match case-insensitive by [`@​JustinBis`](https://github.com/JustinBis) in [anthropics/claude-code-action#1279](https://redirect.github.com/anthropics/claude-code-action/pull/1279)
>
> New Contributors
> ----------------
>
> * [`@​JustinBis`](https://github.com/JustinBis) made their first contribution in [anthropics/claude-code-action#1279](https://redirect.github.com/anthropics/claude-code-action/pull/1279)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.112>


Commits

* [`476e359`](anthropics/claude-code-action@476e359) chore: bump Claude Code to 2.1.138 and Agent SDK to 0.2.138
* [`ad67978`](anthropics/claude-code-action@ad67978) chore: bump Claude Code to 2.1.137 and Agent SDK to 0.2.137
* [`034cbdb`](anthropics/claude-code-action@034cbdb) chore: bump Claude Code to 2.1.136 and Agent SDK to 0.2.136
* [`939ae9c`](anthropics/claude-code-action@939ae9c) chore: bump Claude Code to 2.1.133 and Agent SDK to 0.2.133
* [`e9c374d`](anthropics/claude-code-action@e9c374d) Update HackerOne links in SECURITY.md ([#1268](https://redirect.github.com/anthropics/claude-code-action/issues/1268))
* [`9db782c`](anthropics/claude-code-action@9db782c) chore: bump Claude Code to 2.1.132 and Agent SDK to 0.2.132
* [`62238dd`](anthropics/claude-code-action@62238dd) chore: bump Claude Code to 2.1.131 and Agent SDK to 0.2.131
* [`7d7d305`](anthropics/claude-code-action@7d7d305) chore: bump Claude Code to 2.1.129 and Agent SDK to 0.2.129
* [`2cc1ac1`](anthropics/claude-code-action@2cc1ac1) chore: bump Claude Code to 2.1.128 and Agent SDK to 0.2.128
* [`38f25dd`](anthropics/claude-code-action@38f25dd) fix: make trigger\_phrase match case-insensitive ([#1279](https://redirect.github.com/anthropics/claude-code-action/issues/1279))
* See full diff in [compare view](anthropics/claude-code-action@fefa07e...476e359)
  
Updates `github/codeql-action` from 4.35.3 to 4.35.4
Release notes

*Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).*

> v4.35.4
> -------
>
> * Update default CodeQL bundle version to [2.25.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4). [#3881](https://redirect.github.com/github/codeql-action/pull/3881)


Changelog

*Sourced from [github/codeql-action'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.35.4 - 07 May 2026
> --------------------
>
> * Update default CodeQL bundle version to [2.25.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4). [#3881](https://redirect.github.com/github/codeql-action/pull/3881)
>
> 4.35.3 - 01 May 2026
> --------------------
>
> * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837)
> * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850)
> * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853)
> * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852)
> * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865)
>
> 4.35.2 - 15 Apr 2026
> --------------------
>
> * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795)
> * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789)
> * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794)
> * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807)
> * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823)
>
> 4.35.1 - 27 Mar 2026
> --------------------
>
> * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781)
>
> 4.35.0 - 27 Mar 2026
> --------------------
>
> * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767)
> * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773)
>
> 4.34.1 - 20 Mar 2026
> --------------------
>
> * Downgrade default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3) due to issues with a small percentage of Actions and JavaScript analyses. [#3762](https://redirect.github.com/github/codeql-action/pull/3762)
>
> 4.34.0 - 20 Mar 2026
> --------------------
>
> * Added an experimental change which disables TRAP caching when [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. [#3569](https://redirect.github.com/github/codeql-action/pull/3569)
> * We are rolling out improved incremental analysis to C/C++ analyses that use build mode `none`. We expect this rollout to be complete by the end of April 2026. [#3584](https://redirect.github.com/github/codeql-action/pull/3584)
> * Update default CodeQL bundle version to [2.25.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.0). [#3585](https://redirect.github.com/github/codeql-action/pull/3585)
>
> 4.33.0 - 16 Mar 2026
> --------------------
>
> * Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. [#3562](https://redirect.github.com/github/codeql-action/pull/3562)

... (truncated)


Commits

* [`68bde55`](github/codeql-action@68bde55) Merge pull request [#3885](https://redirect.github.com/github/codeql-action/issues/3885) from github/update-v4.35.4-803d9e8c3
* [`9739ad2`](github/codeql-action@9739ad2) Update changelog for v4.35.4
* [`803d9e8`](github/codeql-action@803d9e8) Merge pull request [#3883](https://redirect.github.com/github/codeql-action/issues/3883) from github/mbg/test/macro-wrapper
* [`0fd9c7d`](github/codeql-action@0fd9c7d) Merge pull request [#3882](https://redirect.github.com/github/codeql-action/issues/3882) from github/dependabot/github\_actions/dot-github/wor...
* [`922d6fb`](github/codeql-action@922d6fb) Use `makeMacro` instead of `test.macro`
* [`df77e87`](github/codeql-action@df77e87) Update test macro snippet
* [`6e3f985`](github/codeql-action@6e3f985) Add wrapper for `test.macro`
* [`e7a347d`](github/codeql-action@e7a347d) Merge pull request [#3881](https://redirect.github.com/github/codeql-action/issues/3881) from github/update-bundle/codeql-bundle-v2.25.4
* [`17eabb2`](github/codeql-action@17eabb2) Rebuild
* [`aaef09c`](github/codeql-action@aaef09c) Bump ruby/setup-ruby
* Additional commits viewable in [compare view](github/codeql-action@e46ed2c...68bde55)
  
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
robfrank pushed a commit that referenced this pull request May 12, 2026
…hen expr is dynamic (#3865)

* fix(opencypher): MATCH WHERE ID(n) = <expr> falls back to full scan when expr is dynamic

* more optimizations by claude

---------

Co-authored-by: CNE Pierre FICHEPOIL <pierre-1.fichepoil@gendarmerie.interieur.gouv.fr>
(cherry picked from commit eb0faca)
mergify Bot added a commit that referenced this pull request May 17, 2026
Bumps the github-actions group with 2 updates: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [github/codeql-action](https://github.com/github/codeql-action).
Updates `anthropics/claude-code-action` from 1.0.119 to 1.0.123
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.123
> --------
>
> What's Changed
> --------------
>
> * fix: allow , in branch names by [`@​bugbubug`](https://github.com/bugbubug) in [anthropics/claude-code-action#1310](https://redirect.github.com/anthropics/claude-code-action/pull/1310)
> * fix: dereference symlinks when snapshotting sensitive paths to .claude-pr/ by [`@​matanbaruch`](https://github.com/matanbaruch) in [anthropics/claude-code-action#1186](https://redirect.github.com/anthropics/claude-code-action/pull/1186)
> * fix: exclude .claude-pr snapshot from git staging by [`@​cvan20191`](https://github.com/cvan20191) in [anthropics/claude-code-action#1277](https://redirect.github.com/anthropics/claude-code-action/pull/1277)
> * fix: write execution file when SDK throws by [`@​Jerry2003826`](https://github.com/Jerry2003826) in [anthropics/claude-code-action#1255](https://redirect.github.com/anthropics/claude-code-action/pull/1255)
> * fix: handle non-user actors (e.g. Copilot) in permission and actor checks by [`@​krislavten`](https://github.com/krislavten) in [anthropics/claude-code-action#1144](https://redirect.github.com/anthropics/claude-code-action/pull/1144)
> * chore: bump pinned Bun to 1.3.14 by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1312](https://redirect.github.com/anthropics/claude-code-action/pull/1312)
>
> New Contributors
> ----------------
>
> * [`@​bugbubug`](https://github.com/bugbubug) made their first contribution in [anthropics/claude-code-action#1310](https://redirect.github.com/anthropics/claude-code-action/pull/1310)
> * [`@​matanbaruch`](https://github.com/matanbaruch) made their first contribution in [anthropics/claude-code-action#1186](https://redirect.github.com/anthropics/claude-code-action/pull/1186)
> * [`@​cvan20191`](https://github.com/cvan20191) made their first contribution in [anthropics/claude-code-action#1277](https://redirect.github.com/anthropics/claude-code-action/pull/1277)
> * [`@​Jerry2003826`](https://github.com/Jerry2003826) made their first contribution in [anthropics/claude-code-action#1255](https://redirect.github.com/anthropics/claude-code-action/pull/1255)
> * [`@​krislavten`](https://github.com/krislavten) made their first contribution in [anthropics/claude-code-action#1144](https://redirect.github.com/anthropics/claude-code-action/pull/1144)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.123>
>
> v1.0.122
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.122>
>
> v1.0.121
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.121>
>
> v1.0.120
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.120>


Commits

* [`51ea8ea`](anthropics/claude-code-action@51ea8ea) chore: bump Claude Code to 2.1.142 and Agent SDK to 0.3.142
* [`acfa366`](anthropics/claude-code-action@acfa366) chore: bump pinned Bun to 1.3.14 ([#1312](https://redirect.github.com/anthropics/claude-code-action/issues/1312))
* [`9eb125a`](anthropics/claude-code-action@9eb125a) fix: handle non-user actors (e.g. Copilot) in permission and actor checks ([#1](https://redirect.github.com/anthropics/claude-code-action/issues/1)...
* [`1450f65`](anthropics/claude-code-action@1450f65) fix: write execution file when SDK throws ([#1255](https://redirect.github.com/anthropics/claude-code-action/issues/1255))
* [`0756f6e`](anthropics/claude-code-action@0756f6e) fix: exclude .claude-pr snapshot from git staging ([#1277](https://redirect.github.com/anthropics/claude-code-action/issues/1277))
* [`f4d6a11`](anthropics/claude-code-action@f4d6a11) fix: dereference symlinks when snapshotting sensitive paths to .claude-pr/ (#...
* [`bf6d40e`](anthropics/claude-code-action@bf6d40e) fix: allow , in branch names ([#1310](https://redirect.github.com/anthropics/claude-code-action/issues/1310))
* [`86eb26b`](anthropics/claude-code-action@86eb26b) chore: bump Claude Code to 2.1.141 and Agent SDK to 0.2.141
* [`f4fb5c6`](anthropics/claude-code-action@f4fb5c6) chore: bump Claude Code to 2.1.140 and Agent SDK to 0.2.140
* [`dde2242`](anthropics/claude-code-action@dde2242) chore: bump Claude Code to 2.1.139 and Agent SDK to 0.2.139
* See full diff in [compare view](anthropics/claude-code-action@476e359...51ea8ea)
  
Updates `github/codeql-action` from 4.35.4 to 4.35.5
Release notes

*Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).*

> v4.35.5
> -------
>
> * We have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. [#3899](https://redirect.github.com/github/codeql-action/pull/3899)
> * For performance and accuracy reasons, [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. [#3791](https://redirect.github.com/github/codeql-action/pull/3791)
> * If multiple inputs are provided for the GitHub-internal `analysis-kinds` input, only `code-scanning` will be enabled. The `analysis-kinds` input is experimental, for GitHub-internal use only, and may change without notice at any time. [#3892](https://redirect.github.com/github/codeql-action/pull/3892)
> * Added an experimental change which, when running a Code Scanning analysis for a PR with [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. [#3880](https://redirect.github.com/github/codeql-action/pull/3880)


Changelog

*Sourced from [github/codeql-action'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]
> ------------
>
> * Add support for SHA-256 Git object IDs. [#3893](https://redirect.github.com/github/codeql-action/pull/3893)
>
> 4.35.5 - 15 May 2026
> --------------------
>
> * We have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. [#3899](https://redirect.github.com/github/codeql-action/pull/3899)
> * For performance and accuracy reasons, [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. [#3791](https://redirect.github.com/github/codeql-action/pull/3791)
> * If multiple inputs are provided for the GitHub-internal `analysis-kinds` input, only `code-scanning` will be enabled. The `analysis-kinds` input is experimental, for GitHub-internal use only, and may change without notice at any time. [#3892](https://redirect.github.com/github/codeql-action/pull/3892)
> * Added an experimental change which, when running a Code Scanning analysis for a PR with [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. [#3880](https://redirect.github.com/github/codeql-action/pull/3880)
>
> 4.35.4 - 07 May 2026
> --------------------
>
> * Update default CodeQL bundle version to [2.25.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4). [#3881](https://redirect.github.com/github/codeql-action/pull/3881)
>
> 4.35.3 - 01 May 2026
> --------------------
>
> * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837)
> * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850)
> * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853)
> * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852)
> * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865)
>
> 4.35.2 - 15 Apr 2026
> --------------------
>
> * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795)
> * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789)
> * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794)
> * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807)
> * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823)
>
> 4.35.1 - 27 Mar 2026
> --------------------
>
> * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781)
>
> 4.35.0 - 27 Mar 2026
> --------------------
>
> * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767)
> * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773)
>
> 4.34.1 - 20 Mar 2026
> --------------------
>
> * Downgrade default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3) due to issues with a small percentage of Actions and JavaScript analyses. [#3762](https://redirect.github.com/github/codeql-action/pull/3762)
>
> 4.34.0 - 20 Mar 2026
> --------------------

... (truncated)


Commits

* [`9e0d7b8`](github/codeql-action@9e0d7b8) Merge pull request [#3905](https://redirect.github.com/github/codeql-action/issues/3905) from github/update-v4.35.5-d4b485515
* [`6d7d599`](github/codeql-action@6d7d599) Add changelog entry for [#3899](https://redirect.github.com/github/codeql-action/issues/3899)
* [`51f7e38`](github/codeql-action@51f7e38) Update changelog for v4.35.5
* [`d4b4855`](github/codeql-action@d4b4855) Merge pull request [#3899](https://redirect.github.com/github/codeql-action/issues/3899) from github/mbg/esbuild/split
* [`127de81`](github/codeql-action@127de81) Merge remote-tracking branch 'origin/main' into mbg/esbuild/split
* [`7fde13f`](github/codeql-action@7fde13f) Use src + basename in header to avoid issues on Windows
* [`dfa61e7`](github/codeql-action@dfa61e7) Improve pattern matching and error handling
* [`52aafec`](github/codeql-action@52aafec) Import and call `runWrapper` normally in `analyze` tests
* [`0d08c01`](github/codeql-action@0d08c01) Auto-generate shared bundle
* [`14085a6`](github/codeql-action@14085a6) Auto-generate entry points
* Additional commits viewable in [compare view](github/codeql-action@68bde55...9e0d7b8)
  
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
mergify Bot added a commit that referenced this pull request May 24, 2026
Bumps the github-actions group with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `4.0.0` | `4.1.0` |
| [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.123` | `1.0.133` |
| [github/codeql-action](https://github.com/github/codeql-action) | `4.35.5` | `4.36.0` |
| [docker/login-action](https://github.com/docker/login-action) | `4.1.0` | `4.2.0` |
| [codecov/codecov-action](https://github.com/codecov/codecov-action) | `6.0.0` | `6.0.1` |
Updates `docker/setup-buildx-action` from 4.0.0 to 4.1.0
Release notes

*Sourced from [docker/setup-buildx-action's releases](https://github.com/docker/setup-buildx-action/releases).*

> v4.1.0
> ------
>
> * Bump `@​docker/actions-toolkit` from 0.79.0 to 0.90.0 in [docker/setup-buildx-action#489](https://redirect.github.com/docker/setup-buildx-action/pull/489)
> * Bump brace-expansion from 1.1.12 to 5.0.6 in [docker/setup-buildx-action#547](https://redirect.github.com/docker/setup-buildx-action/pull/547) [docker/setup-buildx-action#508](https://redirect.github.com/docker/setup-buildx-action/pull/508)
> * Bump fast-xml-builder from 1.0.0 to 1.2.0 in [docker/setup-buildx-action#540](https://redirect.github.com/docker/setup-buildx-action/pull/540)
> * Bump fast-xml-parser from 5.4.2 to 5.8.0 in [docker/setup-buildx-action#496](https://redirect.github.com/docker/setup-buildx-action/pull/496)
> * Bump flatted from 3.3.3 to 3.4.2 in [docker/setup-buildx-action#499](https://redirect.github.com/docker/setup-buildx-action/pull/499)
> * Bump glob from 10.3.12 to 13.0.6 in [docker/setup-buildx-action#495](https://redirect.github.com/docker/setup-buildx-action/pull/495)
> * Bump handlebars from 4.7.8 to 4.7.9 in [docker/setup-buildx-action#504](https://redirect.github.com/docker/setup-buildx-action/pull/504)
> * Bump lodash from 4.17.23 to 4.18.1 in [docker/setup-buildx-action#523](https://redirect.github.com/docker/setup-buildx-action/pull/523)
> * Bump picomatch from 4.0.3 to 4.0.4 in [docker/setup-buildx-action#503](https://redirect.github.com/docker/setup-buildx-action/pull/503)
> * Bump postcss from 8.5.6 to 8.5.10 in [docker/setup-buildx-action#537](https://redirect.github.com/docker/setup-buildx-action/pull/537)
> * Bump tar from 6.2.1 to 7.5.15 in [docker/setup-buildx-action#545](https://redirect.github.com/docker/setup-buildx-action/pull/545)
> * Bump undici from 6.23.0 to 6.25.0 in [docker/setup-buildx-action#492](https://redirect.github.com/docker/setup-buildx-action/pull/492)
> * Bump vite from 7.3.1 to 7.3.2 in [docker/setup-buildx-action#520](https://redirect.github.com/docker/setup-buildx-action/pull/520)
>
> **Full Changelog**: <docker/setup-buildx-action@v4.0.0...v4.1.0>


Commits

* [`d7f5e7f`](docker/setup-buildx-action@d7f5e7f) Merge pull request [#489](https://redirect.github.com/docker/setup-buildx-action/issues/489) from docker/dependabot/npm\_and\_yarn/docker/actions-to...
* [`92bc5c9`](docker/setup-buildx-action@92bc5c9) chore: update generated content
* [`da11e35`](docker/setup-buildx-action@da11e35) build(deps): bump `@​docker/actions-toolkit` from 0.79.0 to 0.90.0
* [`f021e16`](docker/setup-buildx-action@f021e16) Merge pull request [#492](https://redirect.github.com/docker/setup-buildx-action/issues/492) from docker/dependabot/npm\_and\_yarn/undici-6.24.1
* [`b5af94f`](docker/setup-buildx-action@b5af94f) chore: update generated content
* [`16ad977`](docker/setup-buildx-action@16ad977) build(deps): bump undici from 6.23.0 to 6.25.0
* [`d7a12d7`](docker/setup-buildx-action@d7a12d7) Merge pull request [#495](https://redirect.github.com/docker/setup-buildx-action/issues/495) from docker/dependabot/npm\_and\_yarn/glob-10.5.0
* [`28ff27d`](docker/setup-buildx-action@28ff27d) build(deps): bump glob from 10.3.12 to 13.0.6
* [`daf436b`](docker/setup-buildx-action@daf436b) Merge pull request [#496](https://redirect.github.com/docker/setup-buildx-action/issues/496) from docker/dependabot/npm\_and\_yarn/fast-xml-parser-5...
* [`9725348`](docker/setup-buildx-action@9725348) chore: update generated content
* Additional commits viewable in [compare view](docker/setup-buildx-action@4d04d5d...d7f5e7f)
  
Updates `anthropics/claude-code-action` from 1.0.123 to 1.0.133
Release notes

*Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).*

> v1.0.133
> --------
>
> What's Changed
> --------------
>
> * Use workload identity federation for Claude auth in CI workflows by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1344](https://redirect.github.com/anthropics/claude-code-action/pull/1344)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.133>
>
> v1.0.132
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.132>
>
> v1.0.131
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.131>
>
> v1.0.130
> --------
>
> What's Changed
> --------------
>
> * Add Workload Identity Federation (OIDC) authentication support by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1338](https://redirect.github.com/anthropics/claude-code-action/pull/1338)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.130>
>
> v1.0.129
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.129>
>
> v1.0.128
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.128>
>
> v1.0.127
> --------
>
> What's Changed
> --------------
>
> * Refactor allowed\_bots actor resolution by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1330](https://redirect.github.com/anthropics/claude-code-action/pull/1330)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.127>
>
> v1.0.126
> --------
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.126>
>
> v1.0.125
> --------
>
> What's Changed
> --------------
>
> * Simplify comment tool instructions in prompt by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1328](https://redirect.github.com/anthropics/claude-code-action/pull/1328)
>
> **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.125>
>
> v1.0.124
> --------
>
> What's Changed
> --------------
>
> * fix: add parentheses to fix operator precedence in co-author check by [`@​FuturizeRush`](https://github.com/FuturizeRush) in [anthropics/claude-code-action#1199](https://redirect.github.com/anthropics/claude-code-action/pull/1199)
> * Strengthen simplified tag-mode prompt (USE\_SIMPLE\_PROMPT) by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1313](https://redirect.github.com/anthropics/claude-code-action/pull/1313)
> * Fix prettier formatting in create-prompt by [`@​ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1325](https://redirect.github.com/anthropics/claude-code-action/pull/1325)
>
> New Contributors
> ----------------

... (truncated)


Commits

* [`787c5a0`](anthropics/claude-code-action@787c5a0) chore: bump Claude Code to 2.1.150 and Agent SDK to 0.3.150
* [`4257c8e`](anthropics/claude-code-action@4257c8e) Use workload identity federation for Claude auth in CI workflows ([#1344](https://redirect.github.com/anthropics/claude-code-action/issues/1344))
* [`bbfaf8e`](anthropics/claude-code-action@bbfaf8e) chore: bump Claude Code to 2.1.149 and Agent SDK to 0.3.149
* [`4481e6d`](anthropics/claude-code-action@4481e6d) chore: bump Claude Code to 2.1.148 and Agent SDK to 0.3.148
* [`661a6fe`](anthropics/claude-code-action@661a6fe) Add Workload Identity Federation (OIDC) authentication support ([#1338](https://redirect.github.com/anthropics/claude-code-action/issues/1338))
* [`c9d66af`](anthropics/claude-code-action@c9d66af) chore: bump Claude Code to 2.1.147 and Agent SDK to 0.3.147
* [`20c8abf`](anthropics/claude-code-action@20c8abf) chore: bump Claude Code to 2.1.146 and Agent SDK to 0.3.146
* [`1dc994e`](anthropics/claude-code-action@1dc994e) Resolve actor account type before applying allowed\_bots ([#1330](https://redirect.github.com/anthropics/claude-code-action/issues/1330))
* [`ca89df3`](anthropics/claude-code-action@ca89df3) chore: bump Claude Code to 2.1.145 and Agent SDK to 0.3.145
* [`fd1877d`](anthropics/claude-code-action@fd1877d) Simplify comment tool instructions in prompt ([#1328](https://redirect.github.com/anthropics/claude-code-action/issues/1328))
* Additional commits viewable in [compare view](anthropics/claude-code-action@51ea8ea...787c5a0)
  
Updates `github/codeql-action` from 4.35.5 to 4.36.0
Release notes

*Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).*

> v4.36.0
> -------
>
> * *Breaking change*: Bump the minimum required CodeQL bundle version to 2.19.4. [#3894](https://redirect.github.com/github/codeql-action/pull/3894)
> * Add support for SHA-256 Git object IDs. [#3893](https://redirect.github.com/github/codeql-action/pull/3893)
> * Update default CodeQL bundle version to [2.25.5](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.5). [#3926](https://redirect.github.com/github/codeql-action/pull/3926)


Changelog

*Sourced from [github/codeql-action'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.36.0 - 22 May 2026
> --------------------
>
> * *Breaking change*: Bump the minimum required CodeQL bundle version to 2.19.4. [#3894](https://redirect.github.com/github/codeql-action/pull/3894)
> * Add support for SHA-256 Git object IDs. [#3893](https://redirect.github.com/github/codeql-action/pull/3893)
> * Update default CodeQL bundle version to [2.25.5](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.5). [#3926](https://redirect.github.com/github/codeql-action/pull/3926)
>
> 4.35.5 - 15 May 2026
> --------------------
>
> * We have improved how the JavaScript bundles for the CodeQL Action are generated to avoid duplication across bundles and reduce the size of the repository by around 70%. This should have no effect on the runtime behaviour of the CodeQL Action. [#3899](https://redirect.github.com/github/codeql-action/pull/3899)
> * For performance and accuracy reasons, [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) will now only be enabled on a pull request when diff-informed analysis is also enabled for that run. If diff-informed analysis is unavailable (for example, because the PR diff ranges could not be computed), the action will fall back to a full analysis. [#3791](https://redirect.github.com/github/codeql-action/pull/3791)
> * If multiple inputs are provided for the GitHub-internal `analysis-kinds` input, only `code-scanning` will be enabled. The `analysis-kinds` input is experimental, for GitHub-internal use only, and may change without notice at any time. [#3892](https://redirect.github.com/github/codeql-action/pull/3892)
> * Added an experimental change which, when running a Code Scanning analysis for a PR with [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) enabled, prefers CodeQL CLI versions that have a cached overlay-base database for the configured languages. This speeds up analysis for a repository when there is not yet a cached overlay-base database for the latest CLI version. We expect to roll this change out to everyone in May. [#3880](https://redirect.github.com/github/codeql-action/pull/3880)
>
> 4.35.4 - 07 May 2026
> --------------------
>
> * Update default CodeQL bundle version to [2.25.4](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.4). [#3881](https://redirect.github.com/github/codeql-action/pull/3881)
>
> 4.35.3 - 01 May 2026
> --------------------
>
> * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837)
> * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850)
> * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853)
> * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852)
> * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865)
>
> 4.35.2 - 15 Apr 2026
> --------------------
>
> * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795)
> * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789)
> * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794)
> * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807)
> * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823)
>
> 4.35.1 - 27 Mar 2026
> --------------------
>
> * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781)
>
> 4.35.0 - 27 Mar 2026
> --------------------
>
> * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767)
> * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773)

... (truncated)


Commits

* [`7211b7c`](github/codeql-action@7211b7c) Merge pull request [#3927](https://redirect.github.com/github/codeql-action/issues/3927) from github/update-v4.36.0-ebc2d9e2b
* [`7740f2f`](github/codeql-action@7740f2f) Update changelog for v4.36.0
* [`ebc2d9e`](github/codeql-action@ebc2d9e) Merge pull request [#3926](https://redirect.github.com/github/codeql-action/issues/3926) from github/update-bundle/codeql-bundle-v2.25.5
* [`d1f74b7`](github/codeql-action@d1f74b7) Add changelog note
* [`2dc40ce`](github/codeql-action@2dc40ce) Update default bundle to codeql-bundle-v2.25.5
* [`8449852`](github/codeql-action@8449852) Merge pull request [#3910](https://redirect.github.com/github/codeql-action/issues/3910) from github/henrymercer/repo-size-diff-check
* [`72ac23c`](github/codeql-action@72ac23c) Update excluded required check list
* [`c5297a2`](github/codeql-action@c5297a2) Merge pull request [#3919](https://redirect.github.com/github/codeql-action/issues/3919) from github/henrymercer/workflow-concurrency
* [`8ffeae7`](github/codeql-action@8ffeae7) CI: Automatically cancel non-generated workflows
* [`f3f52bf`](github/codeql-action@f3f52bf) Revert `getErrorMessage` import
* Additional commits viewable in [compare view](github/codeql-action@9e0d7b8...7211b7c)
  
Updates `docker/login-action` from 4.1.0 to 4.2.0
Release notes

*Sourced from [docker/login-action's releases](https://github.com/docker/login-action/releases).*

> v4.2.0
> ------
>
> * Bump `@​actions/core` from 3.0.0 to 3.0.1 in [docker/login-action#976](https://redirect.github.com/docker/login-action/pull/976)
> * Bump `@​aws-sdk/client-ecr` and `@​aws-sdk/client-ecr-public` to 3.1050.0 in [docker/login-action#960](https://redirect.github.com/docker/login-action/pull/960)
> * Bump `@​docker/actions-toolkit` from 0.86.0 to 0.90.0 in [docker/login-action#970](https://redirect.github.com/docker/login-action/pull/970)
> * Bump brace-expansion from 2.0.1 to 5.0.6 in [docker/login-action#993](https://redirect.github.com/docker/login-action/pull/993)
> * Bump fast-xml-builder from 1.1.4 to 1.2.0 in [docker/login-action#985](https://redirect.github.com/docker/login-action/pull/985)
> * Bump fast-xml-parser from 5.3.6 to 5.8.0 in [docker/login-action#963](https://redirect.github.com/docker/login-action/pull/963)
> * Bump http-proxy-agent and https-proxy-agent to 9.0.0 in [docker/login-action#961](https://redirect.github.com/docker/login-action/pull/961)
> * Bump postcss from 8.5.6 to 8.5.10 in [docker/login-action#979](https://redirect.github.com/docker/login-action/pull/979)
> * Bump tar from 6.2.1 to 7.5.15 in [docker/login-action#991](https://redirect.github.com/docker/login-action/pull/991)
> * Bump vite from 7.3.1 to 7.3.3 in [docker/login-action#986](https://redirect.github.com/docker/login-action/pull/986)
>
> **Full Changelog**: <docker/login-action@v4.1.0...v4.2.0>


Commits

* [`650006c`](docker/login-action@650006c) Merge pull request [#960](https://redirect.github.com/docker/login-action/issues/960) from docker/dependabot/npm\_and\_yarn/aws-sdk-dependenc...
* [`99df1a3`](docker/login-action@99df1a3) chore: update generated content
* [`3ab375f`](docker/login-action@3ab375f) build(deps): bump the aws-sdk-dependencies group across 1 directory with 2 up...
* [`39d8580`](docker/login-action@39d8580) Merge pull request [#970](https://redirect.github.com/docker/login-action/issues/970) from docker/dependabot/npm\_and\_yarn/docker/actions-to...
* [`4eefcd3`](docker/login-action@4eefcd3) chore: update generated content
* [`56d092c`](docker/login-action@56d092c) build(deps): bump `@​docker/actions-toolkit` from 0.86.0 to 0.90.0
* [`e2e31ca`](docker/login-action@e2e31ca) Merge pull request [#976](https://redirect.github.com/docker/login-action/issues/976) from docker/dependabot/npm\_and\_yarn/actions/core-3.0.1
* [`0bced94`](docker/login-action@0bced94) chore: update generated content
* [`3e75a0f`](docker/login-action@3e75a0f) build(deps): bump `@​actions/core` from 3.0.0 to 3.0.1
* [`365bebd`](docker/login-action@365bebd) Merge pull request [#984](https://redirect.github.com/docker/login-action/issues/984) from docker/dependabot/github\_actions/aws-actions/con...
* Additional commits viewable in [compare view](docker/login-action@4907a6d...650006c)
  
Updates `codecov/codecov-action` from 6.0.0 to 6.0.1
Release notes

*Sourced from [codecov/codecov-action's releases](https://github.com/codecov/codecov-action/releases).*

> v6.0.1
> ------
>
> What's Changed
> --------------
>
> * fix: prevent template injection in run: steps (VULN-1652) by [`@​thomasrockhu-codecov`](https://github.com/thomasrockhu-codecov) in [codecov/codecov-action#1947](https://redirect.github.com/codecov/codecov-action/pull/1947)
> * chore(release): 6.0.1 by [`@​thomasrockhu-codecov`](https://github.com/thomasrockhu-codecov) in [codecov/codecov-action#1949](https://redirect.github.com/codecov/codecov-action/pull/1949)
>
> **Full Changelog**: <codecov/codecov-action@v6.0.0...v6.0.1>


Changelog

*Sourced from [codecov/codecov-action's changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md).*

> v5.5.2
> ------
>
> ### What's Changed
>
> **Full Changelog**: <https://github.com/codecov/codecov-action/compare/v5.5.1..v5.5.2>
>
> v5.5.1
> ------
>
> ### What's Changed
>
> * fix: overwrite pr number on fork by [`@​thomasrockhu-codecov`](https://github.com/thomasrockhu-codecov) in [codecov/codecov-action#1871](https://redirect.github.com/codecov/codecov-action/pull/1871)
> * build(deps): bump actions/checkout from 4.2.2 to 5.0.0 by `@​app/dependabot` in [codecov/codecov-action#1868](https://redirect.github.com/codecov/codecov-action/pull/1868)
> * build(deps): bump github/codeql-action from 3.29.9 to 3.29.11 by `@​app/dependabot` in [codecov/codecov-action#1867](https://redirect.github.com/codecov/codecov-action/pull/1867)
> * fix: update to use local app/ dir by [`@​thomasrockhu-codecov`](https://github.com/thomasrockhu-codecov) in [codecov/codecov-action#1872](https://redirect.github.com/codecov/codecov-action/pull/1872)
> * docs: fix typo in README by [`@​datalater`](https://github.com/datalater) in [codecov/codecov-action#1866](https://redirect.github.com/codecov/codecov-action/pull/1866)
> * Document a `codecov-cli` version reference example by [`@​webknjaz`](https://github.com/webknjaz) in [codecov/codecov-action#1774](https://redirect.github.com/codecov/codecov-action/pull/1774)
> * build(deps): bump github/codeql-action from 3.28.18 to 3.29.9 by `@​app/dependabot` in [codecov/codecov-action#1861](https://redirect.github.com/codecov/codecov-action/pull/1861)
> * build(deps): bump ossf/scorecard-action from 2.4.1 to 2.4.2 by `@​app/dependabot` in [codecov/codecov-action#1833](https://redirect.github.com/codecov/codecov-action/pull/1833)
>
> **Full Changelog**: <https://github.com/codecov/codecov-action/compare/v5.5.0..v5.5.1>
>
> v5.5.0
> ------
>
> ### What's Changed
>
> * feat: upgrade wrapper to 0.2.4 by [`@​jviall`](https://github.com/jviall) in [codecov/codecov-action#1864](https://redirect.github.com/codecov/codecov-action/pull/1864)
> * Pin actions/github-script by Git SHA by [`@​martincostello`](https://github.com/martincostello) in [codecov/codecov-action#1859](https://redirect.github.com/codecov/codecov-action/pull/1859)
> * fix: check reqs exist by [`@​joseph-sentry`](https://github.com/joseph-sentry) in [codecov/codecov-action#1835](https://redirect.github.com/codecov/codecov-action/pull/1835)
> * fix: Typo in README by [`@​spalmurray`](https://github.com/spalmurray) in [codecov/codecov-action#1838](https://redirect.github.com/codecov/codecov-action/pull/1838)
> * docs: Refine OIDC docs by [`@​spalmurray`](https://github.com/spalmurray) in [codecov/codecov-action#1837](https://redirect.github.com/codecov/codecov-action/pull/1837)
> * build(deps): bump github/codeql-action from 3.28.17 to 3.28.18 by `@​app/dependabot` in [codecov/codecov-action#1829](https://redirect.github.com/codecov/codecov-action/pull/1829)
>
> **Full Changelog**: <https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0>
>
> v5.4.3
> ------
>
> ### What's Changed
>
> * build(deps): bump github/codeql-action from 3.28.13 to 3.28.17 by `@​app/dependabot` in [codecov/codecov-action#1822](https://redirect.github.com/codecov/codecov-action/pull/1822)
> * fix: OIDC on forks by [`@​joseph-sentry`](https://github.com/joseph-sentry) in [codecov/codecov-action#1823](https://redirect.github.com/codecov/codecov-action/pull/1823)
>
> **Full Changelog**: <https://github.com/codecov/codecov-action/compare/v5.4.2..v5.4.3>
>
> v5.4.2
> ------

... (truncated)


Commits

* [`e79a696`](codecov/codecov-action@e79a696) chore(release): 6.0.1 ([#1949](https://redirect.github.com/codecov/codecov-action/issues/1949))
* [`51e6422`](codecov/codecov-action@51e6422) fix: prevent template injection in run: steps (VULN-1652) ([#1947](https://redirect.github.com/codecov/codecov-action/issues/1947))
* See full diff in [compare view](codecov/codecov-action@57e3a13...e79a696)
  
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Cypher Batch creation is slow with vector indexes

2 participants