Skip to content

Commit 233d7a9

Browse files
committed
Bump of Repository Scanner (RESC) version to 1.0.2
Signed-off-by: Damien Vermaas <damien.vermaas@nl.abnamro.com>
1 parent 82608bd commit 233d7a9

File tree

7 files changed

+10
-16
lines changed

7 files changed

+10
-16
lines changed

components/resc-backend/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = resc_backend
33
description = Repository Scanner - Backend
4-
version = 1.0.1
4+
version = 1.0.2
55
author = ABN AMRO
66
author_email = resc@nl.abnamro.com
77
url = https://github.com/ABNAMRO/repository-scanner

components/resc-frontend/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "resc-frontend",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"author": "ABN AMRO Bank",
55
"description": "Repository Scanner Frontend",
66
"repository": {
@@ -18,7 +18,6 @@
1818
"lint:autofix": "vue-cli-service lint"
1919
},
2020
"dependencies": {
21-
"@cowwoc/requirements": "^3.0.3",
2221
"@fortawesome/free-brands-svg-icons": "^5.15.4",
2322
"@fortawesome/free-solid-svg-icons": "^5.15.4",
2423
"@fortawesome/vue-fontawesome": "^2.0.6",

components/resc-frontend/src/services/findings-service.js

-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
1-
import { requireThat } from '@cowwoc/requirements';
21
import axiosRetry from 'axios-retry';
32

43
const axios = require('axios');
54
axiosRetry(axios, { retries: 3 });
65

76
const FindingsService = {
87
async getFindingById(findingId) {
9-
requireThat(findingId, 'findingId').isDefined().isNotNull().asNumber().isNotNegative();
10-
118
return axios.get(`/findings/${findingId}`);
129
},
1310

1411
async auditFindings(findingIds, findingStatus, comment) {
15-
requireThat(findingIds, 'findingIds').isDefined().isNotNull().asArray().isNotEmpty();
16-
requireThat(findingStatus, 'findingStatus').isDefined().isNotNull();
1712
const commentVal = comment == null ? '' : comment;
1813

1914
return axios.put(`/findings/audit/`, {

components/resc-vcs-scanner/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = resc_vcs_scanner
33
description = Repository Scanner - Version Control System - Scanner
4-
version = 1.0.1
4+
version = 1.0.2
55
author = ABN AMRO
66
author_email = resc@nl.abnamro.com
77
url = https://github.com/ABNAMRO/repository-scanner

components/resc-vcs-scraper/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
name = resc_vcs_scraper
33
description = Repository Scanner - Version Control System - Scraper
4-
version = 1.0.1
4+
version = 1.0.2
55
author = ABN AMRO
66
author_email = resc@nl.abnamro.com
77
url = https://github.com/ABNAMRO/repository-scanner

deployment/kubernetes/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ description: A Helm chart for the Repository Scanner
44

55
type: application
66

7-
version: 1.0.1
7+
version: 1.0.2
88

9-
appVersion: "1.0.1"
9+
appVersion: "1.0.2"
1010

1111
dependencies:
1212
- name: resc-vcs-instances

deployment/kubernetes/example-values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ global:
77
image:
88
repository: rescabnamro/
99
name: resc-backend
10-
tag: 1.0.1
10+
tag: latest
1111
rescFrontend:
1212
image:
1313
repository: rescabnamro/
1414
name: resc-frontend
15-
tag: 1.0.1
15+
tag: latest
1616
VCSScraper:
1717
image:
1818
repository: rescabnamro/
1919
name: resc-vcs-scraper
20-
tag: 1.0.1
20+
tag: latest
2121
rescSecretScanner:
2222
image:
2323
repository: rescabnamro/
2424
name: resc-vcs-scanner
25-
tag: 1.0.1
25+
tag: latest
2626

2727
resc-vcs-scraper-projects:
2828
config:

0 commit comments

Comments
 (0)