mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
commit
08e6ef91d9
4 changed files with 19 additions and 2 deletions
|
|
@ -1,3 +1,19 @@
|
|||
10.4.0 (released 11.12.2023)
|
||||
|
||||
Features:
|
||||
- FIFOs can be used with --config and --cookiefile
|
||||
|
||||
Changes:
|
||||
- Minimum Python version required is 3.9
|
||||
- ms-windows-store added to the list of ignored schemes
|
||||
- linkchecker will exit if problems with a configuration file or cookie file
|
||||
are detected on startup
|
||||
|
||||
Fixes
|
||||
- A cookie file that could not be parsed was causing an exception
|
||||
- Documentation updates
|
||||
|
||||
|
||||
10.3.0 (released 18.09.2023)
|
||||
|
||||
Features:
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
Upgrading
|
||||
=========
|
||||
|
||||
Migrating from 10.3 to 10.x
|
||||
Migrating from 10.3 to 10.4
|
||||
---------------------------
|
||||
Python 3.9 or newer is required.
|
||||
|
||||
|
|
|
|||
|
|
@ -172,6 +172,7 @@ ignored_schemes_provisional = r"""
|
|||
|bitcoincash # bitcoincash
|
||||
|blob # blob
|
||||
|bolo # bolo
|
||||
|brid # brid
|
||||
|browserext # browserext
|
||||
|cabal # cabal
|
||||
|calculator # calculator
|
||||
|
|
|
|||
|
|
@ -36,7 +36,7 @@ class SslCertificateCheck(_ConnectionPlugin):
|
|||
option."""
|
||||
|
||||
def __init__(self, config):
|
||||
"""Initialize clamav configuration."""
|
||||
"""Initialize plugin."""
|
||||
super().__init__(config)
|
||||
self.warn_ssl_cert_secs_valid = (
|
||||
config[sslcertwarndays] * strformat.SECONDS_PER_DAY
|
||||
|
|
|
|||
Loading…
Reference in a new issue