]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commit
URL parsing fixes
authorMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 May 2021 15:12:11 +0000 (11:12 -0400)
committerMike Bayer <mike_mp@zzzcomputing.com>
Mon, 24 May 2021 15:23:51 +0000 (11:23 -0400)
commit2ab67552a097522a82fd250b8b36995a9bc2cd80
treee4a29ce8190c0141d127f64681690718fffc88b2
parentfd3f98ee38b496916122d1a9a29b02d59ca671f9
URL parsing fixes

Fixed a long-standing issue with :class:`.URL` where query parameters
following the question mark would not be parsed correctly if the URL did
not contain a database portion with a backslash.

Fixed issue where an ``@`` sign in the database portion of a URL would not
be interpreted correctly if the URL also had a username:password section.

Fixes: #6329
Fixes: #6482
Change-Id: I6cb6478affa49b618335b947a74e64090657a98c
doc/build/changelog/unreleased_14/6329.rst [new file with mode: 0644]
doc/build/changelog/unreleased_14/6482.rst [new file with mode: 0644]
lib/sqlalchemy/engine/url.py
test/engine/test_parseconnect.py