Releases: chriswill/serilog-sinks-azureblobstorage
Releases · chriswill/serilog-sinks-azureblobstorage
4.0.5
4.0.3
4.0.2
- Updated System.Text.Json to 8.0.4 to address CVE-2024-30105.
- Replaced Microsoft.Extensions.Hosting with Microsoft.Extensions.Configuration.Abstractions.
4.0.0
What's Changed
- Version 4.0.0 by @chriswill in #117
Full Changelog: 3.3.2...4.0.0
- Updated to Serilog 4.0.0 and implemented support for Serilog native IBatchedLogEventSink. All usage of AzureBlobStorage is now batched on a default 2 second emit interval. The first log event is written immediately.
- Implemented support for including the log event level (Information, Warning, etc) in the file name template. This is done by including the
Levelproperty in the template. For example,Log-{yyyy}-{MM}-{dd}-{Level}.txtwill create files likeLog-2024-07-17-Information.txt. - Fixed support for deleting old files by implementing Regex matching instead of DateTime parsing in the delete routine.
- Added console app sample to demonstrate the new features.
- This major update may require you to alter your configuration settings where you define usage of this sink.
3.3.2
What's Changed
- Update Azure Identity to 1.11.4 to fix CVE-2024-35255 + Update Azure.Storage.Blobs to 12.20.0 by @SymbioticKilla in #115
Full Changelog: 3.3.1...3.3.2
3.3.1
What's Changed
- Fix for write in batches reaches the limits by @Marien-OV in #110
- Update Azure.Identity to 1.11.2 to fix CVE-2024-29992 by @SymbioticKilla in #112
New Contributors
- @Marien-OV made their first contribution in #110
- @SymbioticKilla made their first contribution in #112
Full Changelog: 3.3.0...3.3.1
Version 3.1.3
Updated Azure.Storage.Blobs to version 12.13.0
Version 3.1.1
- Adopted pull request #86 by @dsbut that added configuration parameter for logging in UTC format.
- Adopted pull request #87 by @chriswill that added configuration support for using a named connection string.
- Implemented IBatchedLogEventSink in AzureBatchingBlobStorageSink to adopt current approach for Serilog Periodic Batching.