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: thomhurst/TUnit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.28.5
Choose a base ref
...
head repository: thomhurst/TUnit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.28.7
Choose a head ref
  • 2 commits
  • 8 files changed
  • 2 contributors

Commits on Apr 5, 2026

  1. chore(deps): update tunit to 1.28.5 (#5415)

    Co-authored-by: Renovate Bot <renovate@whitesourcesoftware.com>
    thomhurst and renovate-bot authored Apr 5, 2026
    Configuration menu
    Copy the full SHA
    873e709 View commit details
    Browse the repository at this point in the history
  2. fix: prevent StringBuilder race in console interceptor during paralle…

    …l tests (#5414)
    
    Remove StringBuilder overrides from OptimizedConsoleInterceptor. The overrides
    called ToString() which traverses the entire internal chunk linked list — if the
    caller's StringBuilder is mutated concurrently, ToString() throws
    ArgumentOutOfRangeException(chunkLength). The base TextWriter implementation
    iterates chunks via GetChunks() and copies each one independently via
    Write(ReadOnlySpan<char>), which the interceptor already overrides.
    
    Also move StringBuilder.Length checks inside the ReaderWriterLockSlim in
    Context.GetStandardOutput/GetErrorOutput — Length is not thread-safe.
    
    Fixes #5411
    thomhurst authored Apr 5, 2026
    Configuration menu
    Copy the full SHA
    adaedbc View commit details
    Browse the repository at this point in the history
Loading