Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add bolt 5.4 support (telemetry) #12

Merged
merged 8 commits into from
Apr 13, 2024
Merged

Add bolt 5.4 support (telemetry) #12

merged 8 commits into from
Apr 13, 2024

Commits on Apr 12, 2024

  1. Add bolt 5.4 support (telemetry)

    Starting with Bolt 5.4, the driver will, by default, send anonymous API usage
    statistics to the server if requested.
    
    An opt-out is available through `DriverConfig::with_telemetry`:
    
    ```rust
    let driver = Driver::new(
        connection_config,
        DriverConfig::new().with_telemetry(false),
    );
    ```
    
    If the server requests is, the driver will send anonymous API usage.
    Currently, everytime one of the following APIs is used to execute a query
    (for the first time), the server is informed of this
    (without any further information like arguments, client identifiers, etc.):
    
     * `ExecuteQueryBuilder::run()` / `ExecuteQueryBuilder::run_with_retry()`
     * `TransactionBuilder::run()`
     * `TransactionBuilder::run_with_retry()`
     * `AutoCommitBuilder::run()`
    robsdedude committed Apr 12, 2024
    Configuration menu
    Copy the full SHA
    f68aeaf View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2024

  1. Configuration menu
    Copy the full SHA
    0382440 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    370104d View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d90525a View commit details
    Browse the repository at this point in the history
  4. Tidy up the changelog

    robsdedude committed Apr 13, 2024
    Configuration menu
    Copy the full SHA
    2ff7d38 View commit details
    Browse the repository at this point in the history
  5. TestKit: improve backend logging

     * Add time stamp
     * Remove module of log messages
    robsdedude committed Apr 13, 2024
    Configuration menu
    Copy the full SHA
    dbc0c59 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e3061f9 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    35d5391 View commit details
    Browse the repository at this point in the history