2023-12-07 13:25:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-yarl: updated to 1.9.4 1.9.4 (2023-12-06) Bug fixes - Started raising :py:exc:`TypeError` when a string value is passed into :py:meth:`~yarl.URL.build` as the ``port`` argument Previously the empty string as port would create malformed URLs when rendered \ as string representations. |
2023-11-22 13:27:21 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-yarl: updated to 1.9.3 1.9.3 (2023-11-20) ================== Bug fixes --------- - Stopped dropping trailing slashes in :py:meth:`~yarl.URL.joinpath` - Started accepting string subclasses in ``__truediv__()`` operations (``URL / \ segment``) - Fixed the human representation of URLs with square brackets in usernames and \ passwords - Updated type hints to include ``URL.missing_port()``, ``URL.__bytes__()`` and the ``encoding`` argument to :py:meth:`~yarl.URL.joinpath` |
2023-04-26 15:46:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-yarl: updated to 1.9.2 1.9.2 (2023-04-25) ================== Bugfixes -------- - Fix regression with truediv and absolute URLs with empty paths causing the raw \ path to lack the leading ``/``. |
2023-04-25 09:08:04 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-yarl: updated to 1.9.1 1.9.1 (2023-04-21) ================== Bugfixes -------- - Marked tests that fail on older Python patch releases (< 3.7.10, < 3.8.8 \ and < 3.9.2) as expected to fail due to missing a security fix for \ CVE-2021-23336. 1.9.0 (2023-04-19) ================== This release was never published to PyPI, due to issues with the build process. Features -------- - Added ``URL.joinpath(*elements)``, to create a new URL appending multiple path \ elements. - Made :py:meth:`URL.__truediv__` return ``NotImplemented`` if called with an \ unsupported type — by :user:`michaeljpeters`. Bugfixes -------- - Path normalisation for absolute URLs no longer raises a ValueError exception when `..` segments would otherwise go beyond the URL path root. - Fixed an issue with update_query() not getting rid of the query when argument \ is None. - Added some input restrictions on with_port() function to prevent invalid \ boolean inputs or out of valid port inputs; handled incorrect 0 port \ representation. - Made :py:meth:`URL.build` raise a :py:exc:`TypeError` if the ``host`` argument \ is :py:data:`None` — by :user:`paulpapacz`. - Fixed an issue with ``update_query()`` getting rid of the query when the argument is empty but not ``None``. |
2022-12-04 19:08:15 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-yarl: updated to 1.8.2 1.8.2 (2022-12-03) ================== This is the first release that started shipping wheels for Python 3.11. |
2022-08-05 09:14:05 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message: py-yarl: updated to 1.8.1 1.8.1 (2022-08-01) Misc - Bug fixes 1.8.0 (2022-08-01) Features - Added ``URL.raw_suffix``, ``URL.suffix``, ``URL.raw_suffixes``, \ ``URL.suffixes``, ``URL.with_suffix``. Improved Documentation - Fixed broken internal references to :meth:`~URL.human_repr`. - Fixed broken external references to :doc:`multidict:index` docs. Deprecations and Removals - Dropped Python 3.6 support. |
2022-01-04 21:55:40 by Thomas Klausner | Files touched by this commit (1595) |
Log message: *: bump PKGREVISION for egg.mk users They now have a tool dependency on py-setuptools instead of a DEPENDS |
2021-11-02 19:55:47 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message: py-yarl: updated to 1.7.2 1.7.2 (2021-11-01) Bugfixes - Changed call in ``with_port()`` to stop reencoding parts of the URL that were \ already encoded. 1.7.1 (2021-10-07) Bugfixes - Fix 1.7.0 build error |