Skip to content

Commit

Permalink
chore: remove unused Kusto command and dep
Browse files Browse the repository at this point in the history
  • Loading branch information
rwoll committed Jul 13, 2024
1 parent cdc9e15 commit 3f70928
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 390 deletions.
2 changes: 2 additions & 0 deletions ReleaseHistory.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# SARIF Package Release History (SDK, Driver, Converters, and Multitool)

## UNRELEASED
* BRK: Remove defunct and unsupported `kusto` command in `Sarif.Multitool`.
* DEP: Remove dependency on `Microsoft.Azure.Kusto.Data`.
* DEP: Update `Azure.Identity` reference from 1.10.2 to 1.11.0 in `WorkItems` and `Sarif.Multitool.Library` to resolve [CVE-2024-29992](https://github.com/advisories/GHSA-wvxc-855f-jvrv).
* BUG: Resolve process hangs when a file path is provided with a wildcard, but without a `-r` (recurse) flag during the multi-threaded analysis file enumeration phase.
* BUG: Fix error `ERR997.NoValidAnalysisTargets` when scanning symbolic link files.
Expand Down
328 changes: 0 additions & 328 deletions src/Sarif.Multitool.Library/KustoCommand.cs

This file was deleted.

55 changes: 0 additions & 55 deletions src/Sarif.Multitool.Library/KustoOptions.cs

This file was deleted.

1 change: 0 additions & 1 deletion src/Sarif.Multitool.Library/Sarif.Multitool.Library.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.0" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="10.0.3" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="2.1.7" />
<PackageReference Include="Microsoft.Json.Pointer" Version="2.1.0" />
<PackageReference Include="Microsoft.Json.Schema" Version="2.1.0" />
Expand Down
2 changes: 0 additions & 2 deletions src/Sarif.Multitool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ public static int Main(string[] args)
ExportValidationConfigurationOptions,
ExportValidationRulesMetadataOptions,
FileWorkItemsOptions,
KustoOptions,
ResultMatchingOptions,
MergeOptions,
PageOptions,
Expand Down Expand Up @@ -66,7 +65,6 @@ public static int Main(string[] args)
(ExportValidationConfigurationOptions options) => new ExportValidationConfigurationCommand().Run(options),
(ExportValidationRulesMetadataOptions options) => new ExportValidationRulesMetadataCommand().Run(options),
(FileWorkItemsOptions fileWorkItemsOptions) => new FileWorkItemsCommand().Run(fileWorkItemsOptions),
(KustoOptions options) => new KustoCommand().Run(options),
(ResultMatchingOptions baselineOptions) => new ResultMatchingCommand().Run(baselineOptions),
(MergeOptions mergeOptions) => new MergeCommand().Run(mergeOptions),
(PageOptions pageOptions) => new PageCommand().Run(pageOptions),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@

using FluentAssertions;

using Kusto.Cloud.Platform.Utils;

using Microsoft.CodeAnalysis.Sarif.Readers;
using Microsoft.CodeAnalysis.Sarif.VersionOne;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ private T CommandLineTestHelper<T>(IEnumerable<string> args, bool valid)
ExportValidationConfigurationOptions,
ExportValidationRulesMetadataOptions,
FileWorkItemsOptions,
KustoOptions,
ResultMatchingOptions,
MergeOptions,
PageOptions,
Expand Down
1 change: 0 additions & 1 deletion src/WorkItems/WorkItems.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.11.0" />
<PackageReference Include="Microsoft.Azure.Kusto.Data" Version="10.0.3" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="2.1.7" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="3.1.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.2" />
Expand Down

0 comments on commit 3f70928

Please sign in to comment.