Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump follow-redirects from 1.15.4 to 1.15.6 #81

Merged
merged 7 commits into from
Mar 22, 2024

Commits on Feb 12, 2024

  1. release: 0.9.0 (#71)

    ### Description
    
    This release adds the type necessary for OAuth support in Backstage
    plugin configuration. Users can now configure the following OAuth
    parameters in Backstage `app-config.yaml` file.
    
    ```yaml
    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'.
    ```
    
    It also introduces more friendly error messages when permissions for
    certain APIs or operations are not present. This was implemented not to
    break the PagerDuty Card experience.
    
    ## 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.
    t1agob authored Feb 12, 2024
    Configuration menu
    Copy the full SHA
    dbca3a5 View commit details
    Browse the repository at this point in the history

Commits on Feb 21, 2024

  1. chore(deps): bump ip from 2.0.0 to 2.0.1

    Bumps [ip](https://github.com/indutny/node-ip) from 2.0.0 to 2.0.1.
    - [Commits](indutny/node-ip@v2.0.0...v2.0.1)
    
    ---
    updated-dependencies:
    - dependency-name: ip
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    6f3bbf1 View commit details
    Browse the repository at this point in the history
  2. chore(deps): bump ip from 2.0.0 to 2.0.1 (#73)

    Bumps [ip](https://github.com/indutny/node-ip) from 2.0.0 to 2.0.1.
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/indutny/node-ip/commit/3b0994a74eca51df01f08c40d6a65ba0e1845d04"><code>3b0994a</code></a>
    2.0.1</li>
    <li><a
    href="https://github.com/indutny/node-ip/commit/32f468f1245574785ec080705737a579be1223aa"><code>32f468f</code></a>
    lib: fixed CVE-2023-42282 and added unit test</li>
    <li>See full diff in <a
    href="https://github.com/indutny/node-ip/compare/v2.0.0...v2.0.1">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ip&package-manager=npm_and_yarn&previous-version=2.0.0&new-version=2.0.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the
    [Security Alerts
    page](https://github.com/PagerDuty/backstage-plugin/network/alerts).
    
    </details>
    t1agob authored Feb 21, 2024
    Configuration menu
    Copy the full SHA
    4a4b58b View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. release: 0.9.2 (#76)

    ### 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.
    t1agob authored Feb 22, 2024
    Configuration menu
    Copy the full SHA
    2c15cb7 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2024

  1. release: 0.9.3 (#79)

    ### Description
    
    This release removes the `pagerDuty.apiToken` and `pagerDuty.oauth`
    configuration definitions from this repository as they should be treated
    as secret config and this frontend plugin does not need to know about
    them.
    
    These configurations will now be exclusive to the backend plugin.
    
    ## 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.
    t1agob authored Mar 1, 2024
    Configuration menu
    Copy the full SHA
    f370eae View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2024

  1. chore(deps): bump follow-redirects from 1.15.4 to 1.15.6

    Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.4 to 1.15.6.
    - [Release notes](https://github.com/follow-redirects/follow-redirects/releases)
    - [Commits](follow-redirects/follow-redirects@v1.15.4...v1.15.6)
    
    ---
    updated-dependencies:
    - dependency-name: follow-redirects
      dependency-type: indirect
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Mar 16, 2024
    Configuration menu
    Copy the full SHA
    8db6e67 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. Configuration menu
    Copy the full SHA
    446e14a View commit details
    Browse the repository at this point in the history