Revisions of python-yarl

buildservice-autocommit accepted request 1068657 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 45)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) committed (revision 44)
- Refreshed support-python-311.patch: with fix
  of CVE-2023-24329 (bsc#1208471), the test
  test_url_parsing.TestScheme.test_not_a_scheme2 fails on all
  openSUSE/SLE Python interpreters.
buildservice-autocommit accepted request 1056959 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 43)
baserev update by copy to link target
Steve Kowalik's avatar Steve Kowalik (StevenK) committed (revision 42)
- Add patch support-python-311.patch:
  * Skip a test under Python 3.11.
buildservice-autocommit accepted request 1041630 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 41)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1041280 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 40)
- Update to version 1.8.2 
  * This is the first release that started shipping wheels for Python 3.11.
buildservice-autocommit accepted request 998077 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 39)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 998040 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 38)
- Update to 1.8.1
  * Added URL.raw_suffix, URL.suffix, URL.raw_suffixes,
    URL.suffixes, URL.with_suffix. (#613)
  * Dropped Python 3.6 support. (#672)
- Drop tests_overcome_bpo42967.patch
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 936291 from Petr Gajdos's avatar Petr Gajdos (pgajdos) (revision 37)
- version update to 1.7.2
 - Changed call in ``with_port()`` to stop reencoding parts of the URL
   that were already encoded. (`#623 <https://github.com/aio-libs/yarl/issues/623>`_)
 - Add `__bytes__()` magic method so that `bytes(url)` will work and use optimal
   ASCII encoding. (`#582 <https://github.com/aio-libs/yarl/issues/582>`_)
 - Started shipping platform-specific arm64 wheels for Apple Silicon.
   (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
 - Started shipping platform-specific wheels with the ``musl`` tag targeting typical
   Alpine Linux runtimes. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
 - Added support for Python 3.10. (`#622 <https://github.com/aio-libs/yarl/issues/622>`_)
- do not require pytest-runner for build, it is not needed
buildservice-autocommit accepted request 880489 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 36)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 880298 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 35)
- Unset -Werror=return-type for python39
- Only install typing_extensions for Python < 3.8
buildservice-autocommit accepted request 874658 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 34)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 874657 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 33)
- Add tests_overcome_bpo42967.patch to over effects of bpo#42967,
  which forbade mixing amps and semicolons in query strings as
  separators.
buildservice-autocommit accepted request 856968 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 32)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 31)
- update to 1.6.3:
  - No longer loose characters when decoding incorrect percent-sequences (like
    ``%e2%82%f8``). All non-decodable percent-sequences are now preserved.
  - Provide generated ``.c`` files in TarBall distribution.
  - ``human_repr()`` now always produces valid representation equivalent to the
    original URL (if the original URL is valid).
  - Fixed  requoting a single percent followed by a percent-encoded character
    in the Cython implementation.
  - Fix ValueError when decoding ``%`` which is not followed by two hexadecimal
    digits.
  - Fix decoding ``%`` followed by a space and hexadecimal digit.
  - Fix annotation of ``with_query()``/``update_query()`` methods for
    ``key=[val1, val2]`` case.
buildservice-autocommit accepted request 838272 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 30)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 29)
- update to 1.6.0:
  - Allow for int and float subclasses in query, while still denying bool.
    `#492 <https://github.com/aio-libs/yarl/issues/492>`_
  - Do not requote arguments in ``URL.build()``, ``with_xxx()`` and in ``/`` operator.
    `#502 <https://github.com/aio-libs/yarl/issues/502>`_
  - Keep IPv6 brackets in ``origin()``.
    `#504 <https://github.com/aio-libs/yarl/issues/504>`_
buildservice-autocommit accepted request 823367 from Matej Cepl's avatar Matej Cepl (mcepl) (revision 28)
baserev update by copy to link target
Matej Cepl's avatar Matej Cepl (mcepl) accepted request 823277 from Benjamin Greiner's avatar Benjamin Greiner (bnavigator) (revision 27)
- remove c source file from package (rpmlint error)
- needs typing-extensions
Ondřej Súkup's avatar Ondřej Súkup (mimi_vx) committed (revision 26)
- update to 1.5.0
- fix tests
 * Convert host to lowercase on URL building. #386
 * Allow using mod operator (%) for updating query string (an alias for update_query() method)
 * Allow use of sequences such as list and tuple in the values of a mapping
   such as dict to represent that a key has many values:
     url = URL("http://example.com")
     assert url.with_query({"a": [1, 2]}) == URL("http://example.com/?a=1&a=2")
 * Support URL.build() with scheme and path (creates a relative URL)
 * Cache slow IDNA encode/decode calls
 * Add @final / Final type hints
 * Support URL authority/raw_authority properties and authority argument
   of URL.build() method
 * Hide the library implementation details, make the exposed public list very clean
 * Fix tests with newer Python (3.7.6, 3.8.1 and 3.9.0+)
 * Fix a bug where query component, passed in a form of mapping or sequence,
   is unquoted in unexpected way
 * Hide Query and QueryVariable type aliases in __init__.pyi, now they
   are prefixed with underscore.
 * Keep ipv6 brackets after updating port/user/password.
Displaying revisions 21 - 40 of 65
openSUSE Build Service is sponsored by