Releases: FantasticFiasco/serilog-sinks-http
Releases · FantasticFiasco/serilog-sinks-http
Release 3.1.1
💉 Fixed
- Package project URL
Release 3.1.0
⚡ Added
- Support for the formatting types:
FormattingType.NormalRendered
,FormattingType.Normal
,FormattingType.CompactRendered
andFormattingType.Compact
. The formatting type can be configured viaOptions
andDurableOptions
.
Release 3.0.0
⚡ Added
- A sink is durable when created using
Http(string, DurableOptions)
. A durable sink will persist log events on disk before sending them over the network, thus protecting against data loss after a system or process restart.
💫 Changed
- [BREAKING CHANGE] The syntax for creating a non-durable sink has been changed from
Http(string)
toHttp(string, Options)
to accommodate for the syntax to create a durable sink. A non-durable sink will loose data after a system or process restart. - Improve compatibility by supporting .NET Standard 1.3
Release 2.0.0
💫 Changed
- Custom implementation of
IHttpClient
can be passed to sink when creating it (contribution by @lhaussknecht)
Release 1.0.0
Initial version.