Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Releases: getsentry/raven-csharp

1.4.6

29 Sep 12:23
Compare
Choose a tag to compare
  • Hopefully fixed static HttpContext threading problems (#69).

1.4.4

29 Sep 12:25
Compare
Choose a tag to compare
  • Don't crash when HttpContext exists without a request (#67)
  • Added special handling for ReflectionTypeLoadException (#68)

1.4.3

29 Sep 12:33
Compare
Choose a tag to compare
  • Added posibility to set hook in case of exception thrown during sending a packet (f2df7a6)
  • Added more exception handling around HttpContext.Request, since resovling it might fail (7c98a6a)

1.4.2

29 Sep 12:37
Compare
Choose a tag to compare
  • Made SentryRequest.HttpContext static so it's only initialized once per thread (2976eee)
  • Wrap the retrieval of HTTP context in try/catch since it might fail in circumstances where the HTTP context is available, but not yet bootstrapped (like in ASP.NET Application Start and such) (278f890)
  • Removed SentryModule in place of an IDictionary<string, string> as per @xpicio's suggestion in #55

1.4.1

29 Sep 12:47
Compare
Choose a tag to compare
  • Removed the ReadWriteTimeout property and made the Timeout property a TimeSpan so it's more forward-compatible with System.Net.HttpClient (704cacd)
  • Added Timeout and ReadWriteTimeout properties to IRavenClient. Resolves #54.
  • Added GitVersionTask (bd0bfdd)
  • Added async methods
  • Added support to framework 4.0 and 4.5 (#45)
  • Added support for async methods (#46)