Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin yarl to latest version 1.3.0 #2

Merged
merged 1 commit into from
Jun 25, 2019
Merged

Pin yarl to latest version 1.3.0 #2

merged 1 commit into from
Jun 25, 2019

Conversation

pyup-bot
Copy link
Collaborator

This PR pins yarl to the latest release 1.3.0.

Changelog

1.3.0

------------------

* Fix annotations for ``query`` parameter (207)

* An incoming query sequence can have int variables (the same as for
Mapping type) (208)

* Add ``URL.explicit_port`` property (218)

* Give a friendlier error when port cant be converted to int (168)

* ``bool(URL())`` now returns ``False`` (272)

1.2.6

------------------

* Drop Python 3.4 trove classifier (205)

1.2.5

------------------

* Fix annotations for ``build`` (199)

1.2.4

------------------

* Fix annotations for ``cached_property`` (195)

1.2.3

------------------

* Accept ``str`` subclasses in ``URL`` constructor (190)

1.2.2

------------------

* Fix build

1.2.1

------------------

* Pin minimal required Python to 3.5.3 (189)

1.2.0

------------------

* Forbid inheritance, replace ``__init__`` with ``__new__`` (171)

* Support PEP-561 (provide type hinting marker) (182)

1.1.1

------------------

* Fix performance regression: don't encode enmpty netloc (170)

1.1.0

------------------

* Make pure Python quoter consistent with Cython version (162)

1.0.0

------------------

* Use fast path if quoted string does not need requoting (154)

* Speed up quoting/unquoting by ``_Quoter`` and ``_Unquoter`` classes (155)

* Drop ``yarl.quote`` and ``yarl.unquote`` public functions (155)

* Add custom string writer, reuse static buffer if available (157)
Code is 50-80 times faster than Pure Python version (was 4-5 times faster)

* Don't recode IP zone (144)

* Support ``encoded=True`` in ``yarl.URL.build()`` (158)

* Fix updating query with multiple keys (160)

0.18.0

-------------------

* Fallback to IDNA 2003 if domain name is not IDNA 2008 compatible (152)

0.17.0

-------------------

* Use IDNA 2008 for domain name processing (149)

0.16.0

-------------------

* Fix raising ``TypeError`` by ``url.query_string()`` after
``url.with_query({})`` (empty mapping) (141)

0.15.0

-------------------

* Add ``raw_path_qs`` attribute (137)

0.14.2

-------------------

* Restore ``strict`` parameter as no-op in ``quote`` / ``unquote``

0.14.1

-------------------

* Restore ``strict`` parameter as no-op for sake of compatibility with
aiohttp 2.2

0.14.0

-------------------

* Drop strict mode (123)

* Fix ``"ValueError: Unallowed PCT %"`` when there's a ``"%"`` in the url (124)

0.13.0

-------------------

* Document ``encoded`` parameter (102)

* Support relative urls like ``'?key=value'`` (100)

* Unsafe encoding for QS fixed. Encode ``;`` char in value param (104)

* Process passwords without user names (95)

0.12.0

-------------------

* Properly support paths without leading slash in ``URL.with_path()`` (90)

* Enable type annotation checks

0.11.0

-------------------

* Normalize path (86)

* Clear query and fragment parts in ``.with_path()`` (85)

0.10.3

-------------------

* Prevent double URL args unquoting (83)

0.10.2

-------------------

* Unexpected hash behaviour (75)

0.10.1

-------------------

* Unexpected compare behaviour (73)

* Do not quote or unquote + if not a query string. (74)

0.10.0

-------------------

* Added ``URL.build`` class method (58)

* Added ``path_qs`` attribute (42)

0.9.8

------------------

* Do not quote ``:`` in path

0.9.7

------------------

* Load from pickle without _cache (56)

* Percent-encoded pluses in path variables become spaces (59)

0.9.6

------------------

* Revert backward incompatible change (BaseURL)

0.9.5

------------------

* Fix BaseURL rich comparison support

0.9.4

------------------

* Use BaseURL

0.9.3

------------------

* Added BaseURL

0.9.2

------------------

* Remove debug print

0.9.1

------------------

* Do not lose tail chars (45)

0.9.0

------------------

* Allow to quote ``%`` in non strict mode (21)

* Incorrect parsing of query parameters with %3B (;) inside (34)

* Fix core dumps (41)

* tmpbuf - compiling error (43)

* Added ``URL.update_path()`` method

* Added ``URL.update_query()`` method (47)

0.8.1

------------------

* Fix broken aiohttp: revert back ``quote`` / ``unquote``.

0.8.0

------------------

* Support more verbose error messages in ``.with_query()`` (24)

* Don't percent-encode ` and ``:`` in path (32)

* Don't expose ``yarl.quote`` and ``yarl.unquote``, these functions are
part of private API

0.7.1

------------------

* Accept not only ``str`` but all classes inherited from ``str`` also (25)

0.7.0

------------------

* Accept ``int`` as value for ``.with_query()``

0.6.0

------------------

* Explicitly use UTF8 encoding in setup.py (20)
* Properly unquote non-UTF8 strings (19)

0.5.3

------------------

* Don't use namedtuple fields but indexes on URL construction

0.5.2

------------------

* Inline ``_encode`` class method

0.5.1

------------------

* Make URL construction faster by removing extra classmethod calls

0.5.0

------------------

* Add cython optimization for quoting/unquoting
* Provide binary wheels

0.4.3

------------------

* Fix typing stubs

0.4.2

------------------

* Expose ``quote()`` and ``unquote()`` as public API

0.4.1

------------------

* Support empty values in query (``'/path?arg'``)

0.4.0

------------------

* Introduce ``relative()`` (16)

0.3.2

------------------

* Typo fixes 15

0.3.1

------------------

* Support sequence of pairs as ``with_query()`` parameter

0.3.0

------------------

* Introduce ``is_default_port()``

0.2.1

------------------

* Raise ValueError for URLs like 'http://:8080/'

0.2.0

------------------

* Avoid doubling slashes when joining paths (13)

* Appending path starting from slash is forbidden (12)

0.1.4

------------------

* Add kwargs support for ``with_query()`` (10)

0.1.3

------------------

* Document ``with_query()``, ``with_fragment()`` and ``origin()``

* Allow ``None`` for ``with_query()`` and ``with_fragment()``

0.1.2

------------------

* Fix links, tune docs theme.

0.1.1

------------------

* Update README, old version used obsolete API

0.1.0

------------------

* The library was deeply refactored, bytes are gone away but all
accepted strings are encoded if needed.

0.0.1

------------------

* The first release.
Links

@pyup-bot pyup-bot added the dependency update Specifies pyup.io dependency updates label Jun 25, 2019
@vbe0201 vbe0201 merged commit ad540d8 into master Jun 25, 2019
@vbe0201 vbe0201 deleted the pyup-pin-yarl-1.3.0 branch June 25, 2019 19:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependency update Specifies pyup.io dependency updates
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants