14
0

- Update to 3.4.4:

Bugfixes
  * Honor private domains flag on self, not only when passed to
    __call__
    #gh/john-kurkowski/tldextract#289
- Changes in 3.4.3:
Bugfixes
  * Speed up 10-15% over all inputs
  * Refactor suffix_index() to use a trie
    #gh/john-kurkowski/tldextract#285
Docs
  * Adopt PEP257 doc style
- Changes in 3.4.2:
Bugfixes
  * Speed up 10-40% on "average" inputs, and even more on
    pathological inputs, like long subdomains
  * Optimize suffix_index(): search from right to left
    #gh/john-kurkowski/tldextract#283
  * Optimize netloc extraction: switch from regex to if/else
    #gh/john-kurkowski/tldextract#284

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tldextract?expand=0&rev=37
This commit is contained in:
2023-05-21 13:07:15 +00:00
committed by Git OBS Bridge
parent 45c883f490
commit c6c97f247d
4 changed files with 28 additions and 4 deletions

View File

@@ -1,3 +1,27 @@
-------------------------------------------------------------------
Sun May 21 13:02:41 UTC 2023 - Mia Herkt <mia@0x0.st>
- Update to 3.4.4:
Bugfixes
* Honor private domains flag on self, not only when passed to
__call__
#gh/john-kurkowski/tldextract#289
- Changes in 3.4.3:
Bugfixes
* Speed up 10-15% over all inputs
* Refactor suffix_index() to use a trie
#gh/john-kurkowski/tldextract#285
Docs
* Adopt PEP257 doc style
- Changes in 3.4.2:
Bugfixes
* Speed up 10-40% on "average" inputs, and even more on
pathological inputs, like long subdomains
* Optimize suffix_index(): search from right to left
#gh/john-kurkowski/tldextract#283
* Optimize netloc extraction: switch from regex to if/else
#gh/john-kurkowski/tldextract#284
-------------------------------------------------------------------
Thu May 4 13:11:06 UTC 2023 - Mia Herkt <mia@0x0.st>