We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a835f5e commit 2423809Copy full SHA for 2423809
CHANGES.rst
@@ -2,10 +2,13 @@
2
Changelog
3
=========
4
5
-1.4.1 (unreleased)
+1.5.0 (2026-03-05)
6
------------------
7
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
12
13
1.4.0 (2023-06-15)
14
README.rst
@@ -14,8 +14,15 @@ A Django app allowing the tracking of objects field in the admin site.
Requirements
15
------------
16
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.
+* Django 4.2: See older versions for earlier version of Django.
+* Add the middleware to also store the current user::
19
+
20
+ MIDDLEWARE = (
21
+ ...
22
+ "tracking_fields.middleware.cuser.CuserMiddleware",
23
24
+ )
25
26
27
Quick start
28
-----------
setup.py
@@ -13,7 +13,7 @@ def read(*parts):
setup(
name='django-tracking-fields',
- version='1.4.1dev',
+ version='1.5.0',
packages=find_packages(),
include_package_data=True,
license='GPLv3+',
@@ -34,8 +34,13 @@ def read(*parts):
34
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
35
'Operating System :: OS Independent',
36
'Programming Language :: Python',
37
- 'Programming Language :: Python :: 3.5',
38
- 'Programming Language :: Python :: 3.6',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.9',
39
+ 'Programming Language :: Python :: 3.10',
40
+ 'Programming Language :: Python :: 3.11',
41
+ 'Programming Language :: Python :: 3.12',
42
+ 'Programming Language :: Python :: 3.13',
43
+ 'Programming Language :: Python :: 3.14',
44
'Topic :: Internet :: WWW/HTTP',
45
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
46
],
0 commit comments