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: serilog/serilog
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.3.0
Choose a base ref
...
head repository: serilog/serilog
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.3.1
Choose a head ref
  • 9 commits
  • 15 files changed
  • 7 contributors

Commits on May 20, 2025

  1. remove SourceLink

    https://github.com/dotnet/sourcelink/releases
    
    > Source Link is now included in .NET SDK 8 and enabled by default. Projects that migrate to .NET SDK 8 do not need to reference Source Link packages explicitly via PackageReference anymore.
    SimonCropp authored and nblumhardt committed May 20, 2025
    Configuration menu
    Copy the full SHA
    e378f33 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2025

  1. Handle Exception.ToString failures in text formatter (#2197)

    * Handle Exception.ToString failures in text formatter
    
    Wraps Exception.ToString in a try-catch block to prevent logging failures if the method throws. If an error occurs, a fallback message with details is written instead.
    
    * Update MessageTemplateTextFormatter.cs
    
    * Update MessageTemplateTextFormatter.cs
    krisbiradar authored Sep 4, 2025
    Configuration menu
    Copy the full SHA
    078de1e View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2025

  1. Remove char[] allocation (#2198)

    * Remove char[] allocation
    
    - This PR removes a char[] allocation that is occuring in
      MessageTemplateParser. The fix is to instead create a static char[]
      that we then reference which removes the allocation altogether. This
      doesn't have a huge impact on the benchmark runtime though it does
      help eliminate a small allocation that was contributing to more GCs in
      the benchmark.
    
    * Addressing PR comments
    
    ---------
    
    Co-authored-by: Nik Karpinsky <[email protected]>
    karpinsn and Nik Karpinsky authored Sep 5, 2025
    Configuration menu
    Copy the full SHA
    2fd949e View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2025

  1. Remove backpressure from XMLDoc (#2203)

    Because backpressure is not applied, instead events are discarded when the queue is full.
    timothycoleman authored Sep 26, 2025
    Configuration menu
    Copy the full SHA
    1f36d2e View commit details
    Browse the repository at this point in the history

Commits on Nov 2, 2025

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

Commits on Nov 12, 2025

  1. Target and test on net10 (#2206)

    * net10
    
    * <SelfContained>true</SelfContained>
    
    * Update global.json
    
    * Update Directory.Build.props
    SimonCropp authored Nov 12, 2025
    Configuration menu
    Copy the full SHA
    7f3a5bf View commit details
    Browse the repository at this point in the history

Commits on Jan 20, 2026

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

Commits on Jan 28, 2026

  1. Inline TraceId and SpanId JSON string formatting (#2215)

    * Inline TraceId and SpanId JSON string formatting
    
    Replaces usage of JsonValueFormatter.WriteQuotedJsonString for TraceId and SpanId with direct writing of quoted string values.
    
    activitytraceid is only either numbers or lower-case hexadecimal
    https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activitytraceid.createfromstring?view=net-8.0#exceptions
    
    same for activityspanid
    https://learn.microsoft.com/en-us/dotnet/api/system.diagnostics.activityspanid.createfromstring?view=net-8.0#exceptions
    
    * Update JsonFormatterTests.cs
    SimonCropp authored Jan 28, 2026
    Configuration menu
    Copy the full SHA
    dc52979 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2026

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