Commit 233d7a9 1 parent 82608bd commit 233d7a9 Copy full SHA for 233d7a9
File tree 7 files changed +10
-16
lines changed
7 files changed +10
-16
lines changed Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = resc_backend
3
3
description = Repository Scanner - Backend
4
- version = 1.0.1
4
+ version = 1.0.2
5
5
author = ABN AMRO
6
6
author_email = resc@nl.abnamro.com
7
7
url = https://github.com/ABNAMRO/repository-scanner
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " resc-frontend" ,
3
- "version" : " 1.0.1 " ,
3
+ "version" : " 1.0.2 " ,
4
4
"author" : " ABN AMRO Bank" ,
5
5
"description" : " Repository Scanner Frontend" ,
6
6
"repository" : {
18
18
"lint:autofix" : " vue-cli-service lint"
19
19
},
20
20
"dependencies" : {
21
- "@cowwoc/requirements" : " ^3.0.3" ,
22
21
"@fortawesome/free-brands-svg-icons" : " ^5.15.4" ,
23
22
"@fortawesome/free-solid-svg-icons" : " ^5.15.4" ,
24
23
"@fortawesome/vue-fontawesome" : " ^2.0.6" ,
Original file line number Diff line number Diff line change 1
- import { requireThat } from '@cowwoc/requirements' ;
2
1
import axiosRetry from 'axios-retry' ;
3
2
4
3
const axios = require ( 'axios' ) ;
5
4
axiosRetry ( axios , { retries : 3 } ) ;
6
5
7
6
const FindingsService = {
8
7
async getFindingById ( findingId ) {
9
- requireThat ( findingId , 'findingId' ) . isDefined ( ) . isNotNull ( ) . asNumber ( ) . isNotNegative ( ) ;
10
-
11
8
return axios . get ( `/findings/${ findingId } ` ) ;
12
9
} ,
13
10
14
11
async auditFindings ( findingIds , findingStatus , comment ) {
15
- requireThat ( findingIds , 'findingIds' ) . isDefined ( ) . isNotNull ( ) . asArray ( ) . isNotEmpty ( ) ;
16
- requireThat ( findingStatus , 'findingStatus' ) . isDefined ( ) . isNotNull ( ) ;
17
12
const commentVal = comment == null ? '' : comment ;
18
13
19
14
return axios . put ( `/findings/audit/` , {
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = resc_vcs_scanner
3
3
description = Repository Scanner - Version Control System - Scanner
4
- version = 1.0.1
4
+ version = 1.0.2
5
5
author = ABN AMRO
6
6
author_email = resc@nl.abnamro.com
7
7
url = https://github.com/ABNAMRO/repository-scanner
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = resc_vcs_scraper
3
3
description = Repository Scanner - Version Control System - Scraper
4
- version = 1.0.1
4
+ version = 1.0.2
5
5
author = ABN AMRO
6
6
author_email = resc@nl.abnamro.com
7
7
url = https://github.com/ABNAMRO/repository-scanner
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ description: A Helm chart for the Repository Scanner
4
4
5
5
type : application
6
6
7
- version : 1.0.1
7
+ version : 1.0.2
8
8
9
- appVersion : " 1.0.1 "
9
+ appVersion : " 1.0.2 "
10
10
11
11
dependencies :
12
12
- name : resc-vcs-instances
Original file line number Diff line number Diff line change @@ -7,22 +7,22 @@ global:
7
7
image :
8
8
repository : rescabnamro/
9
9
name : resc-backend
10
- tag : 1.0.1
10
+ tag : latest
11
11
rescFrontend :
12
12
image :
13
13
repository : rescabnamro/
14
14
name : resc-frontend
15
- tag : 1.0.1
15
+ tag : latest
16
16
VCSScraper :
17
17
image :
18
18
repository : rescabnamro/
19
19
name : resc-vcs-scraper
20
- tag : 1.0.1
20
+ tag : latest
21
21
rescSecretScanner :
22
22
image :
23
23
repository : rescabnamro/
24
24
name : resc-vcs-scanner
25
- tag : 1.0.1
25
+ tag : latest
26
26
27
27
resc-vcs-scraper-projects :
28
28
config :
You can’t perform that action at this time.
0 commit comments