Skip to content

Bump furl from 1.0.0 to 2.0.0#6

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

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

Conversation

@dependabot-preview
Copy link

Bumps furl from 1.0.0 to 2.0.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.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 '&'.
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'.

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

... (truncated)
Commits
  • 3a61f7c Furl v2.0.0.
  • 772c06e Codestyle fix.
  • 25157c7 Tweak changelog entry.
  • 2cecf21 Add ll URL components (scheme, host, port, path, fragment, etc) to furl's con...
  • 5fbdbcc Remove implicit text elements in anchors to avoid unintentional underscores o...
  • 6251e5a Replace isinstance() calls with hasattr() duck testing for extensibility's sake.
  • ff56a84 Tweak changelog entry.
  • c36378b Update changelog to reflect the new Pathlib-like Path.truediv and furl.__...
  • 62f50dc Update API docs to the new Pathlib-like Path.truediv and furl.truediv...
  • 1d6ff7e Accept Path instances for Path.load(). E.g. f.path.load(Path('hi')).
  • 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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 cancel merge will cancel a previously requested merge
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot ignore this [patch|minor|major] version will close this PR and stop Dependabot creating any more for this minor/major 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)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Pull request limits (per update run and/or open at any time)
  • 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.0.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.0.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Nov 18, 2018
@dependabot-preview
Copy link
Author

Superseded by #51.

@dependabot-preview dependabot-preview bot deleted the dependabot/pip/develop/furl-2.0.0 branch September 23, 2019 15:35
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.

1 participant