Skip to content

Commit

Permalink
Prepare for release v33.6.1 (#1308)
Browse files Browse the repository at this point in the history
* Prepare for release v33.6.1

Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>

* Add pagination in NginxBasicImprover

Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>

---------

Signed-off-by: Tushar Goel <tushar.goel.dav@gmail.com>
  • Loading branch information
TG1999 authored Sep 22, 2023
1 parent 1a78756 commit 37fdd7d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = vulnerablecode
version = 33.6.0
version = 33.6.1
license = Apache-2.0 AND CC-BY-SA-4.0

# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
Expand Down
2 changes: 1 addition & 1 deletion vulnerabilities/improvers/valid_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class NginxBasicImprover(Improver):

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

def get_inferences(self, advisory_data: AdvisoryData) -> Iterable[Inference]:
all_versions = list(self.fetch_nginx_version_from_git_tags())
Expand Down
2 changes: 1 addition & 1 deletion vulnerablecode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import warnings
from pathlib import Path

__version__ = "33.6.0"
__version__ = "33.6.1"


def command_line():
Expand Down

0 comments on commit 37fdd7d

Please sign in to comment.