Skip to content

Release v9.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 14 Apr 15:00
· 11 commits to main since this release
v9.0.0
f49f9bf

⚡ 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 methods Http, DurableHttpUsingFileSizeRolledBuffers and DurableHttpUsingTimeRolledBuffers. 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 methods Http, DurableHttpUsingFileSizeRolledBuffers and DurableHttpUsingTimeRolledBuffers. 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 the PostAsync method of interface IHttpClient.

💀 Removed