diff --git a/CHANGELOG.md b/CHANGELOG.md index ce29a70..282ab65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,19 @@ All notable changes to the "veracode-sca" extension will be documented in this f Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -## [Unreleased] -- Initial release +### 0.1.1-beta + +- Increase max issues import to 1000 issues +- Update the note for missing issues if there are more than 1000 + +### 0.1.0-beta + +- Note added for projects with more than 100 issues + +### 0.0.3 + +- Add a view to refresh and view the local working folder for SCA libraries and vulnerabilities ### 0.0.2 diff --git a/README.md b/README.md index 5bd2dba..9c8c403 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,18 @@ This extension contributes the following settings: Images and icons need update -The plugin is currently only support 100 issues in a single project. In case there are more issues, you'll see a note in the issues pane: +The plugin is currently only support ~~100~~ 1000 issues in a single project. In case there are more issues, you'll see a note in the issues pane similar to the image below:

## Release Notes +### 0.1.1-beta + +- Increase max issues import to 1000 issues +- Update the note for missing issues if there are more than 1000 + ### 0.1.0-beta - Note added for projects with more than 100 issues diff --git a/package.json b/package.json index 591c81a..50aac83 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "veracode-sca", "displayName": "Veracode SCA (TS)", "description": "", - "version": "0.1.0-beta", + "version": "0.1.1-beta", "publisher": "Lerer", "repository": { "url": "https://github.com/Lerer/vscode-veracode-sca" diff --git a/release/veracode-sca-0.1.1-beta.vsix b/release/veracode-sca-0.1.1-beta.vsix new file mode 100644 index 0000000..0bc2aed Binary files /dev/null and b/release/veracode-sca-0.1.1-beta.vsix differ diff --git a/src/veracode/veracodeAPIWrapper.ts b/src/veracode/veracodeAPIWrapper.ts index dd3fbd7..83a48c4 100644 --- a/src/veracode/veracodeAPIWrapper.ts +++ b/src/veracode/veracodeAPIWrapper.ts @@ -42,7 +42,7 @@ const requests: RequestDetails[] = [ }, { name: "getProjectIssues", - path: '/srcclr/v3/workspaces//issues?project_id=&size=100', + path: '/srcclr/v3/workspaces//issues?project_id=&size=1000', host: 'api.veracode.com', method: 'GET', queryParams: '' diff --git a/src/views/SCAIssuesViewHandler.ts b/src/views/SCAIssuesViewHandler.ts index 46951c6..e92c6f7 100644 --- a/src/views/SCAIssuesViewHandler.ts +++ b/src/views/SCAIssuesViewHandler.ts @@ -3,7 +3,7 @@ import {specificRequest} from '../veracode/veracodeAPIWrapper'; import {getSeverityRatingFromCVSS} from '../veracode/constants'; import * as path from 'path'; -const MAX_ISSUES = 100; +const MAX_ISSUES = 1000; interface SCAIssueElement { id: string, @@ -59,7 +59,7 @@ export class SCAIssuesViewProvider implements vscode.TreeDataProvider