Skip to content

Commit

Permalink
Merge pull request #28 from rapid7/release-1.1.1
Browse files Browse the repository at this point in the history
DF-4097 Removing duplicate file path
  • Loading branch information
sstephenson-r7 authored Jul 9, 2021
2 parents e827751 + b86b984 commit b2adb06
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions help.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ To enable debug logging for:

# Version History

* 1.1.1 - Bug fix for duplicated directory name.
* 1.1.0 - Added option to upload report output for both build and release pipelines, added self-populating Scan Config dropdown list
* 1.0.8 - Added improved error logging for bad requests, all requests are now logged with system.debug set to true
* 1.0.7 - Bug fix for empty Vulnerability Query with Scan Gating checked, bug fix for undefined report path for release pipelines, replaced XMLHttpRequest module with Axios, added us2 and us3 regions
Expand Down
7 changes: 6 additions & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@
"sourceUrl": "https://github.com/rapid7/insightappsec-azure-devops-extension",
"licenseUrl": "https://github.com/rapid7/insightappsec-azure-devops-extension/blob/master/LICENSE.txt"
},
"version": "1.1.0",
"version": "1.1.1",
"versionHistory": [
{
"version": "1.1.1",
"date": "",
"changes": "Bug fix for duplicated directory name."
},
{
"version": "1.1.0",
"date": "",
Expand Down
2 changes: 1 addition & 1 deletion tasks/InsightAppSec/helpers/insightAppSecApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const axios = require('axios').default;
const LOCATION_HEADER = "location";
const CONTENT_TYPE_HEADER = "application/json";
const ACCEPT_HEADER = "application/json";
const USER_AGENT_HEADER = "r7:insightappsec-azure-devops-extension/1.1.0";
const USER_AGENT_HEADER = "r7:insightappsec-azure-devops-extension/1.1.1";
const UUID_REGEX = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/

export default class InsightAppSecApi
Expand Down
2 changes: 1 addition & 1 deletion tasks/InsightAppSec/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 1,
"Minor": 1,
"Patch": 0
"Patch": 1
},
"instanceNameFormat": "Rapid7 InsightAppSec",
"inputs": [
Expand Down
1 change: 0 additions & 1 deletion tasks/InsightAppSec/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,6 @@ function getBaseReportPath(hostType)
if (baseReportPath.endsWith("\a"))
{
baseReportPath = baseReportPath.slice(0, -1);
baseReportPath = baseReportPath + REPORT_OUTPUT_FOLDER_NAME;
}

baseReportPath = baseReportPath + REPORT_OUTPUT_FOLDER_NAME;
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1.0,
"id": "rapid7-insightappsec-extension",
"name": "Rapid7 InsightAppSec",
"version": "1.1.0",
"version": "1.1.1",
"publisher": "rapid7",
"public" : true,
"targets": [
Expand Down

0 comments on commit b2adb06

Please sign in to comment.