diff --git a/CHANGELOG.md b/CHANGELOG.md index 351fcd5..8945455 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.7.1] - 2026-05-11 +### Changed +- Upgraded scanoss-py version to v1.52.1 + ## [1.7.0] - 2026-03-05 ### Added - Added `scanPath` input to configure a relative path within the repository as the scan root (e.g., `src` or `packages/api`). Defaults to `.` (repository root). @@ -58,4 +62,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.4.0]: https://github.com/scanoss/ado-code-scan/compare/v1.3.0...v1.4.0 [1.5.0]: https://github.com/scanoss/ado-code-scan/compare/v1.4.0...v1.5.0 [1.6.0]: https://github.com/scanoss/ado-code-scan/compare/v1.5.0...v1.6.0 -[1.7.0]: https://github.com/scanoss/ado-code-scan/compare/v1.6.0...v1.7.0 \ No newline at end of file +[1.7.0]: https://github.com/scanoss/ado-code-scan/compare/v1.6.0...v1.7.0 +[1.7.1]: https://github.com/scanoss/ado-code-scan/compare/v1.7.0...v1.7.1 \ No newline at end of file diff --git a/OVERVIEW.md b/OVERVIEW.md index b73e499..c259360 100644 --- a/OVERVIEW.md +++ b/OVERVIEW.md @@ -169,7 +169,7 @@ When the pipeline is manually triggered or runs on a schedule, the results are u | depTrackProjectVersion | Dependency Track project version (required if projectId not provided). | Optional | - | | apiUrl | SCANOSS API URL | Optional | `https://api.osskb.org/scan/direct` | | apiKey | SCANOSS API Key | Optional | - | -| runtimeContainer | Runtime URL | Optional | `ghcr.io/scanoss/scanoss-py:v1.46.0` | +| runtimeContainer | Runtime URL | Optional | `ghcr.io/scanoss/scanoss-py:v1.52.1` | | licensesCopyleftInclude | List of Copyleft licenses to append to the default list. Provide licenses as a comma-separated list. | Optional | - | | licensesCopyleftExclude | List of Copyleft licenses to remove from default list. Provide licenses as a comma-separated list. | Optional | - | | licensesCopyleftExplicit | Explicit list of Copyleft licenses to consider. Provide licenses as a comma-separated list. | Optional | - | diff --git a/codescantask/app.input.ts b/codescantask/app.input.ts index 14eb22b..40f3b45 100644 --- a/codescantask/app.input.ts +++ b/codescantask/app.input.ts @@ -37,7 +37,7 @@ export const API_URL = tl.getInput('apiUrl'); export const OUTPUT_FILEPATH = tl.getInput('outputFilepath') || "scanoss-raw.json"; export const REPO_DIR = tl.getVariable('Build.Repository.LocalPath') || ''; // Get repository path export const POLICIES_HALT_ON_FAILURE = tl.getInput('policiesHaltOnFailure') === 'true'; -export const RUNTIME_CONTAINER = tl.getInput('runtimeContainer') || "ghcr.io/scanoss/scanoss-py:v1.46.0"; +export const RUNTIME_CONTAINER = tl.getInput('runtimeContainer') || "ghcr.io/scanoss/scanoss-py:v1.52.1"; export const SKIP_SNIPPETS = tl.getInput('skipSnippets') === 'true'; export const SCAN_FILES = tl.getInput('scanFiles') === 'true'; export const SCANOSS_SETTINGS = tl.getInput('scanossSettings') === 'true'; diff --git a/codescantask/package-lock.json b/codescantask/package-lock.json index 29a8550..67b84a7 100644 --- a/codescantask/package-lock.json +++ b/codescantask/package-lock.json @@ -1,12 +1,12 @@ { "name": "azure-devops-integration", - "version": "1.7.0", + "version": "1.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "azure-devops-integration", - "version": "1.7.0", + "version": "1.8.0", "license": "ISC", "dependencies": { "axios": "^1.7.2", diff --git a/codescantask/package.json b/codescantask/package.json index cf5045a..4900564 100644 --- a/codescantask/package.json +++ b/codescantask/package.json @@ -1,6 +1,6 @@ { "name": "azure-devops-integration", - "version": "1.7.0", + "version": "1.7.1", "description": "", "main": "index.js", "scripts": { diff --git a/codescantask/services/scan.service.ts b/codescantask/services/scan.service.ts index 4c9cef6..f1220ae 100644 --- a/codescantask/services/scan.service.ts +++ b/codescantask/services/scan.service.ts @@ -71,7 +71,7 @@ export interface Options { inputFilepath: string; /** - * Runtime container to perform scan. Default [ghcr.io/scanoss/scanoss-py:v1.45.0] + * Runtime container to perform scan. Default [ghcr.io/scanoss/scanoss-py:v1.52.1] */ runtimeContainer: string; diff --git a/codescantask/task.json b/codescantask/task.json index a0076e3..9b6c9f6 100644 --- a/codescantask/task.json +++ b/codescantask/task.json @@ -10,7 +10,7 @@ "version": { "Major": 1, "Minor": 7, - "Patch": 0 + "Patch": 1 }, "instanceNameFormat": "SCANOSS Code Scan", "inputs": [ @@ -82,7 +82,7 @@ "name": "runtimeContainer", "type": "string", "label": "Runtime container", - "defaultValue": "ghcr.io/scanoss/scanoss-py:v1.46.0", + "defaultValue": "ghcr.io/scanoss/scanoss-py:v1.52.1", "required": false, "helpMarkDown": "Specify runtime container to perform the scan." }, diff --git a/vss-extension-dev.json b/vss-extension-dev.json index e1491c3..ad5ddfc 100644 --- a/vss-extension-dev.json +++ b/vss-extension-dev.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "scanoss-code-scan-dev", "name": "SCANOSS Code Scan DEV", - "version": "1.7.0", + "version": "1.8.0", "publisher": "SCANOSS", "public": false, "targets": [ diff --git a/vss-extension.json b/vss-extension.json index f925278..decf2b4 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "scanoss-code-scan", "name": "SCANOSS Code Scan", - "version": "1.7.0", + "version": "1.7.1", "publisher": "SCANOSS", "public": true, "targets": [