Serilog Aspnetcore Versions Save

Serilog integration for ASP.NET Core

v8.0.1

3 months ago
  • #357 - bug fix: generate an AssemblyVersionAttribute (@nblumhardt)

v8.0.0

6 months ago
  • #338 - remove obsolete APIs and clean up (@sungam3r)
  • #348 - update test dependencies (@SimonCropp)
  • #349 - collect trace and span ids for propagation with Serilog 3.1 (@nblumhardt)
  • #351 - update to .NET 8 RTM and Serilog 3.1.1 (@nblumhardt)

Breaking change

The obsolete UseSerilog() extension on IWebHostBuilder has been removed. Switch to either IHostBuilder.UseSerilog() or IServiceCollection.AddSerilog() instead.

    .ConfigureServices(services => services.AddSerilog())

v7.0.0

1 year ago
  • #313 - update Serilog.Settings.Configuration dependency (@julian94)
  • Use VS2022 image for CI builds (@SimonCropp)
  • #325 - pin to ASP.NET Core v7 (@nblumhardt)

v6.1.0

1 year ago
  • #305 - add GetMessageTemplateProperties option (@dnperfors)
  • #306 - language level modernization and cleanup (@SimonCropp)

v6.0.1

1 year ago
  • Update to Serilog.Extensions.Hosting 5.0.1

v6.0.0

1 year ago
  • #290 - update README snippet for Azure Diagnostics Log Stream configuration (@Ky7m)
  • #271 - update to Serilog.Extensions.Hosting 5.x and use exception details from diagnostic context when present (@angularsen)

v5.0.0

2 years ago
  • #280 - fix package downgrade warning on publish by updating Serilog.Settings.Configuration dependency (@joaope)
  • #265 - add RequestLoggingOptions.IncludeQueryInRequestPath option (@jarronshih)
  • #247, #248 - README example updates (@acohenOT)
  • #286 - default to not include request query in path; mark IWebHostBuilder extensions as obsolete on platforms with IHostBuilder; further dependency updates (@nblumhardt)

v4.1.0

3 years ago
  • #240 - Drop Microsoft.AspNetCore.Http.Abstractions dependency for netcoreapp3.1 and higher
  • #242 - bump .NET SDK version to avoid depending on a vulnerable ASP.NET framework version

v4.0.0

3 years ago
  • #217 - documentation improvements (@svrooij, @sungam3r)
  • #227 - update Serilog.Sinks.Debug dependency to 2.0.0 (@nblumhardt)
  • #234 - update Serilog.Extensions.Hosting dependency to bring in CreateBootstrapLogger() on supported platforms (@nblumhardt)

v3.4.0

3 years ago
  • #167 - README updates (@phlashdev)
  • #172, #176 - SDK update (@tebeco, @ralphhendriks)
  • #165 - targeting updates to improve .NET Core 3.1 support (@tebeco)
  • #183 - accept ILogger through RequestLoggingOptions (@nblumhardt)
  • #191 - improve compatibility with WebApplicationFactory (@rsantosdev)
  • #193 - show consumption of services from IServiceProvider within UseSerilog() callback (@nblumhardt)
  • #195 - fix README configuration example (@michaelvolz)
  • #197 - allow RequestLoggingOptions configuration outside of Configure(IApplicationBuilder) (@skomis-mm)