You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/en/open_source/upgrading/2.50.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,10 @@
2
2
title: 'Upgrading to DefectDojo Version 2.50.x'
3
3
toc_hide: true
4
4
weight: -20250804
5
-
description: No special instructions.
5
+
description: Dropped support for time_zone in System settings.
6
6
---
7
-
There are no special instructions for upgrading to 2.50.x. Check the [Release Notes](https://github.com/DefectDojo/django-DefectDojo/releases/tag/2.50.0) for the contents of the release.
7
+
8
+
To simplify the management of the DefectDojo application, it is not necessary to set the time zone in two places (environmental variables and system settings). From now on, environmental variable is supported.
9
+
Please check that the environmental variable `DD_TIME_ZONE` is set based on your satisfaction. Any [TZ identifier](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones) is a valid value. Default value is `UTC`.
10
+
11
+
There are other instructions for upgrading to 2.50.x. Check the [Release Notes](https://github.com/DefectDojo/django-DefectDojo/releases/tag/2.50.0) for the contents of the release.
Copy file name to clipboardExpand all lines: dojo/models.py
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,6 @@
4
4
importlogging
5
5
importre
6
6
importwarnings
7
-
importzoneinfo
8
7
fromcontextlibimportsuppress
9
8
fromdatetimeimportdatetime, timedelta
10
9
fromdecimalimportDecimal
@@ -437,9 +436,6 @@ class System_Settings(models.Model):
437
436
438
437
url_prefix=models.CharField(max_length=300, default="", blank=True, help_text=_("URL prefix if DefectDojo is installed in it's own virtual subdirectory."))
enable_product_grade=models.BooleanField(default=False, verbose_name=_("Enable Product Grading"), help_text=_("Displays a grade letter next to a product to show the overall health."))
0 commit comments