From ee8b85a85bc0d382d10a08c47d5577abb476029f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:09:14 +0000 Subject: [PATCH 1/4] Initial plan From d2d209b9f93a06b747011b5ee038202c5de1a8b8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:15:11 +0000 Subject: [PATCH 2/4] Initial planning for DetectorCategories documentation fix Co-authored-by: jcfiorenzano <5582507+jcfiorenzano@users.noreply.github.com> --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 979a7a264..37389a0de 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.411", + "version": "8.0.117", "rollForward": "latestFeature" } } From 098809b9c7465298e1dffac5db62930c5e45c989 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:19:21 +0000 Subject: [PATCH 3/4] Fix DetectorCategories documentation - replace Pip with Python and add missing categories Co-authored-by: jcfiorenzano <5582507+jcfiorenzano@users.noreply.github.com> --- docs/detector-arguments.md | 5 +++-- .../Commands/ScanSettings.cs | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/detector-arguments.md b/docs/detector-arguments.md index 9bbcf4d91..9dc2ab7b1 100644 --- a/docs/detector-arguments.md +++ b/docs/detector-arguments.md @@ -29,8 +29,9 @@ dotnet run --project "src\Microsoft.ComponentDetection\Microsoft.ComponentDetect components that are going to be scanned. The detectors that are going to run are the ones that belongs to the categories.The possible values are: - Npm, NuGet, Maven, RubyGems, Cargo, Pip, GoMod, - CocoaPods, Linux. + Cargo, CocoaPods, Conan, Conda, DotNet, + DockerReference, GoMod, Linux, Maven, Npm, NuGet, + Python, RubyGems, Rust, Spdx, Swift, Vcpkg. --DetectorsFilter A comma separated list with the identifiers of the specific detectors to be used. This is meant to be diff --git a/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs b/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs index d180c236e..021a24d69 100644 --- a/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs +++ b/src/Microsoft.ComponentDetection.Orchestrator/Commands/ScanSettings.cs @@ -46,7 +46,7 @@ public class ScanSettings : BaseSettings [CommandOption("--DetectorCategories")] [Description( - "A comma separated list with the categories of components that are going to be scanned. The detectors that are going to run are the ones that belongs to the categories. The possible values are: Npm, NuGet, Maven, RubyGems, Cargo, Pip, GoMod, CocoaPods, Linux.")] + "A comma separated list with the categories of components that are going to be scanned. The detectors that are going to run are the ones that belongs to the categories. The possible values are: Cargo, CocoaPods, Conan, Conda, DotNet, DockerReference, GoMod, Linux, Maven, Npm, NuGet, Python, RubyGems, Rust, Spdx, Swift, Vcpkg.")] [TypeConverter(typeof(CommaDelimitedConverter))] public IEnumerable DetectorCategories { get; set; } From 7c8603bc8bec0a1d4cb81525f94757dc21b8c764 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 2 Jul 2025 17:23:04 +0000 Subject: [PATCH 4/4] Revert global.json SDK version change Co-authored-by: jcfiorenzano <5582507+jcfiorenzano@users.noreply.github.com> --- global.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/global.json b/global.json index 37389a0de..979a7a264 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.117", + "version": "8.0.411", "rollForward": "latestFeature" } }