Releases: serilog-mssql/serilog-sinks-mssqlserver
Releases · serilog-mssql/serilog-sinks-mssqlserver
v5.7.1
Commits
- baea9ce: Update README.md (GhalamborM) #402
- 0cb0f33: GitHub Actions Build (Christian Kadluba) #402
- 1cc7112: Update main.yml (Christian Kadluba) #402
- 2d04cfa: Update main.yml (Christian Kadluba) #402
- 9e7a1ce: Update main.yml (Christian Kadluba) #402
- f954655: Update main.yml (Christian Kadluba) #402
- 5b502c6: GitHub actions (#387) (Christian Kadluba) #402
- 31c5bea: GitHub actions (#388) (Christian Kadluba) #402
- 609a1db: Update release.yml (Christian Kadluba) #402
- fc36030: Update release.yml (Christian Kadluba) #402
- 6fba8d6: Update release.yml (Christian Kadluba) #402
- 5030d18: Migration of MSSQL sink repo to new org (#389) (Christian Kadluba) #402
- 147237e: Small fixes in workflows (Christian Kadluba) #402
- 5523277: Made SkipTests in Build.ps1 a switch parameter. (Christian Kadluba) #402
- 66e6197: Made SkipTests in Build.ps1 a switch parameter (forgot to adapt call in WF file). (Christian Kadluba) #402
- eacbca6: Core implementation without config handling. (Christian Kadluba) #402
- ec41352: Read new sink option PreventEnlistInTransaction from all supported configuration sources. (Christian Kadluba) #402
- 40ab647: Run tests for all supported target frameworks of the sink (added missing net472). (Christian Kadluba) #402
- d7cbe54: Fixed timing dependent database test failures (EagerlyEmitFirstEvent = true). (Christian Kadluba) #402
- 2b0c9c8: Changes after review from @jonorossi. (Christian Kadluba) #402
- 557049d: Execute test LogsAreNotAffectedByTransactionsByDefault in a separate run from all other tests to avoid side effects with other DB tests. Ugly but the only feasible way to get this stable. (Christian Kadluba) #402
- edc036b: Ensured stability of DB tests. (Christian Kadluba) #402
- 7393fc1: Add trimming to rendered message and message template in case the database fields are smaller than the rendered text (studiopasokon) #402
- 8230a31: Add unit tests related to the trimming functionality (studiopasokon) #402
- 5c0b80f: Extend README.md with explanation about the trimming effect when the field lengths are set to a specific size (studiopasokon) #402
- 4cc02e0: Fix README.md encoding issue (studiopasokon) #402
- a4e6a87: Add missing forward tick so that the markdown is properly interpreted (studiopasokon) #402
- 01b5da0: Switch around maxAllowedMessageLength comparisons for better readability (studiopasokon) #402
- 083ea93: Add extra unit test to check with a custom defined length of -1, or maximum field length (studiopasokon) #402
- e995464: Rename tests truncating the message and message template from 'Trimmed' to 'Truncated' (studiopasokon) #402
- bcb4f6b: Add (slightly) general Truncate extension method (studiopasokon) #402
- c70b1b2: Improve truncating the log message, message template and add truncating the exception message (studiopasokon) #402
- e9c4cb3: Add note about truncating data of the Exception column, fix maximum value settings of the Message and MessageTemplate columns, and rename trimming to truncating (studiopasokon) #402
- 491791f: Update README.md (Endy Tjahjono) #402
- 4a80fd4: Release 5.7.1 (Christian Kadluba) #402
What's Changed
- Release 5.7.1 by @ckadluba in #402
- Exclude logging from DB transactions and added sink option
EnlistInTransaction
(thanks to @ @Daniel-Svensson for the idea and original PR). - Fixed issue #209: Add trimming to rendered message and message template (thanks to @studiopasokon)
- Fixed documentation regarding supported .NET versions (thanks to @GhalamborM).
- Migrated sink to new GitHub and nuget.org organizations.
- Use GitHub Actions for build including automatic release documentation.
Full Changelog: v439...v5.7.1
v5.7.0
What's Changed
- Update README.md by @domagojmedo in #358
- Updated .NET target frameworks by @ckadluba in #361
- Add configurable tenant ID by @mattosaurus in #370
- Updated EOL .NET framework and README correction by @ckadluba in #371
- Fixed target framework dependent test includes by @ckadluba in #372
- Additional tests for Azure managed identity tennant Id. by @ckadluba in #373
- fix(logging): Fixed string formats in Selflog.WriteLine calls. by @sommmen in #382
- Changes for release 5.7.0 by @ckadluba in #383
- Release 5.7.0 by @ckadluba in #384
New Contributors
- @domagojmedo made their first contribution in #358
- @mattosaurus made their first contribution in #370
- @sommmen made their first contribution in #382
Full Changelog: v5.6.1...v439
v5.6.1
- Added support for reserved columns (thanks to @susanneschuster).
- Fixes in README.
v5.6.0
- Fixed issue #191: Added option
EagerlyEmitFirstEvent
by implementing new PeriodicBatchingSink API. - Replaced
SinkOptions
withMSSqlServerSinkOptions
and cleaned up namespaced (thanks to @jonorossi for the contribution). - Target .NET Core 2.1 (LTS) instead of 2.2
- Fixed issue #312: Data conversion issue causes logging to silently fail.
v5.5.1
- Fixed issue #300 Support DateTime2 data type for TimeStamp column (thanks to @stedel for the contribution).
- Added Sourcelink support and publish symbols to nuget.org which allows consumers of the package to debug into the sink code.
- Added troubleshooting tip in README with workaround for SqlClient issue regarding missing Microsoft.Data.SqlClient.Sni.dll in .NET Framework apps and updated
samples\AppConfigDemo
accordingly. - Added information in README about batched sink SqlBulkCopy behavior according to issue #209.
v5.5.0
- Implemented enhancement #208: use Microsoft.Data.SqliClient for all platforms except net452 to enable Column Encryption (thanks to @mungk for the contribution).
- Fixed issue #290 MissingMethodException with .NET Standard 2.0.
- Added .NET Standard 2.0 sample program.
- Minor bug fixes.
- Completed overall refactoring and added unit tests for all refactored code.
v5.4.0
- Added support for Azure Managed Identities for Resources authentication (thanks to @darrenschwarz for the contribution).
- New interface using
SinkOptions
parameter. Marked old interfaces obsolete. - Implemented Enhancement #182: configurable property names for custom columns (thanks to @rocknet for the contribution).
- Lots of refactoring and new unit tests.
v5.3.0
Code quality release.
- Added code analysis and editorconfig rules based on Microsoft standards.
- Fixed code analysis errors where possible and added justified suppressions the few remainig.
- Use Visual Studio 2019 for AppVeyor builds
- Updated some dependencies.
- Added CombinedConfigDemo sample program showing how to combine config and code based sink intitialization.
- Added a lot of unit tests.