diff options
| -rw-r--r-- | NEWS | 10 | ||||
| -rwxr-xr-x | sbolint | 2 |
2 files changed, 10 insertions, 2 deletions
@@ -1,14 +1,22 @@ The real ChangeLog is the git log. This is just a summary of the user-visible changes between releases. -New in 0.9.7: +New in 0.9.8: ============= +- Python hashed URL check now catches pypi.python.org, too. +- Python hashed URL check demoted to a note (too many of them in + the repo currently). + +New in 0.9.7.2: +=============== sbolint: - Check package name ($PRGNAM) against a list of packages included in Slackware. It's an error if $PRGNAM is already included in Slackware. It's a case-insensitive match, so e.g. a user package called "mplayer" would match Slackware's "MPlayer". +- Python URLs (files.pythonhosted.org) with 60-digit hash now trigger + a warning that shows short URL. New in 0.9.6.2: =============== @@ -1438,7 +1438,7 @@ sub check_pypi_url { # HTTPS transaction. $newurl = "https://files.pythonhosted.org/packages/source/$initial/$srcnam/$filename"; if($url ne $newurl) { - log_warning("$file: canonical pypi URL should be $newurl"); + log_note("$file: canonical pypi URL should be $newurl"); } } |
