Changes between Initial Version and Version 1 of Ticket #36098, comment 13
- Timestamp:
- Jan 20, 2025, 7:17:26 AM (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #36098, comment 13
initial v1 8 8 }}} 9 9 10 This would be ok with Django 5.0.10 but would raise ValidationError: ['Enter a valid IPv4 or IPv6 address.'] in Django 5.0.11 as the string is 40 char long and not 39.10 This would be ok with Django 5.0.10 but would raise 11 11 12 As this ticket only fixes non-str handling, the exception will still be raised, correct ? 12 {{{ 13 ValidationError: ['Enter a valid IPv4 or IPv6 address.'] 14 }}} 15 16 in Django 5.0.11 as the string is 40 char long and not 39. As this ticket only fixes non-str handling, the exception will still be raised, correct ? 13 17 14 18 Should the max-length be raised to something larger, like 65 ? https://superuser.com/questions/381022/how-many-characters-can-an-ip-address-be seems to indicate that this would be the common value to handle IPv6 with scope zone properly ?