Changes between Initial Version and Version 1 of Ticket #36574
- Timestamp:
- Aug 26, 2025, 3:46:14 PM (4 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36574 – Description
initial v1 21 21 }}} 22 22 23 Result: 24 With django 5.2.0, the filter query fails with 0 results. 25 With django 5.1.11, the filter query success, returning the created record. 26 23 27 Specifically, this change in behaviour was introduced in django 5.2.0, with prior versions of django quantizing the input value (`1.01`) to an acceptable value (`1.0`) before writing the value to the database. 24 28 I believe that change was introduced in pull request: https://github.com/django/django/pull/18895