Files
deb-python-rfc3986/HISTORY.rst
2015-05-27 15:17:22 -05:00

972 B

0.2.2 -- 2015-05-27

  • Update the regular name regular expression to accept all of the characters allowed in the RFC. Closes bug #11 (Thanks Viktor Haag). Previously URIs similar to "http://http-bin.org" would be considered invalid.

0.2.1 -- 2015-03-20

  • Check that the bytes of an IPv4 Host Address are within the valid range. Otherwise, URIs like "http://256.255.255.0/v1/resource" are considered valid.
  • Add 6 to the list of unreserved characters. It was previously missing. Closes bug #9

0.2.0 -- 2014-06-30

  • Add support for requiring components during validation. This includes adding parameters require_scheme, require_authority, require_path, require_path, require_query, and require_fragment to rfc3986.is_valid_uri and URIReference#is_valid.

0.1.0 -- 2014-06-27

  • Initial Release includes validation and normalization of URIs