Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add upgrade instructions for 2.3.0 #5229

Merged
merged 1 commit into from Oct 7, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/content/en/getting_started/upgrading.md
Expand Up @@ -72,6 +72,15 @@ update the source code first)
Replace the first step above with this one: `docker-compose build`


## Upgrading to DefectDojo Version 2.3.x.

There are no special instruction for upgrading to 2.3.0.
In 2.3.0 we [changed the default password hashing algorithm to Argon2 (from PBKDF2)](https://github.com/DefectDojo/django-DefectDojo/pull/5205).
When logging in, exising hashes get replaced by an Argon2 hash. If you want to rehash password without users having to login,
please see the [Django password management docs](https://docs.djangoproject.com/en/3.2/topics/auth/passwords/).
The previous password hashing algorithm was not unsafe, but we wanted to follow the [OWASP guidelines](https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html).


## Upgrading to DefectDojo Version 2.2.x.

Upgrade to 2.0.0 contained migration of endpoints. Some parts of migration haven't been done properly. This deficiency
Expand Down