Skip to content

Commit

Permalink
Merge pull request #2 from gattjoe/main
Browse files Browse the repository at this point in the history
1.0.2 fix junit parsing
  • Loading branch information
ttyler01 authored Jul 30, 2021
2 parents c1a6def + e74be52 commit 4a77eaf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
# v1.0.0
- Initial Release

# v1.0.2
- Wrap failure into an array so it is iterable
2 changes: 1 addition & 1 deletion buildAndReleaseTask/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion buildAndReleaseTask/parsesastresults.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def write_output(target: str, results: list) -> None:
if result != {"Results": "No vulnerabilities."}:
test_case = TestCase(result["Title"])
test_case.name = (result["Vulnerable File"] + " - " + result["Issue Type"])
test_case.result = Failure(result)
test_case.result = [Failure(result)]

else:
test_case = TestCase("No vulnerabilities")
Expand Down
4 changes: 2 additions & 2 deletions buildAndReleaseTask/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"category": "Utility",
"author": "Joe Gatt",
"version": {
"Major": 0,
"Major": 1,
"Minor": 0,
"Patch": 1
"Patch": 2
},
"runsOn": [
"Agent",
Expand Down
4 changes: 2 additions & 2 deletions vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"manifestVersion": 1,
"id": "VeracodeCommunitySAST",
"name": "Veracode Community SAST Azure DevOps Extension",
"version": "0.0.1",
"publisher": "JoeGatt",
"version": "1.0.2",
"publisher": "gattjoe",
"targets": [
{
"id": "Microsoft.VisualStudio.Services"
Expand Down

0 comments on commit 4a77eaf

Please sign in to comment.