Skip to content

Commit 5b1d60e

Browse files
authored
Merge pull request #14913 from DefectDojo/release/2.58.4
Release: Merge release into master from: release/2.58.4
2 parents ea61111 + 37fb251 commit 5b1d60e

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "defectdojo",
3-
"version": "2.58.3",
3+
"version": "2.58.4",
44
"license" : "BSD-3-Clause",
55
"private": true,
66
"dependencies": {

dojo/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
# Django starts so that shared_task will use this app.
55
from .celery import app as celery_app # noqa: F401
66

7-
__version__ = "2.58.3"
7+
__version__ = "2.58.4"
88
__url__ = "https://github.com/DefectDojo/django-DefectDojo"
99
__docs__ = "https://documentation.defectdojo.com"

dojo/tools/cyclonedx/json_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def _get_findings_json(self, file, test):
112112
rating.get("method") == "CVSSv3"
113113
or rating.get("method") == "CVSSv31"
114114
):
115-
raw_vector = rating["vector"]
115+
raw_vector = rating.get("vector", "")
116116
cvssv3 = Cyclonedxhelper()._get_cvssv3(raw_vector)
117117
severity = rating.get("severity")
118118
if cvssv3:

helm/defectdojo/Chart.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: "2.58.3"
2+
appVersion: "2.58.4"
33
description: A Helm chart for Kubernetes to install DefectDojo
44
name: defectdojo
5-
version: 1.9.28
5+
version: 1.9.29
66
icon: https://defectdojo.com/hubfs/DefectDojo_favicon.png
77
maintainers:
88
- name: madchap
@@ -34,4 +34,4 @@ dependencies:
3434
# description: Critical bug
3535
annotations:
3636
artifacthub.io/prerelease: "false"
37-
artifacthub.io/changes: "- kind: changed\n description: Bump DefectDojo to 2.58.3\n"
37+
artifacthub.io/changes: "- kind: changed\n description: Bump DefectDojo to 2.58.4\n"

helm/defectdojo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ The HELM schema will be generated for you.
511511
512512
# General information about chart values
513513
514-
![Version: 1.9.28](https://img.shields.io/badge/Version-1.9.28-informational?style=flat-square) ![AppVersion: 2.58.3](https://img.shields.io/badge/AppVersion-2.58.3-informational?style=flat-square)
514+
![Version: 1.9.29](https://img.shields.io/badge/Version-1.9.29-informational?style=flat-square) ![AppVersion: 2.58.4](https://img.shields.io/badge/AppVersion-2.58.4-informational?style=flat-square)
515515
516516
A Helm chart for Kubernetes to install DefectDojo
517517

0 commit comments

Comments
 (0)