Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
Merge pull request DefectDojo#8576 from DefectDojo/release/2.25.4
Browse files Browse the repository at this point in the history
Release: Merge release into master from: release/2.25.4
  • Loading branch information
Maffooch authored Aug 29, 2023
2 parents 07cadb9 + 95fd169 commit 3ef0657
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "defectdojo",
"version": "2.25.3",
"version": "2.25.4",
"license" : "BSD-3-Clause",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion dojo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
# Django starts so that shared_task will use this app.
from .celery import app as celery_app # noqa

__version__ = '2.25.3'
__version__ = '2.25.4'
__url__ = 'https://github.com/DefectDojo/django-DefectDojo'
__docs__ = 'https://documentation.defectdojo.com'
2 changes: 1 addition & 1 deletion dojo/finding/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def findings(
endpoint = None
if "endpoints" in request.GET:
endpoints = request.GET.getlist("endpoints", [])
if len(endpoints) == 1:
if len(endpoints) == 1 and endpoints[0] != '':
endpoint = endpoints[0]
endpoint = get_object_or_404(Endpoint, id=endpoint)
filter_name = "Vulnerable Endpoints"
Expand Down
4 changes: 2 additions & 2 deletions helm/defectdojo/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v2
appVersion: "2.25.3"
appVersion: "2.25.4"
description: A Helm chart for Kubernetes to install DefectDojo
name: defectdojo
version: 1.6.82
version: 1.6.83
icon: https://www.defectdojo.org/img/favicon.ico
maintainers:
- name: madchap
Expand Down

0 comments on commit 3ef0657

Please sign in to comment.