Skip to content

fix: async GAV rebuild drops commits during in-flight rebuild#3670

Merged
robfrank merged 2 commits into
mainfrom
fix/failinig-olap-test
Mar 17, 2026
Merged

fix: async GAV rebuild drops commits during in-flight rebuild#3670
robfrank merged 2 commits into
mainfrom
fix/failinig-olap-test

Conversation

@robfrank

Copy link
Copy Markdown
Collaborator

Summary

  • When GraphAnalyticalView uses ASYNCHRONOUS update mode, commit notifications arriving while a rebuild is already in progress were silently discarded, causing the view to miss newly committed data
  • Added asyncRebuildNeeded flag so that a follow-up rebuild is automatically triggered after the current one completes
  • Updated awaitReady() to loop until no pending rebuilds remain, ensuring callers see the fully settled state

Test plan

  • GraphAnalyticalViewTest#asynchronousUpdateModeMultipleCommits — previously failing, now passes
  • All 3 async-related tests pass
  • Full GraphAnalyticalViewTest suite (121 tests) passes

🤖 Generated with Claude Code

When ASYNCHRONOUS update mode had a rebuild in progress, subsequent
commit notifications were silently discarded. Added asyncRebuildNeeded
flag so a follow-up rebuild is triggered after the current one completes,
and updated awaitReady() to loop until no pending rebuilds remain.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@gemini-code-assist

Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request resolves a critical data consistency issue in GraphAnalyticalView when operating in asynchronous update mode. Previously, concurrent commits during a rebuild could lead to data loss in the view. The changes introduce a mechanism to queue follow-up rebuilds and ensure that clients waiting for the view to be ready will always receive a fully updated and consistent state, preventing data staleness.

Highlights

  • Problem Addressed: Fixed an issue where GraphAnalyticalView in ASYNCHRONOUS update mode would silently discard commit notifications during an ongoing rebuild, leading to missed data.
  • Follow-up Rebuilds: Introduced an asyncRebuildNeeded flag to ensure that if commits arrive during an asynchronous rebuild, a subsequent rebuild is automatically triggered upon completion of the current one.
  • State Settlement: Enhanced the awaitReady() method to loop and wait until all pending rebuilds, including any triggered by asyncRebuildNeeded, have completed, guaranteeing that callers observe a fully settled view state.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Changelog
  • engine/src/main/java/com/arcadedb/graph/olap/GraphAnalyticalView.java
    • Introduced a new asyncRebuildNeeded volatile boolean flag to track if a commit occurred during an ongoing asynchronous rebuild.
    • Modified the awaitReady method to repeatedly check the view's status and the asyncRebuildNeeded flag, ensuring all necessary rebuilds complete before returning.
    • Updated the onRelevantCommit method to set asyncRebuildNeeded when a rebuild is already in progress, and to trigger a new rebuild if this flag is set after the current rebuild finishes.
Activity
  • The author, robfrank, created this pull request.
  • The changes address a previously failing test case: GraphAnalyticalViewTest#asynchronousUpdateModeMultipleCommits.
  • All three async-related tests now pass.
  • The full GraphAnalyticalViewTest suite (121 tests) passes.
  • The PR description indicates it was generated with Claude Code.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@mergify

mergify Bot commented Mar 17, 2026

Copy link
Copy Markdown
Contributor

🧪 CI Insights

Here's what we observed from your CI run for df1cc4d.

🟢 All jobs passed!

But CI Insights is watching 👀

@claude

claude Bot commented Mar 17, 2026

Copy link
Copy Markdown

Code Review

The core idea — using an asyncRebuildNeeded boolean flag to coalesce commits-during-rebuild into a single follow-up rebuild — is clean and correct. Good test added. Below are a few issues worth addressing.


Bug: awaitReady busy-spins on build failure (STALE status)

The new while loop exits only when status == READY && !asyncRebuildNeeded, but it never exits early for STALE. When a rebuild fails the code path is:

} catch (final Exception e) {
    this.buildError = e;
    this.status = Status.STALE;    // status ≠ READY
    ...
} finally {
    ...
    latch.countDown();             // already-counted-down latch
}

After latch.countDown(), awaitReady wakes up and evaluates:

while (status != Status.READY || asyncRebuildNeeded)   // true: STALE ≠ READY

It then re-reads the latch — which is already at count 0 — so latch.await(...) returns true instantly, and the loop spins until the deadline. That is a regression vs. the original code, which would return false promptly once the latch was counted down.

Suggested fix — add an early exit inside the loop:

if (status == Status.STALE)
    return false;

Or change the loop guard to:

while (status == Status.BUILDING || (status == Status.READY && asyncRebuildNeeded))

Concurrency ordering in the finally block

compacting.set(false);
latch.countDown();             // (A) wakes awaitReady
if (asyncRebuildNeeded)
    onRelevantCommit();        // (B) sets new latch

Between (A) and (B) there is a tiny window where awaitReady sees asyncRebuildNeeded == true but readyLatch still points to the already-counted-down old latch. Since latch.await() on a zero-count latch returns immediately, awaitReady will tight-spin for the short time it takes onRelevantCommit() to create the new latch. This is not a correctness bug — just a micro-busy-wait — but it could be avoided by calling onRelevantCommit() before latch.countDown(). However, changing that order requires verifying that onRelevantCommit() under the same lock won't deadlock, so it is a trade-off.


Minor: asyncRebuildNeeded read without the lock in the async thread

// finally block — NOT inside synchronized(GraphAnalyticalView.this)
if (asyncRebuildNeeded)
    onRelevantCommit();

asyncRebuildNeeded is volatile, so visibility is guaranteed. The synchronized keyword on onRelevantCommit() ensures proper locking when it actually executes. This is fine as-is, but a quick comment explaining the deliberate lock-free read would help readers.


Test: consider asserting getNodeCount defensively

The test hard-codes a result of exactly 6 nodes after 5 rapid commits. Because the loop uses sequential commits in the same thread and awaitReady returns only after all rebuilds settle, the count should be deterministic, so this is fine. Just noting it explicitly in the test comment (e.g. "exactly 6: Alice + P0..P4") already present — good.


Summary

Severity Item
Bug awaitReady busy-spins until timeout when a rebuild fails (STALE status)
Minor Micro-busy-wait window between latch.countDown() and new latch creation
Nit Missing comment on intentional volatile read of asyncRebuildNeeded outside lock

The STALE spin-until-timeout is the only change I'd consider required before merging. Everything else looks solid.

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

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.

Code Review

This pull request correctly addresses an issue where commits were dropped during an asynchronous GAV rebuild by introducing a flag to queue a subsequent rebuild. The logic for chaining rebuilds appears sound. However, the updated awaitReady() method introduces a potential concurrency issue: it can enter a busy-wait loop, consuming high CPU, while waiting for the next rebuild to be scheduled. I've suggested a fix to address this by yielding the thread in that specific transient state.

Comment on lines 346 to 366
public boolean awaitReady(final long timeout, final TimeUnit unit) {
if (status == Status.READY)
return true;
final long deadlineNanos = System.nanoTime() + unit.toNanos(timeout);
try {
if (!readyLatch.await(timeout, unit))
return false;
// Loop to handle follow-up rebuilds triggered by asyncRebuildNeeded.
// Each rebuild creates a new latch, so we re-read the field after each wait.
while (status != Status.READY || asyncRebuildNeeded) {
final long remainingNanos = deadlineNanos - System.nanoTime();
if (remainingNanos <= 0)
return false;
final CountDownLatch latch = readyLatch;
if (latch == null)
return status == Status.READY && !asyncRebuildNeeded;
if (!latch.await(remainingNanos, TimeUnit.NANOSECONDS))
return false;
}
} catch (final InterruptedException e) {
Thread.currentThread().interrupt();
return false;
}
return status == Status.READY;
return true;
}

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 updated awaitReady method has a potential for a busy-wait spin. If a rebuild completes and another one is needed (asyncRebuildNeeded is true), this method can loop continuously on an already counted-down latch until the next rebuild is scheduled by another thread. This can lead to high CPU usage.

To fix this, we can check if the latch is already open (getCount() == 0). If it is, and the waiting condition is still met, we should Thread.yield() to prevent a tight loop and allow the other thread to schedule the next build.

  public boolean awaitReady(final long timeout, final TimeUnit unit) {
    final long deadlineNanos = System.nanoTime() + unit.toNanos(timeout);
    try {
      // Loop to handle follow-up rebuilds triggered by asyncRebuildNeeded.
      // Each rebuild creates a new latch, so we re-read the field after each wait.
      while (status != Status.READY || asyncRebuildNeeded) {
        final long remainingNanos = deadlineNanos - System.nanoTime();
        if (remainingNanos <= 0)
          return false;

        final CountDownLatch latch = readyLatch;
        if (latch == null)
          return status == Status.READY && !asyncRebuildNeeded;

        // If latch is already open, we are in a transient state waiting for the next build.
        // Yield to avoid a busy-wait spin while the other thread sets up the new latch.
        if (latch.getCount() == 0) {
          Thread.yield();
          continue;
        }

        if (!latch.await(remainingNanos, TimeUnit.NANOSECONDS))
          return false;
      }
    } catch (final InterruptedException e) {
      Thread.currentThread().interrupt();
      return false;
    }
    return true;
  }

- Exit loop immediately when status is STALE (failed rebuild) instead of
  spinning on a zero-count latch until deadline
- Add comment explaining intentional volatile read of asyncRebuildNeeded
  outside the monitor in the finally block

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@robfrank

Copy link
Copy Markdown
Collaborator Author

Addressed review feedback in df1cc4d:

Fixed:

  • STALE busy-spin bug (flagged by both reviewers): awaitReady now exits immediately with false when status == STALE, preventing spin on a zero-count latch after a failed rebuild.
  • Volatile read comment (Claude bot nit): Added comment explaining the intentional lock-free read of asyncRebuildNeeded in the finally block.

Not addressed (by design):

  • Micro-busy-wait between latch.countDown() and new latch creation: This is a transient nanosecond-scale window that resolves itself once onRelevantCommit() creates the new latch. Thread.yield() (Gemini's suggestion) adds complexity for no practical benefit. Reordering to call onRelevantCommit() before latch.countDown() (Claude bot's alternative) risks deadlock since onRelevantCommit() is synchronized.

All 121 GraphAnalyticalViewTest tests pass.

@robfrank robfrank merged commit 3c04b86 into main Mar 17, 2026
17 of 24 checks passed
@codacy-production

Copy link
Copy Markdown

Coverage summary from Codacy

See diff coverage on Codacy

Coverage variation Diff coverage
-9.67% 88.89%
Coverage variation details
Coverable lines Covered lines Coverage
Common ancestor commit (024b303) 109700 81927 74.68%
Head commit (5120447) 140655 (+30955) 91443 (+9516) 65.01% (-9.67%)

Coverage variation is the difference between the coverage for the head and common ancestor commits of the pull request branch: <coverage of head commit> - <coverage of common ancestor commit>

Diff coverage details
Coverable lines Covered lines Diff coverage
Pull request (#3670) 18 16 88.89%

Diff coverage is the percentage of lines that are covered by tests out of the coverable lines that the pull request added or modified: <covered lines added or modified>/<coverable lines added or modified> * 100%

See your quality gate settings    Change summary preferences

robfrank added a commit that referenced this pull request May 12, 2026
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…[skip ci]

Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 5.18.0 to 5.19.0.
Release notes

*Sourced from [org.mockito:mockito-core's releases](https://github.com/mockito/mockito/releases).*

> v5.19.0
> -------
>
> *Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/shipkit-changelog)*
>
> #### 5.19.0
>
> * 2025-08-15 - [37 commit(s)](mockito/mockito@v5.18.0...v5.19.0) by Adrian-Kim, Tim van der Lippe, Tran Ngoc Nhan, dependabot[bot], juyeop
> * feat: Add support for JDK21 Sequenced Collections. [([ArcadeData#3708](https://redirect.github.com/mockito/mockito/issues/3708))]([mockito/mockito#3708](https://redirect.github.com/mockito/mockito/pull/3708))
> * Bump actions/checkout from 4 to 5 [([ArcadeData#3707](https://redirect.github.com/mockito/mockito/issues/3707))]([mockito/mockito#3707](https://redirect.github.com/mockito/mockito/pull/3707))
> * build: Allow overriding 'Created-By' for reproducible builds [([ArcadeData#3704](https://redirect.github.com/mockito/mockito/issues/3704))]([mockito/mockito#3704](https://redirect.github.com/mockito/mockito/pull/3704))
> * Bump org.assertj:assertj-core from 3.27.3 to 3.27.4 [([ArcadeData#3703](https://redirect.github.com/mockito/mockito/issues/3703))]([mockito/mockito#3703](https://redirect.github.com/mockito/mockito/pull/3703))
> * Bump androidx.test:runner from 1.6.2 to 1.7.0 [([ArcadeData#3697](https://redirect.github.com/mockito/mockito/issues/3697))]([mockito/mockito#3697](https://redirect.github.com/mockito/mockito/pull/3697))
> * Bump org.junit.platform:junit-platform-launcher from 1.13.3 to 1.13.4 [([ArcadeData#3694](https://redirect.github.com/mockito/mockito/issues/3694))]([mockito/mockito#3694](https://redirect.github.com/mockito/mockito/pull/3694))
> * Bump com.diffplug.spotless:spotless-plugin-gradle from 7.1.0 to 7.2.1 [([ArcadeData#3693](https://redirect.github.com/mockito/mockito/issues/3693))]([mockito/mockito#3693](https://redirect.github.com/mockito/mockito/pull/3693))
> * Bump junit-jupiter from 5.13.3 to 5.13.4 [([ArcadeData#3691](https://redirect.github.com/mockito/mockito/issues/3691))]([mockito/mockito#3691](https://redirect.github.com/mockito/mockito/pull/3691))
> * Bump com.gradle.develocity from 4.0.2 to 4.1 [([ArcadeData#3689](https://redirect.github.com/mockito/mockito/issues/3689))]([mockito/mockito#3689](https://redirect.github.com/mockito/mockito/pull/3689))
> * Bump com.google.googlejavaformat:google-java-format from 1.27.0 to 1.28.0 [([ArcadeData#3688](https://redirect.github.com/mockito/mockito/issues/3688))]([mockito/mockito#3688](https://redirect.github.com/mockito/mockito/pull/3688))
> * Bump com.google.googlejavaformat:google-java-format from 1.25.2 to 1.27.0 [([ArcadeData#3686](https://redirect.github.com/mockito/mockito/issues/3686))]([mockito/mockito#3686](https://redirect.github.com/mockito/mockito/pull/3686))
> * Bump com.diffplug.spotless:spotless-plugin-gradle from 7.0.4 to 7.1.0 [([ArcadeData#3685](https://redirect.github.com/mockito/mockito/issues/3685))]([mockito/mockito#3685](https://redirect.github.com/mockito/mockito/pull/3685))
> * Bump junit-jupiter from 5.13.2 to 5.13.3 [([ArcadeData#3684](https://redirect.github.com/mockito/mockito/issues/3684))]([mockito/mockito#3684](https://redirect.github.com/mockito/mockito/pull/3684))
> * Bump org.shipkit:shipkit-auto-version from 2.1.0 to 2.1.2 [([ArcadeData#3683](https://redirect.github.com/mockito/mockito/issues/3683))]([mockito/mockito#3683](https://redirect.github.com/mockito/mockito/pull/3683))
> * Bump com.diffplug.spotless:spotless-plugin-gradle from 7.0.2 to 7.0.4 [([ArcadeData#3682](https://redirect.github.com/mockito/mockito/issues/3682))]([mockito/mockito#3682](https://redirect.github.com/mockito/mockito/pull/3682))
> * Only run release after both Java and Android tests have finished
>   [([ArcadeData#3681](https://redirect.github.com/mockito/mockito/issues/3681))]([mockito/mockito#3681](https://redirect.github.com/mockito/mockito/pull/3681))
> * Bump org.junit.platform:junit-platform-launcher from 1.12.2 to 1.13.3 [([ArcadeData#3680](https://redirect.github.com/mockito/mockito/issues/3680))]([mockito/mockito#3680](https://redirect.github.com/mockito/mockito/pull/3680))
> * Bump org.codehaus.groovy:groovy from 3.0.24 to 3.0.25 [([ArcadeData#3679](https://redirect.github.com/mockito/mockito/issues/3679))]([mockito/mockito#3679](https://redirect.github.com/mockito/mockito/pull/3679))
> * Bump org.eclipse.platform:org.eclipse.osgi from 3.23.0 to 3.23.100 [([ArcadeData#3678](https://redirect.github.com/mockito/mockito/issues/3678))]([mockito/mockito#3678](https://redirect.github.com/mockito/mockito/pull/3678))
> * Can no longer publish snapshot releases [([ArcadeData#3677](https://redirect.github.com/mockito/mockito/issues/3677))]([mockito/mockito#3677](https://redirect.github.com/mockito/mockito/issues/3677))
> * Update Gradle to 8.14.2 [([ArcadeData#3676](https://redirect.github.com/mockito/mockito/issues/3676))]([mockito/mockito#3676](https://redirect.github.com/mockito/mockito/pull/3676))
> * Bump errorprone from 2.23.0 to 2.39.0 [([ArcadeData#3674](https://redirect.github.com/mockito/mockito/issues/3674))]([mockito/mockito#3674](https://redirect.github.com/mockito/mockito/pull/3674))
> * Correct Junit docs link [([ArcadeData#3672](https://redirect.github.com/mockito/mockito/issues/3672))]([mockito/mockito#3672](https://redirect.github.com/mockito/mockito/pull/3672))
> * Bump net.ltgt.gradle:gradle-errorprone-plugin from 4.1.0 to 4.3.0 [([ArcadeData#3670](https://redirect.github.com/mockito/mockito/issues/3670))]([mockito/mockito#3670](https://redirect.github.com/mockito/mockito/pull/3670))
> * Bump junit-jupiter from 5.13.1 to 5.13.2 [([ArcadeData#3669](https://redirect.github.com/mockito/mockito/issues/3669))]([mockito/mockito#3669](https://redirect.github.com/mockito/mockito/pull/3669))
> * Bump bytebuddy from 1.17.5 to 1.17.6 [([ArcadeData#3668](https://redirect.github.com/mockito/mockito/issues/3668))]([mockito/mockito#3668](https://redirect.github.com/mockito/mockito/pull/3668))
> * Bump junit-jupiter from 5.12.2 to 5.13.1 [([ArcadeData#3666](https://redirect.github.com/mockito/mockito/issues/3666))]([mockito/mockito#3666](https://redirect.github.com/mockito/mockito/pull/3666))
> * Bump org.jetbrains.kotlin:kotlin-stdlib from 2.0.21 to 2.2.0 [([ArcadeData#3665](https://redirect.github.com/mockito/mockito/issues/3665))]([mockito/mockito#3665](https://redirect.github.com/mockito/mockito/pull/3665))
> * Bump org.gradle.toolchains.foojay-resolver-convention from 0.9.0 to 1.0.0 [([ArcadeData#3661](https://redirect.github.com/mockito/mockito/issues/3661))]([mockito/mockito#3661](https://redirect.github.com/mockito/mockito/pull/3661))
> * Bump org.junit.platform:junit-platform-launcher from 1.11.4 to 1.12.2 [([ArcadeData#3660](https://redirect.github.com/mockito/mockito/issues/3660))]([mockito/mockito#3660](https://redirect.github.com/mockito/mockito/pull/3660))
> * Add JDK21 sequenced collections for ReturnsEmptyValues [([ArcadeData#3659](https://redirect.github.com/mockito/mockito/issues/3659))]([mockito/mockito#3659](https://redirect.github.com/mockito/mockito/issues/3659))
> * Bump com.gradle.develocity from 3.19.1 to 4.0.2 [([ArcadeData#3658](https://redirect.github.com/mockito/mockito/issues/3658))]([mockito/mockito#3658](https://redirect.github.com/mockito/mockito/pull/3658))
> * Bump ru.vyarus:gradle-animalsniffer-plugin from 1.7.2 to 2.0.1 [([ArcadeData#3657](https://redirect.github.com/mockito/mockito/issues/3657))]([mockito/mockito#3657](https://redirect.github.com/mockito/mockito/pull/3657))
> * Bump org.eclipse.platform:org.eclipse.osgi from 3.22.0 to 3.23.0 [([ArcadeData#3656](https://redirect.github.com/mockito/mockito/issues/3656))]([mockito/mockito#3656](https://redirect.github.com/mockito/mockito/pull/3656))
> * Bump org.codehaus.groovy:groovy from 3.0.23 to 3.0.24 [([ArcadeData#3655](https://redirect.github.com/mockito/mockito/issues/3655))]([mockito/mockito#3655](https://redirect.github.com/mockito/mockito/pull/3655))
> * Bump junit-jupiter from 5.11.4 to 5.12.2 [([ArcadeData#3653](https://redirect.github.com/mockito/mockito/issues/3653))]([mockito/mockito#3653](https://redirect.github.com/mockito/mockito/pull/3653))
> * Reproducible Build: need to inject JDK distribution details to rebuild [([ArcadeData#3563](https://redirect.github.com/mockito/mockito/issues/3563))]([mockito/mockito#3563](https://redirect.github.com/mockito/mockito/issues/3563))


Commits

* [`144751b`](mockito/mockito@144751b) Add support for JDK21 Sequenced Collections. ([ArcadeData#3708](https://redirect.github.com/mockito/mockito/issues/3708))
* [`b275c7d`](mockito/mockito@b275c7d) Bump actions/checkout from 4 to 5 ([ArcadeData#3707](https://redirect.github.com/mockito/mockito/issues/3707))
* [`ad6ae2f`](mockito/mockito@ad6ae2f) Allow overriding 'Created-By' for reproducible builds ([ArcadeData#3704](https://redirect.github.com/mockito/mockito/issues/3704))
* [`096ee9f`](mockito/mockito@096ee9f) Bump org.assertj:assertj-core from 3.27.3 to 3.27.4 ([ArcadeData#3703](https://redirect.github.com/mockito/mockito/issues/3703))
* [`aa7be27`](mockito/mockito@aa7be27) Bump androidx.test:runner from 1.6.2 to 1.7.0 ([ArcadeData#3697](https://redirect.github.com/mockito/mockito/issues/3697))
* [`c8a698b`](mockito/mockito@c8a698b) Remove unused tests
* [`ea45979`](mockito/mockito@ea45979) Bump errorprone from 2.39.0 to 2.41.0
* [`9c8eb23`](mockito/mockito@9c8eb23) Bump org.junit.platform:junit-platform-launcher from 1.13.3 to 1.13.4 ([ArcadeData#3694](https://redirect.github.com/mockito/mockito/issues/3694))
* [`f05e44d`](mockito/mockito@f05e44d) Bump com.diffplug.spotless:spotless-plugin-gradle from 7.1.0 to 7.2.1 ([ArcadeData#3693](https://redirect.github.com/mockito/mockito/issues/3693))
* [`9d32dfe`](mockito/mockito@9d32dfe) Bump junit-jupiter from 5.13.3 to 5.13.4 ([ArcadeData#3691](https://redirect.github.com/mockito/mockito/issues/3691))
* Additional commits viewable in [compare view](mockito/mockito@v5.18.0...v5.19.0)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=org.mockito:mockito-core&package-manager=maven&previous-version=5.18.0&new-version=5.19.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
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.

1 participant