Skip to content

Releases: MindscapeHQ/serilog-sinks-raygun

v5.3.3

15 Jun 02:14
9349716
Compare
Choose a tag to compare

What's Changed

  • This release updates the version of the Mindscape.Raygun4Net dependency to the latest version 6.0.3
  • This release also updates the Package icon to be in this repo/package (as per nuget recommendations)

Full Changelog: v5.3.1...v5.3.3

Release v5.3.1

18 May 02:46
4023549
Compare
Choose a tag to compare

This release brings slight changes to the install and usage instructions inside of the readme

What's Changed

New Contributors

Full Changelog: v5.3.0...v5.3.1

Release v5.3.0

27 Apr 21:39
e9056bb
Compare
Choose a tag to compare

This release contains updates to the READ.ME to align with our public documentation within out site (raygun.com/documentation)

Release v5.2.0

29 Mar 22:40
8b738f7
Compare
Choose a tag to compare

This release exposes a new OnBeforeSend Action that is executed right before a message is submitted to Raygun. The Action can be passed via the Raygun extension method or alternatively by the constructor. Relevant unit tests were added and an example console app was also developed. All tests pass

v5.1.1

03 Mar 02:30
598824c
Compare
Choose a tag to compare
Merge pull request #47 from serilog/dev

5.1.1 Release

v5.1.0

04 Feb 03:51
477c4ed
Compare
Choose a tag to compare

Changelog

Feature

  • Added an enricher that can be used with a NetStandard2.0 application to add support for capturing the current HttpContext Request and Response and appending them to crash reports logged to Raygun. See the readme for instructions to set up this enricher. Thanks to j5alive for implementing this.

v5.0.2

21 Jun 23:32
423c279
Compare
Choose a tag to compare

Changelog

Bug fix

  • When logging a null exception, the stack trace included in the Crash Report sent to Raygun will now correctly be the code execution stack up to the point where the log statement was made. This is functionality that was added in the previous version, but was erroneously using the code execution stack of a background thread.

v5.0.1

26 Oct 22:27
ef44627
Compare
Choose a tag to compare

Note: due to a build issue, 5.0.0 was released from the dev branch and has no corresponding release notes; the release contents are identical with 5.0.1, described below.

Changelog

Breaking changes

  • Raygun payloads now include the Client section that tells the Raygun backend where the crash reports are coming from. Among other things, this allow Raygun to select an appropriate grouping algorithm that can also be selected by Raygun users. As a result of this change, crash reports will start being grouped differently to how they were grouped from previous versions of this Sink which is why this is considered a breaking change.
  • Raygun payloads now include the HTTP Request section which includes the URL, HTTP method, query string parameters, cookies, server variables, form fields, headers etc. This is considered a breaking change because some applications may have sensitive values in some of these sets. If you are concerned about some of these including sensitive values, then check the readme for various options that allow you to filter or prevent sending them. The Request section is included when an HTTP context is present while logging an Exception.

Features

  • A new option called userInfoProperty can be used to specify a key in the properties dictionary that provides a RaygunIdentifierMessage. This gets attached to the User section of the crash report payloads sent to Raygun to provide richer user information than the existing UserName option. This supports RaygunIdentifierMessage objects being either destructured or not. If this option is provided, then the UserName option is ignored.
  • Raygun payloads now include the Environment section that states the CPU architecture, used/available memory, locale, timezone offset etc of the machine where the crash report was sent from.
  • Raygun payloads now include the HTTP Response section which provides the response code and status description. This is provided when an HTTP context is present when logging an Exception.
  • Logging null exceptions will now set the Error.Message to be rendered with property values, while Error.ClassName continues to be the log template. Thanks intermediateza for suggesting this change.
  • Logging null exceptions will now include the current execution stack trace on the crash report where the Exception stack trace would normally be.
  • The application version included on crash reports sent to Raygun will now automatically be read from the entry assembly of the application where possible. This is overwritten by the applicationVersionProperty feature if used.
  • The applicationKey parameter can now be null or whitespace rather than throwing an exception. Thanks phillip-haydon for suggesting this change.
  • The same Exception instance can no longer be sent to Raygun twice. This is a feature provided by Raygun4Net which is designed to protect your Raygun monthly usage costs in the case that duplicate exception logging has accidentally been wired up.
  • Up to 64 crash reports can now be saved to isolated storage if available in the case that they fail to be sent to Raygun. These are then attempted to be resent later.
  • Properties in the properties dictionary that provide values for various parts of the crash report payload are now removed from the UserCustomData section. For example, you can provide a list of Tags as a value in the properties dictionary. These tags get attached to the appropriate Tags section of the crash report payload. Previously these tags would double up by also appearing in the UserCustomData section, but now they will only be displayed in the Tags section.

Bug fixes

  • Exceptions logged with log-level Fatal are now sent synchronously, while log-level Error continues to send crash reports asynchronously. Log-level Fatal should be used for unhandled exceptions that result in the application being terminated. Previously, sending crash reports asynchronously while the application is being terminated would prevent the HTTP request being completed and so they weren't showing up in Raygun. Thanks benjaminsampica for identifying and fixing this.
  • The wrapperExceptions option is now wired up to actually strip out specified wrapper exception such as TargetInvocationException which would result in only the inner exception(s) being logged.

v4.0.0

18 Feb 22:50
4cb1b93
Compare
Choose a tag to compare

v3.0.0

06 Dec 20:43
e628aa7
Compare
Choose a tag to compare
Merge pull request #12 from Authenticom/master

.NET standard 2 support