Releases: cheesegrits/pagerduty
Stable Release
Incorporating a PR that brings the project inline with PHP 8. This is the first release that targets PHP 8.0+ as the minimum baseline requirement. There are no breaking-changes otherwise.
Note that we do not intend to support prior PHP versions going forward. Please open a ticket if necessary.
Thank you @cheesegrits for this important contribution.
What's Changed
- Update README.md to scout for a new maintainer by @adilbaig in #12
- Updating to PHP 8 by @cheesegrits in #13
New Contributors
- @cheesegrits made their first contribution in #13
Full Changelog: 3.2.0...4.0.0
Stable Release
This release fixes the images and links specifications to comply with PagerDuty API V2 Event Structure. In V1, a 'contexts' object was used to add links and images. This was replaced in v2, with top-level properties for both. Since this is compliant with V2, I'm not incrementing to a major version.
BREAKING CHANGE: Note that if you were using the ImageContext or LinkContext class prior to this release, those are no longer available. Use the addLink() and addImage() methods of the TriggerEvent class directly. For example:
# Old Code
$image = new ImageContext("https://www.pagerduty.com/wp-content/uploads/2016/05/pagerduty-logo-green.png", "https://example.com/", "Example text");
$event->addContext($image);# New code
$event->addImage("https://www.pagerduty.com/wp-content/uploads/2016/05/pagerduty-logo-green.png", "https://example.com/", "Example text");Refer to the README for examples of both methods. Thanks to @mattdudys for contributing to this release.
Stable Release
Incorporating a PR that allows calling PagerDuty through a proxy. Useful for working with corporate firewalls.
Thanks @jmgibson1976
Stable Release
This release defaults to the PagerDuty EventsAPI V2 . PagerDuty is going to decommission the V1 API on October 19th 2018.
This API is slightly incompatible with the previous version, due to changes in the REST service. Updating the TriggerEvent ctor should do it for most use cases.
Stable Release
- Minor Documentation Improvements
- setDetails and setDescription moved to TriggerEvent
- Updated test to PHPUnit
Stable Release
This is a complete rewrite of the API, and is thus backwards incompatible with v1.
It was designed to solve problems with the old API design, and to better integrate with the current Events API.