Changes between Initial Version and Version 1 of Ticket #36098, comment 13


Ignore:
Timestamp:
Jan 20, 2025, 7:17:26 AM (3 weeks ago)
Author:
sysedit

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #36098, comment 13

    initial v1  
    88}}}
    99
    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.
     10This would be ok with Django 5.0.10 but would raise
    1111
    12 As this ticket only fixes non-str handling, the exception will still be raised, correct ?
     12{{{
     13ValidationError: ['Enter a valid IPv4 or IPv6 address.']
     14}}}
     15
     16in 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 ?
    1317
    1418Should 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 ?
Back to Top