Skip to content

Releases: Aldaviva/PagerDuty

1.1.2

26 Sep 19:31
1.1.2
3935235
Compare
Choose a tag to compare
  • Overrode Equals(object?) and GetHashCode() in immutable data classes Link and Image, which can make it easier to write test assertions.
  • Improved disposal logic of PagerDuty.HttpClient — it now correctly handles the case where you set it to its own built-in value again
    pagerDuty.HttpClient = pagerDuty.HttpClient

1.1.1

03 Jul 02:35
1.1.1
ca91f23
Compare
Choose a tag to compare
  • Lazily create built-in HttpClient so that supplying a custom HttpClient does not unnecessarily create and dispose a built-in HttpClient.

1.1.0

13 Nov 05:35
1.1.0
26e4998
Compare
Choose a tag to compare
  • #2: EU organizations not supported
    • Added IPagerDuty.BaseUrl property so you can optionally change the PagerDuty base URL.
    • For example, to switch from the default global cluster to the EU cluster for tenants in the European Union region, run
      pagerDuty.BaseUrl = new Uri("https://events.eu.pagerduty.com/v2/");

1.0.0

12 Nov 06:19
1.0.0
0b9ee61
Compare
Choose a tag to compare
  • Moved types for requests, responses, and exceptions into sub-namespaces to keep the top-level namespace cleaner and less confusing, especially for users relying on IntelliSense to get started with this library.
  • Only dispose the built-in HttpClient instance, not ones that the user constructed and passed in themselves.
  • Add .NET Framework 4.5.2 target, in addition to .NET Standard 2.0

0.0.1

14 Aug 09:12
8eddcea
Compare
Choose a tag to compare
Documented semantics of TriggerAlert.Client and ClientUrl, including …