Skip to content

Bump furl from 1.0.0 to 2.1.0#51

Open
dependabot-preview[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/develop/furl-2.1.0
Open

Bump furl from 1.0.0 to 2.1.0#51
dependabot-preview[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/develop/furl-2.1.0

Conversation

@dependabot-preview
Copy link

Bumps furl from 1.0.0 to 2.1.0.

Release notes

Sourced from furl's releases.

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.

Furl v1.2.1

  • Fixed: Join URLs without an authority (e.g. foo:blah) consistently with
    urllib.parse.urljoin().

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==.

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.

Furl v1.0.2

  • Added: strip_scheme() public function.
  • Changed: Make get_scheme() and set_scheme() functions public.
  • Added: Support all schemes without a netloc/authority, like
    mailto:hi@email.com, without an explicit whitelist of such schemes
    (e.g. tel:, sms:, mailto:, etc).
  • Fixed: Restore furl.url's setter method. E.g. furl.url = 'http://www.foo.com/'.
  • Removed: Support for Python 3.3, which reached EOL on 2017-09-29.

Furl v1.0.1

  • Added: Add dictionary representations of Path, Query, Fragment, and furl
    objects via an asdict() method.
Changelog

Sourced from furl's changelog.

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=, 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.

================================================================================
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.

================================================================================
v1.2.1

Fixed: Join URLs without an authority (e.g. 'foo:blah') consistently with
urllib.parse.urljoin().

================================================================================
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=='.

================================================================================
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 '&'.

... (truncated)
Commits
  • fff5521 Furl v2.1.0.
  • f890a3d Update changelog.
  • d505b90 Update orderedmultidict to v1.0.1 to resolve 'DeprecationWarning: Using or im...
  • ca645f3 Add an idiv() path manipulation example to the README.
  • ec883d3 Append slash to paths to intimate a directory, test -> test/.
  • 483a00e Documentation look and feel.
  • 895535c Code look and feel.
  • 01cdf9a Add trailing comma for consistent code style.
  • 7cc881f Properly capitalize Unicode.
  • e9855e8 Add more tests and a changelog entry for the new query_dont_quote= and dont_q...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Finally, you can contact us by mentioning @dependabot.

Bumps [furl](https://github.com/gruns/furl) from 1.0.0 to 2.1.0.
- [Release notes](https://github.com/gruns/furl/releases)
- [Changelog](https://github.com/gruns/furl/blob/master/changelog.txt)
- [Commits](gruns/furl@v1.0.0...v2.1.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Sep 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants