Changelog for
python310-rfc3986-2.0.0-3.1.noarch.rpm :
* Fri Oct 07 2022 Yogalakshmi Arunachalam
- Update to version 2.0.0
* Drop support for Python 2.7, 3.3, 3.4, 3.5, 3.6
* Add support for Python 3.8, 3.9, 3.10
* Fix bug in resolving URIs that only contain schemes which are valid per the RFC - bug 81
* Sun Jun 06 2021 Dirk Müller - update to 1.5.0: - Fix bug where a valid IRI is mishandled by ``urlparse`` and ``ParseResultBytes``. - Add :meth:`~rfc3986.builder.URIBuilder.extend_path`,
* Wed Apr 15 2020 Marketa Calabkova - update to 1.4.0
* Prevent users from receiving an invalid authority parsed from a malicious URL.
* Add from_uri to URIBuilder to allow creation of a URIBuilder from an existing URI.
* Fri May 17 2019 Hardik Italia - version update to 1.3.2
* Remove unnecessary IRI-flavored matchers from rfc3986.misc to speed up import time on resource-constrained systems. See also `GitHub #55`_
* Mon May 06 2019 pgajdosAATTsuse.com- version update to 1.3.1
* Only apply IDNA-encoding when there are characters outside of the ASCII character set. See also `GitHub #52`_
* Thu Apr 25 2019 pgajdosAATTsuse.com- version update to 1.3.0
* Add the ``IRIReference`` class which parses data according to RFC 3987 and encodes into an ``URIReference``. See also `GitHub #50`_- run tests
* Tue Mar 05 2019 Thomas Bechtold - update to 1.2.0:
* Update abnf_regexp.py
* Update uri.py
* Add test cases for 933d429f
* Allow percent-encoded bytes in host
* Remove unnecessary whitespace
* Correct name throughout the project
* Percent-encode % chars
* Minor tweak for cleaner logic
* Add test cases specifically for % detection
* Make package building Windows-friendly
* Tack on changes for #35
* Drop Python 3.3, add Python 3.6 and 3.7
* Update for new organization home
* Bump version to 1.2.0
* Use the encoding param in to_str and to_bytes
* Tue Dec 18 2018 Jan Engelhardt - Use noun phrase in summary.
* Tue Dec 04 2018 Matej Cepl - Remove superfluous devel dependency for noarch package
* Thu Aug 10 2017 tbechtoldAATTsuse.com- update to 1.1.0:
* Bump version to 1.1.0
* Fix theme setting for documentation
* Exclude solitary line from coverage
* Note the version we added Validator in
* Fix documentation builds on RTD
* Add check_validity_of to vaildator docs
* Add some chars (!, =, etc) as allowed to the userinfo part of authority
* Add release notes for v1.1.0
* Add a separate testcase for special chars in userinfo and revert changes to other tests
* Add validation to eliminate URIReference.is_valid
* Add deprecation notices to old URIReference methods
* Make tests fail: add \"%20!=\" part to userinfo which is allowed as per RFC3986- Convert to singlespec