Skip to content

chore(deps): bump the security group across 2 directories with 1 update - #12947

Merged
radius-dependabot-manager[bot] merged 2 commits into
mainfrom
dependabot/npm_and_yarn/typespec/security-f670f3da82
Sep 11, 2026
Merged

chore(deps): bump the security group across 2 directories with 1 update#12947
radius-dependabot-manager[bot] merged 2 commits into
mainfrom
dependabot/npm_and_yarn/typespec/security-f670f3da82

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor

Bumps the security group with 1 update in the /typespec directory: @typespec/compiler.
Bumps the security group with 1 update in the /hack/bicep-types-radius/src/typespec-bicep-types directory: @typespec/compiler.

Updates @typespec/compiler from 1.15.0 to 1.16.0

Release notes

Sourced from @​typespec/compiler's releases.

typespec-stable@1.16.0

@​typespec/compiler

Features

  • #11777 Add sanitizePathSegment helper to make a value coming from a TypeSpec spec safe to use as a single path segment. Path separators, drive letter separators and values only made of . are replaced with _.

    sanitizePathSegment("2021-10-01-preview"); // "2021-10-01-preview"
    sanitizePathSegment("../../etc/passwd"); // ".._.._etc_passwd"
  • #11851 Add support for defining a linter ruleset in a standalone yaml file and referencing it with the file: prefix in linter.extends. This lets a repository share and version a set of linter rules without depending on a library release.

    # tspconfig.yaml
    linter:
      extends:
        - "file:../common-rules.yaml"
    # common-rules.yaml
    extends:
      - "@typespec/best-practices/recommended"
    enable:
      "@typespec/best-practices/new-rule": true
    disable:
      "@typespec/best-practices/foo": "This rule is too strict for this repository"
  • #11489 Add a new experimental $provideTypeInfo library provider and program.getTypeInfo(type) API allowing libraries to contribute extra, domain-specific information about types. Unlike the $onValidate lifecycle hook, a provider never runs during compilation and must not mutate the type graph — it is invoked lazily and on demand (e.g. by the language server for hover documentation, or by tooling querying the type).

    Providers are gated by the type-info-provider compiler feature, scoped to the package that declares it: a library opts in via its own tspconfig.yaml and consumers do not need to enable anything.

    // A library exports a provider (use `defineTypeInfoProvider` for typing):
    export const $provideTypeInfo = defineTypeInfoProvider(({ program, target }) => {
      if (target.kind !== "Operation") return undefined;
      return { content: "extra info about this operation" };
    });
    // Tooling / language server queries it (merges every library's contribution):
    const info = program.getTypeInfo(type);

  • #11771 Add experimental support for an extends clause on union statements to constrain every variant to a common data type.

    Enable the union-extends compiler feature in tspconfig.yaml to use the clause.

    model PetBase {

... (truncated)

Commits

Updates @typespec/compiler from 1.15.0 to 1.16.0

Release notes

Sourced from @​typespec/compiler's releases.

typespec-stable@1.16.0

@​typespec/compiler

Features

  • #11777 Add sanitizePathSegment helper to make a value coming from a TypeSpec spec safe to use as a single path segment. Path separators, drive letter separators and values only made of . are replaced with _.

    sanitizePathSegment("2021-10-01-preview"); // "2021-10-01-preview"
    sanitizePathSegment("../../etc/passwd"); // ".._.._etc_passwd"
  • #11851 Add support for defining a linter ruleset in a standalone yaml file and referencing it with the file: prefix in linter.extends. This lets a repository share and version a set of linter rules without depending on a library release.

    # tspconfig.yaml
    linter:
      extends:
        - "file:../common-rules.yaml"
    # common-rules.yaml
    extends:
      - "@typespec/best-practices/recommended"
    enable:
      "@typespec/best-practices/new-rule": true
    disable:
      "@typespec/best-practices/foo": "This rule is too strict for this repository"
  • #11489 Add a new experimental $provideTypeInfo library provider and program.getTypeInfo(type) API allowing libraries to contribute extra, domain-specific information about types. Unlike the $onValidate lifecycle hook, a provider never runs during compilation and must not mutate the type graph — it is invoked lazily and on demand (e.g. by the language server for hover documentation, or by tooling querying the type).

    Providers are gated by the type-info-provider compiler feature, scoped to the package that declares it: a library opts in via its own tspconfig.yaml and consumers do not need to enable anything.

    // A library exports a provider (use `defineTypeInfoProvider` for typing):
    export const $provideTypeInfo = defineTypeInfoProvider(({ program, target }) => {
      if (target.kind !== "Operation") return undefined;
      return { content: "extra info about this operation" };
    });
    // Tooling / language server queries it (merges every library's contribution):
    const info = program.getTypeInfo(type);

  • #11771 Add experimental support for an extends clause on union statements to constrain every variant to a common data type.

    Enable the union-extends compiler feature in tspconfig.yaml to use the clause.

    model PetBase {

... (truncated)

Commits

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 commands and options

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the security group with 1 update in the /typespec directory: [@typespec/compiler](https://github.com/microsoft/typespec).
Bumps the security group with 1 update in the /hack/bicep-types-radius/src/typespec-bicep-types directory: [@typespec/compiler](https://github.com/microsoft/typespec).


Updates `@typespec/compiler` from 1.15.0 to 1.16.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/typespec-stable@1.15.0...typespec-stable@1.16.0)

Updates `@typespec/compiler` from 1.15.0 to 1.16.0
- [Release notes](https://github.com/microsoft/typespec/releases)
- [Commits](https://github.com/microsoft/typespec/compare/typespec-stable@1.15.0...typespec-stable@1.16.0)

---
updated-dependencies:
- dependency-name: "@typespec/compiler"
  dependency-version: 1.16.0
  dependency-type: direct:production
  dependency-group: security
- dependency-name: "@typespec/compiler"
  dependency-version: 1.16.0
  dependency-type: direct:development
  dependency-group: security
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Sep 9, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: deps/npm. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 9, 2026
@dependabot
dependabot Bot requested review from a team as code owners September 9, 2026 20:44
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 9, 2026
@github-actions

github-actions Bot commented Sep 9, 2026

Copy link
Copy Markdown

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

OpenSSF Scorecard

Scorecard details
PackageVersionScoreDetails
npm/@inquirer/ansi 2.0.8 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/checkbox 5.2.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/confirm 6.3.2 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/core 12.0.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/editor 5.3.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/expand 5.1.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/external-editor 3.0.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/figures 2.0.9 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/input 5.1.6 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/number 4.2.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/password 5.2.2 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/prompts 8.7.2 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/rawlist 5.3.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/search 4.3.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/select 5.2.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/type 4.1.1 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@typespec/compiler 1.16.0 UnknownUnknown
npm/temporal-polyfill 1.0.4 UnknownUnknown
npm/temporal-utils 1.0.2 UnknownUnknown
npm/vscode-languageserver-textdocument 1.0.14 🟢 8.7
Details
CheckScoreReason
Maintained🟢 1030 commit(s) out of 30 and 26 issue activity out of 30 found in the last 90 days -- score normalized to 10
Code-Review🟢 10all last 30 commits are reviewed through GitHub
CII-Best-Practices⚠️ 0no badge detected
Vulnerabilities🟢 10no vulnerabilities detected
Signed-Releases⚠️ -1no releases found
Branch-Protection🟢 6branch protection is not maximal on development and all release branches
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10tokens are read-only in GitHub workflows
Packaging⚠️ -1no published package detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
License🟢 10license file detected
Pinned-Dependencies🟢 10all dependencies are pinned
Binary-Artifacts🟢 10no binaries found in the repo
Dependency-Update-Tool🟢 10update tool detected
Fuzzing⚠️ 0project is not fuzzed
npm/@azure-tools/typespec-azure-rulesets 0.71.0 UnknownUnknown
npm/@inquirer/ansi 2.0.8 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/checkbox 5.2.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/confirm 6.3.2 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/core 12.0.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/editor 5.3.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/expand 5.1.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/external-editor 3.0.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/figures 2.0.9 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/input 5.1.6 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/number 4.2.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/password 5.2.2 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/prompts 8.7.2 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/rawlist 5.3.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/search 4.3.3 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/select 5.2.5 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@inquirer/type 4.1.1 🟢 6.1
Details
CheckScoreReason
Code-Review⚠️ 2Found 4/16 approved changesets -- score normalized to 2
Maintained🟢 1030 commit(s) and 5 issue activity found in the last 90 days -- score normalized to 10
Security-Policy🟢 10security policy file detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
Packaging⚠️ -1packaging workflow not detected
Binary-Artifacts🟢 10no binaries found in the repo
Token-Permissions⚠️ 0detected GitHub workflow tokens with excessive permissions
Pinned-Dependencies🟢 7dependency not pinned by hash detected -- score normalized to 7
CII-Best-Practices⚠️ 0no effort to earn an OpenSSF best practices badge detected
Fuzzing⚠️ 0project is not fuzzed
License🟢 10license file detected
Signed-Releases⚠️ -1no releases found
Branch-Protection⚠️ 3branch protection is not maximal on development and all release branches
SAST🟢 9SAST tool detected but not run on all commits
npm/@typespec/compiler 1.16.0 UnknownUnknown
npm/temporal-polyfill 1.0.4 UnknownUnknown
npm/temporal-utils 1.0.2 UnknownUnknown
npm/vscode-languageserver-textdocument 1.0.14 🟢 8.7
Details
CheckScoreReason
Maintained🟢 1030 commit(s) out of 30 and 26 issue activity out of 30 found in the last 90 days -- score normalized to 10
Code-Review🟢 10all last 30 commits are reviewed through GitHub
CII-Best-Practices⚠️ 0no badge detected
Vulnerabilities🟢 10no vulnerabilities detected
Signed-Releases⚠️ -1no releases found
Branch-Protection🟢 6branch protection is not maximal on development and all release branches
Security-Policy🟢 10security policy file detected
Token-Permissions🟢 10tokens are read-only in GitHub workflows
Packaging⚠️ -1no published package detected
Dangerous-Workflow🟢 10no dangerous workflow patterns detected
License🟢 10license file detected
Pinned-Dependencies🟢 10all dependencies are pinned
Binary-Artifacts🟢 10no binaries found in the repo
Dependency-Update-Tool🟢 10update tool detected
Fuzzing⚠️ 0project is not fuzzed

Scanned Files

  • hack/bicep-types-radius/src/typespec-bicep-types/pnpm-lock.yaml
  • typespec/pnpm-lock.yaml

@github-actions

github-actions Bot commented Sep 9, 2026

Copy link
Copy Markdown

Unit Tests

    2 files  ± 0    459 suites   - 2   9m 5s ⏱️ + 1m 29s
6 583 tests +52  6 581 ✅ +52  2 💤 ±0  0 ❌ ±0 
7 884 runs  +77  7 882 ✅ +77  2 💤 ±0  0 ❌ ±0 

Results for commit 73f1a3f. ± Comparison against base commit fffca1e.

This pull request removes 66 and adds 118 tests. Note that renamed tests count towards both.
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_OrphanBranchPersistence
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_RealGitStore_SlashBranch
github.com/radius-project/radius/pkg/cli/cmd/env/show/preview ‑ Test_Run
github.com/radius-project/radius/pkg/cli/cmd/env/show/preview ‑ Test_Run/environment_with_recipe_packs
github.com/radius-project/radius/pkg/cli/cmd/env/show/preview ‑ Test_Run_RecipeSortOrder
github.com/radius-project/radius/pkg/graph/persistence/git ‑ TestConstructPathForKey_AcceptsValidKey
github.com/radius-project/radius/pkg/graph/persistence/git ‑ TestConstructPathForKey_RejectsEmptyNamespaceOrName
github.com/radius-project/radius/pkg/graph/persistence/git ‑ TestConstructPathForKey_RejectsEmptyNamespaceOrName/empty_name
github.com/radius-project/radius/pkg/graph/persistence/git ‑ TestConstructPathForKey_RejectsEmptyNamespaceOrName/empty_namespace
github.com/radius-project/radius/pkg/graph/persistence/git ‑ TestConstructPathForKey_RejectsTraversalAndSeparators
…
github.com/radius-project/radius/cmd/rad/cmd ‑ Test_VersionWithoutArchiveConfiguration
github.com/radius-project/radius/cmd/rad/cmd ‑ Test_VersionWithoutArchiveConfiguration/backend=
github.com/radius-project/radius/cmd/rad/cmd ‑ Test_VersionWithoutArchiveConfiguration/backend=git
github.com/radius-project/radius/cmd/rad/cmd ‑ Test_VersionWithoutArchiveConfiguration/backend=oci
github.com/radius-project/radius/cmd/rad/cmd ‑ Test_VersionWithoutArchiveConfiguration/backend=unknown
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_ArchiveConfigurationError
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_ArchiveConfigurationError/backend=
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_ArchiveConfigurationError/backend=git
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_ArchiveConfigurationError/backend=oci
github.com/radius-project/radius/pkg/cli/cmd/app/graph ‑ TestRunner_RunModeled_ArchiveConfigurationError/backend=unknown
…

♻️ This comment has been updated with latest results.

Signed-off-by: GitHub <noreply@github.com>

Co-authored-by: nithyatsu <98416062+nithyatsu@users.noreply.github.com>
@radius-functional-tests

radius-functional-tests Bot commented Sep 11, 2026

Copy link
Copy Markdown

Radius functional test overview

🔍 Go to test action run

Click here to see the test run details
Name Value
Repository radius-project/radius
Commit ref 73f1a3f
Unique ID func42b7524e92
Image tag pr-func42b7524e92
  • Dapr: 1.14.4
  • Azure KeyVault CSI driver: 1.4.2
  • Azure Workload identity webhook: 1.3.0
  • Bicep recipe location ghcr.io/radius-project/dev/test/testrecipes/test-bicep-recipes/<name>:pr-func42b7524e92
  • Terraform recipe location http://tf-module-server.radius-test-tf-module-server.svc.cluster.local/<name>.zip (in cluster)
  • applications-rp test image location: ghcr.io/radius-project/dev/applications-rp:pr-func42b7524e92
  • dynamic-rp test image location: ghcr.io/radius-project/dev/dynamic-rp:pr-func42b7524e92
  • controller test image location: ghcr.io/radius-project/dev/controller:pr-func42b7524e92
  • ucp test image location: ghcr.io/radius-project/dev/ucpd:pr-func42b7524e92
  • deployment-engine test image location: ghcr.io/radius-project/deployment-engine:latest

Test Status

⌛ Building Radius and pushing container images for functional tests...
✅ Container images build succeeded
⌛ Publishing Bicep Recipes for functional tests...
✅ Recipe publishing succeeded
⌛ Starting corerp-cloud functional tests...
⌛ Starting ucp-cloud functional tests...
✅ ucp-cloud functional tests succeeded
✅ corerp-cloud functional tests succeeded

@codecov

codecov Bot commented Sep 11, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 59.79%. Comparing base (fffca1e) to head (73f1a3f).
⚠️ Report is 8 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main   #12947      +/-   ##
==========================================
- Coverage   59.82%   59.79%   -0.03%     
==========================================
  Files         779      777       -2     
  Lines       46058    45906     -152     
==========================================
- Hits        27552    27451     -101     
+ Misses      18506    18455      -51     

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@radius-dependabot-manager
radius-dependabot-manager Bot added this pull request to the merge queue Sep 11, 2026
Merged via the queue into main with commit eab2151 Sep 11, 2026
78 checks passed
@radius-dependabot-manager
radius-dependabot-manager Bot deleted the dependabot/npm_and_yarn/typespec/security-f670f3da82 branch September 11, 2026 19:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants