Skip to content

Commit

Permalink
Delete scripts directory (#587)
Browse files Browse the repository at this point in the history
* Delete scripts directory

Remove advisory parser script fix #586

* Update Changelog.md

* Update dependencies

* Fix json formatting in rules
  • Loading branch information
gfs authored Sep 18, 2023
1 parent 3c9f46a commit c8c65ea
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 132 deletions.
10 changes: 10 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.22] - 2023-09-14
### Dependencies
Update dependencies - incorporate a fix for an issue with JSONPath selection used for matching boolean values. https://github.com/microsoft/ApplicationInspector/pull/561

### Rules
Fix a JSON formatting error in the android debuggable rule

### Miscellaneous
Delete advisory parser script. #586

## [1.0.21] - 2023-09-11
### Dependencies
Update action versions for github workflows.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="LibGit2Sharp" Version="0.27.2" />
<PackageReference Include="Microsoft.CST.ApplicationInspector.Logging" Version="1.9.10" />
<PackageReference Include="Microsoft.CST.ApplicationInspector.Logging" Version="1.9.12" />
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" />
<PackageReference Include="Sarif.Sdk" Version="4.3.1" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.CST.ApplicationInspector.RulesEngine" Version="1.9.10" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="OmniSharp.Extensions.LanguageServer" Version="0.19.7" />
<PackageReference Include="Serilog.Extensions.Logging" Version="7.0.0" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion DevSkim-DotNet/Microsoft.DevSkim/Microsoft.DevSkim.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CST.ApplicationInspector.RulesEngine" Version="1.9.10" />
<PackageReference Include="Microsoft.CST.ApplicationInspector.RulesEngine" Version="1.9.13" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions rules/default/security/frameworks/android.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
"patterns": [
{
"xpaths": ["//default:application/@android:debuggable"],
"xpathnamespaces": {
"xpathnamespaces": {
"default": "http://maven.apache.org/POM/4.0.0",
"android": "http://schemas.android.com/apk/res/android"
}
},
"pattern": "true",
"type": "regex",
"scopes": [
Expand Down
2 changes: 1 addition & 1 deletion rules/default/security/xml/external_entities.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
}
],
"must-match": [
"shouldResolveExternalEntities=TRUE",
"shouldResolveExternalEntities=TRUE"
],
"must-not-match": [
]
Expand Down
125 changes: 0 additions & 125 deletions scripts/advisory-parser.py

This file was deleted.

0 comments on commit c8c65ea

Please sign in to comment.