Skip to content

Commit 37fdd7d

Browse files
authored
Prepare for release v33.6.1 (#1308)
* Prepare for release v33.6.1 Signed-off-by: Tushar Goel <[email protected]> * Add pagination in NginxBasicImprover Signed-off-by: Tushar Goel <[email protected]> --------- Signed-off-by: Tushar Goel <[email protected]>
1 parent 1a78756 commit 37fdd7d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = vulnerablecode
3-
version = 33.6.0
3+
version = 33.6.1
44
license = Apache-2.0 AND CC-BY-SA-4.0
55

66
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390

vulnerabilities/improvers/valid_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ class NginxBasicImprover(Improver):
238238

239239
@property
240240
def interesting_advisories(self) -> QuerySet:
241-
return Advisory.objects.filter(created_by=NginxImporter.qualified_name)
241+
return Advisory.objects.filter(created_by=NginxImporter.qualified_name).paginated()
242242

243243
def get_inferences(self, advisory_data: AdvisoryData) -> Iterable[Inference]:
244244
all_versions = list(self.fetch_nginx_version_from_git_tags())

vulnerablecode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import warnings
1313
from pathlib import Path
1414

15-
__version__ = "33.6.0"
15+
__version__ = "33.6.1"
1616

1717

1818
def command_line():

0 commit comments

Comments
 (0)