Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: neo4j/neo4j-java-driver
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.0.5
Choose a base ref
...
head repository: neo4j/neo4j-java-driver
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.1.0
Choose a head ref
  • 3 commits
  • 30 files changed
  • 2 contributors

Commits on Apr 24, 2026

  1. Configuration menu
    Copy the full SHA
    e19560d View commit details
    Browse the repository at this point in the history

Commits on Apr 30, 2026

  1. feat(idempotent): add support for autocommit retries (#1759)

    This update introduces automatic retries for auto-commit queries executed via session `run` methods. At present, the driver performs a single immediate retry, and only for idempotent errors.
    
    This behaviour is enabled by default, but can be disabled at both the driver and session levels.
    
    Driver configuration:
    ```java
    var config = Config.builder()
            .withAutoCommitRetriesDisabled(true) // Defaults to false
            .build();
    ```
    
    Session configuration:
    ```java
    var config = SessionConfig.builder()
            .withAutoCommitRetriesMode(AutoCommitRetriesMode.DISABLED) // Defaults to AutoCommitRetriesMode.DEFAULT that delegates to driver configuration
            .build();
    ```
    injectives authored Apr 30, 2026
    Configuration menu
    Copy the full SHA
    3439d70 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2026

  1. Configuration menu
    Copy the full SHA
    7652d3c View commit details
    Browse the repository at this point in the history
Loading