File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed
Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 22Changelog
33=========
44
5- 1.4.1 (unreleased )
5+ 1.5.0 (2026-03-05 )
66------------------
77
8- *
8+ * Drop Django support < 4.2
9+ * Add Django 6.0 support
10+ * Fix UUID serialization
11+ * Include cuse middleware inside tracking fields as it is no longer maintained
912
10131.4.0 (2023-06-15)
1114------------------
Original file line number Diff line number Diff line change @@ -14,8 +14,15 @@ A Django app allowing the tracking of objects field in the admin site.
1414Requirements
1515------------
1616
17- * Django 2.2: See older versions for earlier version of Django.
18- * django-cuser: Only if you want to track which user made the modifications.
17+ * Django 4.2: See older versions for earlier version of Django.
18+ * Add the middleware to also store the current user :
19+
20+ MIDDLEWARE = (
21+ ...
22+ "tracking_fields.middleware.cuser.CuserMiddleware",
23+ ...
24+ )
25+
1926
2027Quick start
2128-----------
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def read(*parts):
1313
1414setup (
1515 name = 'django-tracking-fields' ,
16- version = '1.4.1dev ' ,
16+ version = '1.5.0 ' ,
1717 packages = find_packages (),
1818 include_package_data = True ,
1919 license = 'GPLv3+' ,
You can’t perform that action at this time.
0 commit comments