Skip to content

Commit 0f9682b

Browse files
MaffoochDefectDojo release bot
andauthored
Release: Merge release into master from: release/2.48.4 (#12838)
* Update versions in application files * Reimport: Restore default for `close_old_findings` to `True` (#12837) As part of #12782 the default value for `close_old_findings` was swapped from `True` to `False`. This PR restores that functionality * Update versions in application files --------- Co-authored-by: DefectDojo release bot <[email protected]> Co-authored-by: Cody Maffucci <[email protected]>
2 parents ca80b76 + 8de641f commit 0f9682b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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.48.3",
3+
"version": "2.48.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.48.3"
7+
__version__ = "2.48.4"
88
__url__ = "https://github.com/DefectDojo/django-DefectDojo"
99
__docs__ = "https://documentation.defectdojo.com"

dojo/api_v2/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2383,7 +2383,7 @@ class ReImportScanSerializer(CommonImportScanSerializer):
23832383
# also for ReImport.
23842384
close_old_findings = serializers.BooleanField(
23852385
required=False,
2386-
default=False,
2386+
default=True,
23872387
help_text="Old findings no longer present in the new report get closed as mitigated when importing. "
23882388
"If service has been set, only the findings for this service will be closed. "
23892389
"This only affects findings within the same test.",

helm/defectdojo/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: "2.48.3"
2+
appVersion: "2.48.4"
33
description: A Helm chart for Kubernetes to install DefectDojo
44
name: defectdojo
5-
version: 1.6.198
5+
version: 1.6.199
66
icon: https://www.defectdojo.org/img/favicon.ico
77
maintainers:
88
- name: madchap

0 commit comments

Comments
 (0)