Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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
[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
2 changes: 1 addition & 1 deletion OVERVIEW.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | - |
Expand Down
2 changes: 1 addition & 1 deletion codescantask/app.input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Comment thread
agustingroh marked this conversation as resolved.
export const SKIP_SNIPPETS = tl.getInput('skipSnippets') === 'true';
export const SCAN_FILES = tl.getInput('scanFiles') === 'true';
export const SCANOSS_SETTINGS = tl.getInput('scanossSettings') === 'true';
Expand Down
4 changes: 2 additions & 2 deletions codescantask/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 codescantask/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-devops-integration",
"version": "1.7.0",
"version": "1.7.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion codescantask/services/scan.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
4 changes: 2 additions & 2 deletions codescantask/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 1,
"Minor": 7,
"Patch": 0
"Patch": 1
},
"instanceNameFormat": "SCANOSS Code Scan",
"inputs": [
Expand Down Expand Up @@ -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."
},
Expand Down
2 changes: 1 addition & 1 deletion vss-extension-dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "scanoss-code-scan-dev",
"name": "SCANOSS Code Scan DEV",
"version": "1.7.0",
"version": "1.8.0",
Comment thread
agustingroh marked this conversation as resolved.
"publisher": "SCANOSS",
"public": false,
"targets": [
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,
"id": "scanoss-code-scan",
"name": "SCANOSS Code Scan",
"version": "1.7.0",
"version": "1.7.1",
"publisher": "SCANOSS",
"public": true,
"targets": [
Expand Down
Loading