Skip to content

Commit

Permalink
release: 0.9.2 (#76)
Browse files Browse the repository at this point in the history
### Description

This release resolves an issue reported in backstage-plugin (#74) which
prevents users from overriding the REST API base url (e.g. for EU based
accounts). This feature was possible through the Backstage proxy
configuration.

With this, users will be able to add a new configuration to the
PagerDuty plugin in `app-config.yaml` like the example below.

```yaml
pagerDuty:
  apiBaseUrl: https://api.eu.pagerduty.com     #defaults to https://api.pagerduty.com
```

This feature in mainly implemented in
`@pagerduty/backstage-plugin-backend` but this release updates the
plugin config schema accordingly.

## Acknowledgement

By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice.

**Disclaimer:** We value your time and bandwidth. As such, any pull
requests created on non-triaged issues might not be successful.
  • Loading branch information
t1agob authored Feb 22, 2024
2 parents 4a4b58b + b1e3292 commit 2c15cb7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ export interface Config {
* @visibility frontend
*/
eventsBaseUrl?: string;
/**
* Optional API Base URL to override the default.
* @visibility frontend
*/
apiBaseUrl?: string;
/**
* Optional PagerDuty API Token used in API calls from the backend component.
* @visibility frontend
Expand Down

0 comments on commit 2c15cb7

Please sign in to comment.