14
0

- Update to 3.0.0:

This release fixes the long standing bug that public and private
  suffixes were generated separately and could not be switched at
  runtime, https://github.com/john-kurkowski/tldextract/issues/66
  * Breaking Changes
    + Rename `cache_file` to `cache_dir` as it is no longer a
      single file but a directory
      (https://github.com/john-kurkowski/tldextract/issues/207)
    + Rename CLI arg also, from `--cache_file` to `--cache_dir`
    + Remove Python 2.7 support
  * Features
    + Can pass `include_psl_private_domains` on call, not only on
      construction
    + Use filelocking to support multi-processing and
      multithreading environments
  * Bugfixes
    + Select public or private suffixes at runtime
      (https://github.com/john-kurkowski/tldextract/issues/66)
  * Removals
    + Do not `debug` log the diff during update
  * Drop tldextract-tests-offline.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=17
This commit is contained in:
2020-10-20 22:54:55 +00:00
committed by Git OBS Bridge
parent 0eca0fbc80
commit 970282fe7c
5 changed files with 32 additions and 35 deletions

View File

@@ -1,3 +1,29 @@
-------------------------------------------------------------------
Tue Oct 20 22:45:59 UTC 2020 - Mia Herkt <mia@0x0.st>
- Update to 3.0.0:
This release fixes the long standing bug that public and private
suffixes were generated separately and could not be switched at
runtime, https://github.com/john-kurkowski/tldextract/issues/66
* Breaking Changes
+ Rename `cache_file` to `cache_dir` as it is no longer a
single file but a directory
(https://github.com/john-kurkowski/tldextract/issues/207)
+ Rename CLI arg also, from `--cache_file` to `--cache_dir`
+ Remove Python 2.7 support
* Features
+ Can pass `include_psl_private_domains` on call, not only on
construction
+ Use filelocking to support multi-processing and
multithreading environments
* Bugfixes
+ Select public or private suffixes at runtime
(https://github.com/john-kurkowski/tldextract/issues/66)
* Removals
+ Do not `debug` log the diff during update
* Drop tldextract-tests-offline.patch
-------------------------------------------------------------------
Thu Sep 17 11:47:16 UTC 2020 - Dirk Mueller <dmueller@suse.com>