diff --git a/help.md b/help.md index 0f95d65..16e6e7f 100644 --- a/help.md +++ b/help.md @@ -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 diff --git a/manifest.json b/manifest.json index d8c1a68..67a5e70 100644 --- a/manifest.json +++ b/manifest.json @@ -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": "", diff --git a/tasks/InsightAppSec/helpers/insightAppSecApi.ts b/tasks/InsightAppSec/helpers/insightAppSecApi.ts index 76ec872..1cabf73 100644 --- a/tasks/InsightAppSec/helpers/insightAppSecApi.ts +++ b/tasks/InsightAppSec/helpers/insightAppSecApi.ts @@ -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 diff --git a/tasks/InsightAppSec/task.json b/tasks/InsightAppSec/task.json index bbf4ccd..d6c3feb 100644 --- a/tasks/InsightAppSec/task.json +++ b/tasks/InsightAppSec/task.json @@ -13,7 +13,7 @@ "version": { "Major": 1, "Minor": 1, - "Patch": 0 + "Patch": 1 }, "instanceNameFormat": "Rapid7 InsightAppSec", "inputs": [ diff --git a/tasks/InsightAppSec/task.ts b/tasks/InsightAppSec/task.ts index 55f7484..226f016 100644 --- a/tasks/InsightAppSec/task.ts +++ b/tasks/InsightAppSec/task.ts @@ -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; diff --git a/vss-extension.json b/vss-extension.json index 31d3539..547be32 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -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": [