nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

squid: remove knownVulnerabilities for 7.0+

In the past, it has been brought up that Squid had many security vulnerabilities
(see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0,
all of them have been solved, as tracked in their GitHub Security page:
https://github.com/squid-cache/squid/security

+5 -3
+5 -3
pkgs/by-name/sq/squid/package.nix
··· 101 101 license = licenses.gpl2Plus; 102 102 platforms = platforms.linux; 103 103 maintainers = with maintainers; [ raskin ]; 104 - knownVulnerabilities = [ 105 - "Squid has multiple unresolved security vulnerabilities, for more information see https://megamansec.github.io/Squid-Security-Audit/" 106 - ]; 104 + # In the past, it has been brought up that Squid had many security vulnerabilities 105 + # (see https://megamansec.github.io/Squid-Security-Audit/). As of version 7.0, 106 + # all of them have been solved, as tracked in their GitHub Security page: 107 + # https://github.com/squid-cache/squid/security 108 + knownVulnerabilities = [ ]; 107 109 }; 108 110 })