Skip to content

Commit 5c7de81

Browse files
authored
Merge pull request #11110 from DefectDojo/release/2.39.2
Release: Merge release into master from: release/2.39.2
2 parents 52e9f16 + 864da41 commit 5c7de81

13 files changed

Lines changed: 139 additions & 272 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.39.1",
3+
"version": "2.39.2",
44
"license" : "BSD-3-Clause",
55
"private": true,
66
"dependencies": {

docker/entrypoint-initializer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ EOD
154154
echo "Importing fixtures all at once"
155155
python3 manage.py loaddata system_settings initial_banner_conf product_type test_type \
156156
development_environment benchmark_type benchmark_category benchmark_requirement \
157-
language_type objects_review regulation initial_surveys role
157+
language_type objects_review regulation initial_surveys role sla_configurations
158158

159159
echo "UPDATE dojo_system_settings SET jira_webhook_secret='$DD_JIRA_WEBHOOK_SECRET'" | python manage.py dbshell
160160

docs/content/en/getting_started/architecture.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ dynamic content.
2020

2121
## Message Broker
2222

23-
The application server sends tasks to a [Message Broker](https://docs.celeryproject.org/en/stable/getting-started/brokers/index.html)
24-
for asynchronous execution.
23+
The application server sends tasks to a [Message Broker](https://docs.celeryq.dev/en/stable/getting-started/backends-and-brokers/index.html)
24+
for asynchronous execution. Currently, only [Redis](https://github.com/redis/redis) is supported as a broker.
2525

2626
## Celery Worker
2727

docs/content/en/integrations/importing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ An import can be performed by specifying the names of these entities in the API
6969
}
7070
```
7171

72-
When `auto_create_context` is `True`, the product and engagement will be created if needed. Make sure your user has sufficient [permissions](../usage/permissions) to do this.
72+
When `auto_create_context` is `True`, the product, engagement, and environment will be created if needed. Make sure your user has sufficient [permissions](../usage/permissions) to do this.
7373

7474
A classic way of importing a scan is by specifying the ID of the engagement instead:
7575

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.39.1"
7+
__version__ = "2.39.2"
88
__url__ = "https://github.com/DefectDojo/django-DefectDojo"
99
__docs__ = "https://documentation.defectdojo.com"

0 commit comments

Comments
 (0)