2021-03-19 14:30:08 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Mar 19 14:28:28 UTC 2021 - Matej Cepl <mcepl@suse.com>
|
|
|
|
|
|
|
|
|
|
- Add 166-add-xfail-test_add_or_replace_parameter_fail.patch,
|
2021-03-19 15:15:22 +00:00
|
|
|
which makes tests working with CVE-2021-23336 (bsc#1181270).
|
2021-03-19 14:30:08 +00:00
|
|
|
|
2020-07-22 12:39:43 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed Jul 22 11:05:23 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
|
|
|
|
|
|
- update to 1.22.0
|
|
|
|
|
* Python 3.4 is no longer supported (issue #156)
|
|
|
|
|
* :func:`w3lib.url.safe_url_string` now supports an optional ``quote_path``
|
|
|
|
|
parameter to disable the percent-encoding of the URL path
|
|
|
|
|
* more small fixes and improvements
|
|
|
|
|
|
2019-08-30 00:49:02 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Aug 29 13:15:56 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
|
|
|
|
|
|
2020-07-22 12:39:43 +00:00
|
|
|
- update to 1.21.0
|
2019-08-30 00:49:02 +00:00
|
|
|
* Add the "encoding" and "path_encoding" parameters to
|
|
|
|
|
w3lib.url.safe_download_url (issue #118)
|
|
|
|
|
* w3lib.url.safe_url_string now also removes tabs and new lines
|
|
|
|
|
(issue #133)
|
|
|
|
|
* w3lib.html.remove_comments now also removes truncated comments
|
|
|
|
|
(issue #129)
|
|
|
|
|
* w3lib.html.remove_tags_with_content no longer removes tags which
|
|
|
|
|
start with the same text as one of the specified tags (issue #114)
|
|
|
|
|
|
2019-03-29 10:15:50 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Mar 29 09:53:27 UTC 2019 - pgajdos@suse.com
|
|
|
|
|
|
|
|
|
|
- version update to 1.20.0
|
|
|
|
|
* Fix url_query_cleaner to do not append "?" to urls without a
|
|
|
|
|
query string (issue #109)
|
|
|
|
|
* Add support for Python 3.7 and drop Python 3.3 (issue #113)
|
|
|
|
|
* Add `w3lib.url.add_or_replace_parameters` helper (issue #117)
|
|
|
|
|
* Documentation fixes (issue #115)
|
|
|
|
|
|
2018-11-17 16:06:52 +00:00
|
|
|
-------------------------------------------------------------------
|
2018-12-04 14:15:20 +00:00
|
|
|
Tue Dec 4 12:56:15 UTC 2018 - Matej Cepl <mcepl@suse.com>
|
|
|
|
|
|
|
|
|
|
- Remove superfluous devel dependency for noarch package
|
|
|
|
|
|
|
|
|
|
-------------------------------------------------------------------
|
2018-11-17 16:06:52 +00:00
|
|
|
Fri Nov 16 18:49:26 UTC 2018 - Todd R <toddrme2178@gmail.com>
|
|
|
|
|
|
|
|
|
|
- Update to version 1.19.0
|
|
|
|
|
* Add a workaround for CPython segfault (https://bugs.python.org/issue32583)
|
|
|
|
|
which affect w3lib.encoding functions. This is technically **backwards
|
|
|
|
|
incompatible** because it changes the way non-decodable bytes are replaced
|
|
|
|
|
(in some cases instead of two ``\ufffd`` chars you can get one).
|
|
|
|
|
As a side effect, the fix speeds up decoding in Python 3.4+.
|
|
|
|
|
* Add 'encoding' parameter for w3lib.http.basic_auth_header.
|
|
|
|
|
* Fix pypy testing setup, add pypy3 to CI.
|
|
|
|
|
|
2017-12-21 23:26:39 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Dec 21 22:45:16 UTC 2017 - mpluskal@suse.com
|
|
|
|
|
|
|
|
|
|
- Update to version 1.18.0:
|
|
|
|
|
* No upstream changelog available
|
|
|
|
|
- Convert to singlespec
|
|
|
|
|
|
2016-06-03 06:49:28 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Thu Jun 2 16:54:55 UTC 2016 - jacobwinski@gmail.com
|
|
|
|
|
|
|
|
|
|
- Update to 1.14.2 (2016-04-11)
|
|
|
|
|
* fix function import for (deprecated) ``urljoin_rfc`` (issue #51)
|
|
|
|
|
* only expose wanted functions from ``w3lib.url``, via ``__all__``
|
|
|
|
|
(see issue #54, https://github.com/scrapy/scrapy/issues/1917)
|
|
|
|
|
- Update to 1.14.1 (2016-04-07)
|
|
|
|
|
* For bytes URLs, when supplied encoding (or default UTF8) is wrong,
|
|
|
|
|
``safe_url_string`` falls back to percent-encoding offending bytes.
|
|
|
|
|
- Update to 1.14.0 (2016-04-06)
|
|
|
|
|
* proper handling of non-ASCII characters in Python2 and Python3
|
|
|
|
|
* support IDNs
|
|
|
|
|
* new `path_encoding` to override default UTF-8 when serializing non-ASCII
|
|
|
|
|
characters before percent-encoding
|
|
|
|
|
* html_body_declared_encoding also detects encoding when not sole attribute
|
|
|
|
|
in ``<meta>``.
|
|
|
|
|
* Package is now properly marked as ``zip_safe``.
|
|
|
|
|
- Update to 1.13.0 (2015-11-05)
|
|
|
|
|
* remove_tags removes uppercase tags as well;
|
|
|
|
|
* ignore meta-redirects inside script or noscript tags by default,
|
|
|
|
|
but add an option to not ignore them;
|
|
|
|
|
* replace_entities now handles entities without trailing semicolon;
|
|
|
|
|
* fixed uncaught UnicodeDecodeError when decoding entities.
|
|
|
|
|
- Update to 1.12.0 (2015-06-29)
|
|
|
|
|
* meta_refresh regex now handles leading newlines and whitespaces in the url;
|
|
|
|
|
* include tests folder in source distribution.
|
|
|
|
|
- Update to 1.11.0 (2015-01-13)
|
|
|
|
|
* url_query_cleaner now supports str or list parameters;
|
|
|
|
|
* add support for resolving base URLs in <base> tags with attributes
|
|
|
|
|
before href.
|
|
|
|
|
- Update spec file to reflect new upstream package requirements.
|
|
|
|
|
|
2014-09-05 10:17:18 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Sep 5 10:08:16 UTC 2014 - toddrme2178@gmail.com
|
|
|
|
|
|
|
|
|
|
- Update to version 1.10.0
|
|
|
|
|
+ See https://github.com/scrapy/w3lib/commits/v1.10.0 for a list
|
|
|
|
|
of changes.
|
|
|
|
|
|
2013-11-15 20:40:49 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Fri Nov 15 20:36:22 UTC 2013 - p.drouand@gmail.com
|
|
|
|
|
|
|
|
|
|
- Update to version 1.5
|
|
|
|
|
+ No changelog available
|
|
|
|
|
- Add python-setuptools BuildRequires; new dependency
|
|
|
|
|
|
2012-05-24 07:56:13 +00:00
|
|
|
-------------------------------------------------------------------
|
|
|
|
|
Wed May 23 21:43:14 UTC 2012 - jfunk@funktronics.ca
|
|
|
|
|
|
|
|
|
|
- Initial release
|
|
|
|
|
|