2019-09-21 15:09:38 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-furl: updated to 2.1.0
Furl v2.1.0.
Added: a dont_quote= parameter to Query.encode() and a
query_dont_quote= parameter to furl.tostr() that exempt valid query
characters from being percent-encoded, either in their entirety with
dont_quote=True, or selectively with dont_quote=<string>, like
dont_quote='/?@_'.
Changed: Move package info from __init__.py into the more standard
__version__.py.
Fixed: Support Unicode usernames and passwords in Python 2.
Fixed: Update orderedmultdict to v1.0.1 to resolve a DeprecationWarning.
Fixed: Encode '/' consistently in query strings across both
quote_plus=True and quote_plus=False.
|
2019-09-02 09:52:49 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-furl: updated to 2.0.0
Furl v2.0.0
Added: All URL components (scheme, host, path, etc) to furl()'s constructor as
keyword arguments. E.g. f = furl(scheme='http', host='host', path='/lolsup').
Changed: furl.truediv() and Path.truediv() now mirror Pathlib.truediv()'s
behavior and return a new instance. The original instance is no longer modified.
Old behavior: f = furl('1'); f / '2' -> str(f) == '1'. New behavior:
f = furl('1'); f /= '2' -> str(f) == '1/2'.
Fixed: Path.load() now accepts Path instances, e.g. f.path.load(Path('hi')).
Removed: Support for Python 2.6, which reached EOL on 2013-10-29.
|
2018-09-24 12:10:31 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-furl: updated to 1.2.1
Furl v1.2.1:
Fixed: Join URLs without an authority (e.g. 'foo:blah') consistently with
urllib.parse.urljoin().
|
2018-07-06 10:11:16 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-furl: updated to 1.2
Furl v1.2:
Added: Path segment appending via the division operator (__truediv__()).
Changed: Bump orderedmultidict dependency to v1.0.
Changed: Check code style with flake8 instead of pycodestyle.
Changed: Percent-encode all non-unreserved characters in Query key=value pairs,
including valid query characters (e.g. '=', '?', etc). Old encoding:
?url=http://foo.com/; new encoding: ?url=http%3A%2F%2Ffoo.com%2F. Equal
signs remain decoded in query values where the key is empty to allow for, and
preserve, queries like '?==3=='.
|
2018-06-15 10:22:00 by Adam Ciarcinski | Files touched by this commit (3) |  |
Log message:
py-furl: updated to 1.1
Furl v1.1
Fixed: Support and preserve all query strings as provided. For example, preserve
the query '&&==' of 'http://foo.com?&&==' as-is. Empty key=value \
pairs are
stored as ('', None) in Query.params, e.g. [('', None), ('', None)] for the
query '&'.
Changed: Don't encode equal signs ('=') in query values if the key is empty.
That is, allow and preserve queries like '?==3==' while also percent encoding
equal signs in query values with an associted key, as expected. E.g.
'?a=1%3D1'.
|
2017-11-02 11:38:36 by Adam Ciarcinski | Files touched by this commit (2) |  |
Log message:
py-furl: updated to 1.0.1
v1.0.1
Added: Add dictionary representations of Path, Query, Fragment, and furl objects
via an asdict() method.
v1.0.0
Added: Test against Python 3.6.
Changed: Bumped the version number to v1.0 to signify that furl is a mature and
stable library. Furl has been marked Production/Stable in setup.py for a long
time anyhow -- it's high time for the version number to catch up.
|
2017-09-16 21:27:31 by Thomas Klausner | Files touched by this commit (372) |
Log message:
Reset maintainer
|
2017-01-12 12:32:33 by Blue Rats | Files touched by this commit (2) |  |
Log message:
Update to latest release 0.5.2. No change log. Assume "more/better/faster".
|