File tree Expand file tree Collapse file tree 4 files changed +15
-4
lines changed
vulnerabilities/improvers Expand file tree Collapse file tree 4 files changed +15
-4
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,16 @@ Release notes
22=============
33
44
5+ Version v33.6.3
6+ ----------------
7+
8+ - We updated RTD build configuration.
9+ - We added importer for OSS-Fuzz.
10+ - We removed vulnerabilities with empty aliases.
11+ - We fixed search encoding issue https://github.com/nexB/vulnerablecode/issues/1336.
12+ - We added middleware to ban "bytedance" user-agent.
13+
14+
515Version v33.6.2
616----------------
717
Original file line number Diff line number Diff line change 11[metadata]
22name = vulnerablecode
3- version = 33.6.2
3+ version = 33.6.3
44license = Apache-2.0 AND CC-BY-SA-4.0
55
66# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Original file line number Diff line number Diff line change 88#
99
1010from vulnerabilities .improvers import valid_versions
11- from vulnerabilities .improvers import vulnerability_status
11+
12+ # from vulnerabilities.improvers import vulnerability_status
1213
1314IMPROVERS_REGISTRY = [
1415 valid_versions .GitHubBasicImprover ,
2425 valid_versions .DebianOvalImprover ,
2526 valid_versions .UbuntuOvalImprover ,
2627 valid_versions .OSSFuzzImprover ,
27- vulnerability_status .VulnerabilityStatusImprover ,
28+ # vulnerability_status.VulnerabilityStatusImprover,
2829]
2930
3031IMPROVERS_REGISTRY = {x .qualified_name : x for x in IMPROVERS_REGISTRY }
Original file line number Diff line number Diff line change 1212import warnings
1313from pathlib import Path
1414
15- __version__ = "33.6.2 "
15+ __version__ = "33.6.3 "
1616
1717
1818def command_line ():
You can’t perform that action at this time.
0 commit comments