⚡ Added
-
#311 [BREAKING CHANGE] Support specifying
levelSwitch
when creating the sink, thus adding the support to dynamically change the log level at runtime (contribution by @yuriy-millen)Migration guide
The parameter
levelSwitch
has been introduced to the methodsHttp
,DurableHttpUsingFileSizeRolledBuffers
andDurableHttpUsingTimeRolledBuffers
. Please verify that the arguments pass by you to these methods still align with your intentions.To automatically mitigate this kind of new parameter issue in the future, move from using positional arguments to named arguments.
-
#262 [BREAKING CHANGE] Support specifying
flushOnClose
when creating the sink, thus adding the support to suppress sending unsent log events to the log server before closing the sink (proposed by @murlidakhare, @julichan, @janichirag11 & @prasadpaul53)Migration guide
The parameter
flushOnClose
has been introduced to the methodsHttp
,DurableHttpUsingFileSizeRolledBuffers
andDurableHttpUsingTimeRolledBuffers
. Please verify that the arguments pass by you to these methods still align with your intentions.To automatically mitigate this kind of new parameter issue in the future, move from using positional arguments to named arguments.
-
Support for .NET Framework 4.6.2
💫 Changed
- #262 [BREAKING CHANGE] A new argument of type
CancellationToken
has been added to thePostAsync
method of interfaceIHttpClient
.
💀 Removed
- #253 [BREAKING CHANGE] Remove support for .NET Framework 4.5, aligning with the .NET Framework support policy
- [BREAKING CHANGE] Remove support for .NET Framework 4.6.1, aligning with the .NET Framework support policy