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: d-e-s-o/test-log
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.18
Choose a base ref
...
head repository: d-e-s-o/test-log
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.19
Choose a head ref
  • 9 commits
  • 8 files changed
  • 3 contributors

Commits on Jul 5, 2025

  1. Document private items in documentation CI job

    We use rustdoc style documentation for both public and private items.
    By default, however, rustdoc only generates documentation for public
    ones, completely ignoring anything private. As a result, a bunch of
    unresolved references and other issues can make it into the
    documentation of private bits.
    Adjust the CI job to actually document private items and to catch these
    digressions in the future. While at it, also make sure that the CI job
    covers the entire workspace.
    d-e-s-o committed Jul 5, 2025
    Configuration menu
    Copy the full SHA
    a2c6ba2 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2025

  1. Update rstest requirement from 0.25.0 to 0.26.1

    Updates the requirements on [rstest](https://github.com/la10736/rstest) to permit the latest version.
    - [Release notes](https://github.com/la10736/rstest/releases)
    - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md)
    - [Commits](la10736/rstest@v0.25.0...v0.26.1)
    
    ---
    updated-dependencies:
    - dependency-name: rstest
      dependency-version: 0.26.1
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and d-e-s-o committed Jul 29, 2025
    Configuration menu
    Copy the full SHA
    d1a217e View commit details
    Browse the repository at this point in the history
  2. Don't specify patch level for dev-dependencies

    Stop specifying the patch level for any dev-dependencies. It's plain
    unnecessary and causes Dependabot to increase the number of bump pull
    requests.
    d-e-s-o committed Jul 29, 2025
    Configuration menu
    Copy the full SHA
    628feee View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2025

  1. Address clippy reported issue

    In newer version of Rust, clippy recognizes references to Rust items
    in Markdown documentation that are not surrounded by backticks. Fix one
    such instance pointed out.
    d-e-s-o committed Aug 12, 2025
    Configuration menu
    Copy the full SHA
    b633926 View commit details
    Browse the repository at this point in the history
  2. Bump actions/checkout from 4 to 5

    Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '5'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] committed Aug 12, 2025
    Configuration menu
    Copy the full SHA
    25e7c36 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2025

  1. Suggest using [dev-dependencies] instead of [dependencies] in README.md

    As far as I understand, this crate will typically be used when running tests, so it should be sufficient to list it as a dev-dependency.
    dbdr authored and d-e-s-o committed Oct 9, 2025
    Configuration menu
    Copy the full SHA
    7fc5975 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2025

  1. Bump actions/checkout from 5 to 6

    Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and d-e-s-o committed Nov 21, 2025
    Configuration menu
    Copy the full SHA
    9e7aafb View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2025

  1. Emit tracing output to stderr

    Behavior of the crate differs between the log and tracing backends:
    while log defaults to printing messages to stderr, tracing emits them to
    stdout. Until version 0.3.19 the tracing-subscriber crate did not allow
    changing this default. Pull request #3187 [0] changed that and release
    0.3.20 contains this logic.
    Now that we can, adjust the tracing based backend to log to stderr for
    consistency.
    
    [0] tokio-rs/tracing#3187
    d-e-s-o committed Nov 28, 2025
    Configuration menu
    Copy the full SHA
    bafe834 View commit details
    Browse the repository at this point in the history
  2. Bump version to 0.2.19

    This change bumps the version of the crate to 0.2.19. The following
    notable changes have been made since 0.2.18:
    - Adjusted 'tracing' output to log to stderr
    d-e-s-o committed Nov 28, 2025
    Configuration menu
    Copy the full SHA
    b4cd4a3 View commit details
    Browse the repository at this point in the history
Loading