Skip to content

Commit dc88413

Browse files
Merge branch 'dev' into valkey-compose
2 parents 60e2699 + 6b17b5e commit dc88413

26 files changed

Lines changed: 920 additions & 629 deletions

.github/workflows/k8s-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@ jobs:
6969
defectdojo \
7070
./helm/defectdojo \
7171
--set django.ingress.enabled=true \
72+
--set images.django.image.tag=latest \
73+
--set images.nginx.image.tag=latest \
7274
--set imagePullPolicy=Never \
7375
--set initializer.keepSeconds="-1" \
7476
--set redis.enabled=true \

.github/workflows/release-x-manual-helm-chart.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,6 @@ jobs:
6969
helm dependency list ./helm/defectdojo
7070
helm dependency update ./helm/defectdojo
7171
72-
- name: Add yq
73-
uses: mikefarah/yq@0ecdce24e83f0fa127940334be98c86b07b0c488 # v4.48.1
74-
75-
- name: Pin version docker version
76-
id: pin_image
77-
run: |-
78-
yq --version
79-
yq -i '.tag="${{ inputs.release_number }}"' helm/defectdojo/values.yaml
80-
echo "Current image tag:`yq -r '.tag' helm/defectdojo/values.yaml`"
81-
8272
- name: Package Helm chart
8373
id: package-helm-chart
8474
run: |

docs/content/en/connecting_your_tools/parsers/file/mobsf.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
title: "MobSF Scanner"
33
toc_hide: true
44
---
5-
Export a JSON file using the API, api/v1/report\_json.
5+
"Mobsfscan Scan" has been merged into the "MobSF Scan" parser. The "Mobsfscan Scan" scan_type has been retained to keep deduplication working for existing Tests, but users are encouraged to move to the "MobSF Scan" scan_type.
6+
7+
Export a JSON file using the API, api/v1/report\_json and import it to Defectdojo or import a JSON report from <https://github.com/MobSF/mobsfscan>
68

79
### Sample Scan Data
810
Sample MobSF Scanner scans can be found [here](https://github.com/DefectDojo/django-DefectDojo/tree/master/unittests/scans/mobsf).

docs/content/en/connecting_your_tools/parsers/file/mobsfscan.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/content/en/open_source/upgrading/2.52.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 'Upgrading to DefectDojo Version 2.52.x'
33
toc_hide: true
44
weight: -20251006
5-
description: Replaced Redis with Valkey & Helm chart changes.
5+
description: Replaced Redis with Valkey & Helm chart changes & MobSF parser merge
66
---
77

88
## Valkey
@@ -40,6 +40,13 @@ This release introduces more important changes to the Helm chart configuration:
4040

4141
### Breaking changes
4242

43+
#### Tags
44+
45+
`tag` and `repositoryPrefix` fields have been deprecated. Currently, image tags used in containers are derived by default from the `appVersion` defined in the Chart.
46+
This behavior can be overridden by setting the `tag` value in `images.django` and `images.nginx`.
47+
If fine-tuning is necessary, each container’s image value can also be customized individually (`celery.beat.image`, `celery.worker.image`, `django.nginx.image`, `django.uwsgi.image`, `initializer.image`, and `dbMigrationChecker.image`).
48+
Digest pinning is now supported as well.
49+
4350
#### Security context
4451

4552
This Helm chart extends security context capabilities to all deployed pods and containers.
@@ -63,5 +70,9 @@ The following Helm chart values have been modified in this release:
6370

6471
There are other instructions for upgrading to 2.52.x. Check the [Release Notes](https://github.com/DefectDojo/django-DefectDojo/releases/tag/2.52.0) for the contents of the release.
6572

73+
## Merge of MobSF parsers
74+
75+
Mobsfscan Scan" has been merged into the "MobSF Scan" parser. The "Mobsfscan Scan" scan_type has been retained to keep deduplication working for existing Tests, but users are encouraged to move to the "MobSF Scan" scan_type.
76+
6677
## Release notes
6778
Check the [Release Notes](https://github.com/DefectDojo/django-DefectDojo/releases/tag/2.52.0) for the contents of the release.

dojo/settings/settings.dist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1357,7 +1357,7 @@ def saml2_attrib_map_format(din):
13571357
"HCLAppScan XML": ["title", "description"],
13581358
"HCL AppScan on Cloud SAST XML": ["title", "file_path", "line", "severity"],
13591359
"KICS Scan": ["file_path", "line", "severity", "description", "title"],
1360-
"MobSF Scan": ["title", "description", "severity"],
1360+
"MobSF Scan": ["title", "description", "severity", "file_path"],
13611361
"MobSF Scorecard Scan": ["title", "description", "severity"],
13621362
"OSV Scan": ["title", "description", "severity"],
13631363
"Snyk Code Scan": ["vuln_id_from_tool", "file_path"],

0 commit comments

Comments
 (0)