14
0

- Update to 2.0.0:

* Breaking change: inputs starting with "http://" or "https://" like
    PyQuery("http://example.com") will no longer fetch the contents of the
    URL. Users desiring the old behavior should switch to
    PyQuery(url="http://example.com").
  * Add nextUntil method
  * .remove() no longer inserts a space in place of the removed element
  * Fix escaping of top-level element text in .html() output
  * Support (and require) cssselect 1.2+
  * Drop support for python 3.5/3.6

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyquery?expand=0&rev=42
This commit is contained in:
2023-04-20 07:27:23 +00:00
committed by Git OBS Bridge
parent f60ea9fc16
commit f0a4b46241
4 changed files with 22 additions and 8 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Thu Apr 20 07:27:05 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 2.0.0:
* Breaking change: inputs starting with "http://" or "https://" like
PyQuery("http://example.com") will no longer fetch the contents of the
URL. Users desiring the old behavior should switch to
PyQuery(url="http://example.com").
* Add nextUntil method
* .remove() no longer inserts a space in place of the removed element
* Fix escaping of top-level element text in .html() output
* Support (and require) cssselect 1.2+
* Drop support for python 3.5/3.6
-------------------------------------------------------------------
Fri Feb 17 16:46:13 UTC 2023 - Matej Cepl <mcepl@suse.com>