Exceptionless.Net Versions Save

Exceptionless clients for the .NET platform

v6.0.4

1 month ago

What's Changed

Upgrading to 6

If upgrading from a previous version, the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v6.0.3

7 months ago

Version 6.0.3 is a maintenance release that added additional internal logging to try and help detect any issues with error stack trace parsing in various environments.

Upgrading to 6

If upgrading from a previous version, the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v6.0.2

11 months ago

Version 6.0.2 is a maintenance release that resolves an issue where events may not be sent during application shutdown. We also improved the client diagnostic logs for easier troubleshooting.

New Features

Bug Fixes

Upgrading to 6

If upgrading from a previous version, the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v6.0.1

1 year ago

Version 6.0.1 is a maintenance release that resolves an issue where events may not be sent during application shutdown. We also improved the client diagnostic logs for easier troubleshooting.

Bug Fixes

Upgrading to 6

If upgrading from a previous version, the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v6.0.0

1 year ago

Version 6.0 includes many new enhancements and bug fixes! We spent time to clear out the entire backlog and resolved all feature requests and issues logged! We did introduce some breaking changes around serialization as we wanted to ensure any custom data sent to us is never serialized with a different casing. We tried our best to make sure to keep the breaking changes very minimal. As a result, these breaking changes should only affect very few consumers. Please see the upgrade guide for more information.

New Features

Bug Fixes

Breaking changes

  • Preserving custom object property names sent to SetProperty and AddObject by @niemyjski in https://github.com/exceptionless/Exceptionless.Net/pull/304 We updated the serializer to respect all custom serialized data and fixed a few other serialization related issues.
  • Upgraded NLog from v4 to v5

New Contributors

Upgrading to 6.0.0

If upgrading from a previous version, the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v5.0.0

1 year ago

Version 5.0 includes support for Blazor! In order to support Blazor we introduced a few breaking changes to make some synchronous code asynchronous. We tried our best to make sure to keep the breaking changes very minimal. As a result, these breaking changes should only affect very few consumers. Please see the upgrade guide for more information.

New Features

  • Added support for Blazor support and Blazor sample application (#288)

Breaking changes

  • Internalized all Demystifier classes (@mlaboss-rsb #282).
  • Exceptionless Package
    • ExceptionlessClient
      • renamed UpdateUserEmailAndDescription to UpdateUserEmailAndDescriptionAsync and made it async.
      • removed ProcessQueue, replace this call with the async version ProcessQueueAsync.
      • removed ProcessQueueDeferred, we recommend calling ProcessQueueAsync in IAsyncDisposable pattern. See the upgrade docs for more information.
      • renamed Shutdown extension method to ShutdownAsync and made it async.
      • renamed SubmitSessionEnd extension method to SubmitSessionEndAsync and made it async.
      • renamed SubmitSessionHeartbeat extension method to SubmitSessionHeartbeatAsync and made it async.
    • SettingsManager
      • renamed CheckVersion to CheckVersionAsync and made it async.
      • renamed UpdateSettings to UpdateSettingsAsync and made it async.
    • DefaultEventQueue
      • removed Process, replace this call with the async version ProcessAsync.
    • ProcessQueueScope
      • removed this class, we recommend calling await client.ProcessQueueAsync in IAsyncDisposable pattern. See the upgrade docs for more information.
    • ISubmissionClient
      • removed PostEvents, replace this call with the async version PostEventsAsync.
      • removed PostUserDescription, replace this call with the async version PostUserDescriptionAsync.
      • removed GetSettings, replace this call with the async version GetSettingsAsync.
      • removed SendHeartbeat, replace this call with the async version SendHeartbeatAsync.
  • Exceptionless.WebApi Package
    • ExceptionlessClient extension methods
      • renamed UnregisterWebApi to UnregisterWebApiAsync and made it async.
  • Exceptionless.Windows Package
    • ExceptionlessClient extension methods
      • renamed Unregister to UnregisterAsync and made it async.
  • Exceptionless.Wpf Package
    • ExceptionlessClient extension methods
      • renamed Unregister to UnregisterAsync and made it async.

Upgrading to 5.0.0

If upgrading from v2, v3 or v4, the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

New Contributors

v4.8.0

1 year ago

Version 4.8.0 is a maintenance release that added support for .NET 6 (and removed support for .NET 5) and bug fixes. There are also some breaking changes in regard to targeting newer runtimes.

What's Changed

New Contributors

Full Changelog: https://github.com/exceptionless/Exceptionless.Net/compare/v4.7.0...v4.8.0

v4.7.0

2 years ago

Version 4.7.0 is a maintenance release that focused on some performance and bug fixes. There are also some breaking changes in regard to targeting newer runtimes.

What's Changed

Breaking

We also bumped the minimum runtime of some packages as those runtimes are deprecated.

New Contributors

Upgrading to 4.7.0

If upgrading from v2 or v3 the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v4.6.2

3 years ago

Version 4.6.2 is a feature release that added improved support for running in Serverless environments (e.,g Azure Functions and AWS Lambda) (#243). We also added a Serverless Sample project.

Feature

  • Added support for running in Serverless environments (e.g., Azure Functions and AWS Lambda) (#243). We added a new client configuration property called ProcessQueueOnCompletedRequest to control if queue is automatically processed when a request is completed. This is currently used by the ASP.NET Core NuGet Package and is set by default based on environment variables of the Serverless runtimes.
  • Added new disposable pattern for ensuring events are submitted, this is useful in critical code sections where you want to ensure events are submitted before the function returns.
    // will automatically trigger a client.ProcessQueue call when this method completes even if there is an unhandled exception
    using var _ = client.ProcessQueueDeferred();
    client.SubmitFeatureUsage("Serverless Function");
    

Upgrading to 4.6.2

If upgrading from v2 or v3 the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!

v4.6.1

3 years ago

Version 4.6.1 is a maintenance release that updated the default NuGet package tags for better discovery.

Upgrading to 4.6.1

If upgrading from v2 or v3 the upgrade process should include just updating your NuGet packages. Please see the upgrade guide for more information.

Please take a look at the change log for a full list of the changes.

Feedback

We're listening and we'd love to hear your feedback! Please send us your feedback by clicking on one of the links below!