bugsnag / bugsnag-api-ruby

BugSnag API toolkit for Ruby
Other
21 stars 15 forks source link

Add stability and release endpoints #34

Closed imjoehaines closed 3 years ago

imjoehaines commented 3 years ago

Goal

Adds endpoints for stability and releases

Stability

# view a project's stability trend
Bugsnag::Api.stability_trend("project-id")

Releases

# list the releases in a project
Bugsnag::Api.releases("project-id")

# view a single release
Bugsnag::Api.release("project-id", "release-id")

# list the releases in a release group
Bugsnag::Api.releases_in_group("release-group-id")