Skip to content

0.4.0

Compare
Choose a tag to compare
@github-actions github-actions released this 12 Feb 12:21
· 67 commits to main since this release
f79560e

Summary

Release 0.4.0 introduces a minor change that adds a new option configuration field oauth. This new configuration improves security when calling PagerDuty REST APIs by replacing the current apiToken configuration that assigns full-access privileges to Backstage.

With Scoped OAuth support the PagerDuty admin can grant only the necessary permissions to Backstage instead of access to all APIs and operations.

The new configuration can be defined in app-config.yaml with the following parameters:

pagerDuty:
  oauth:
    clientId: ${PD_CLIENT_ID}
    clientSecret: ${PD_CLIENT_SECRET}
    subDomain: ${PD_ACCOUNT_SUBDOMAIN}
    region: ${PD_ACCOUNT_REGION}           // Optional. allowed values: 'us', 'eu'. Defaults to 'us'.

Changes

  • feat: add OAuth support (#24) by @t1agob
  • build(deps): Bump @backstage/backend-app-api from 0.5.8 to 0.5.10 (#23) by @dependabot
  • docs: updated readme with new features - REST APIs (#22) by @t1agob

This release was made possible by the following contributors:

@dependabot, @dependabot[bot] and @t1agob