Changes between Initial Version and Version 2 of Ticket #34804
- Timestamp:
- Aug 30, 2023, 4:46:14 AM (15 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34804
- Property Summary legacy_algorithm = 'sha1' removed in django4.0 but new algo algorithm is hardcoded → legacy_algorithm = 'sha1' removed in django4.0 but new algorithm is hardcoded
-
Ticket #34804 – Description
initial v2 19 19 Last option for me is to override the class. 20 20 21 Proposed solution is like previous one in __init__ method it picks the value like this 22 23 `self.algorithm = algorithm or settings.DEFAULT_HASHING_ALGORITHM` 21 since `DEFAULT_HASHING_ALGORITHM` is removed. So may be pass param from dumps. 24 22 25 23