From 168e25188098a946ed4b22bedadd34cc2293d758 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Fri, 10 May 2024 19:08:59 +0530 Subject: [PATCH 1/2] Bump version for v5.0.0 release Signed-off-by: Keshav Priyadarshi --- CHANGELOG.rst | 11 +++++------ purldb_project/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c85f1b96..57d224c7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Changelog Next Release ---------------- + +v5.0.0 +--------- + +- Add `/api/docs` Swagger API documentation for API endpoints. - Add `/api/from_purl/purl2git` endpoint to get a git repo for a purl. - Add `/api/to_purl/go` endpoint to get a purl from a golang import string or a package string in go.mod. - Support indexing of PURLs listed in https://github.com/nexB/purldb/issues/326, @@ -13,12 +18,6 @@ Next Release - Store ``source_symbols`` and ``source_strings`` in ``extra_data`` field. https://github.com/nexB/purldb/pull/351 -v4.0.0 ---------- - -- Add `/api/docs` Swagger API documentation for API endpoints. - - v3.0.0 ------- diff --git a/purldb_project/__init__.py b/purldb_project/__init__.py index e0b80baa..7399cfd5 100644 --- a/purldb_project/__init__.py +++ b/purldb_project/__init__.py @@ -10,7 +10,7 @@ import os import sys -__version__ = "3.0.0" +__version__ = "5.0.0" def command_line(): diff --git a/setup.cfg b/setup.cfg index 5a55f3a2..8c0a2aeb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = purldb -version = 4.0.0 +version = 5.0.0 license_files = LICENSE AUTHORS.rst From 09da28541b791d5d36d6a9f7904843956d565899 Mon Sep 17 00:00:00 2001 From: Keshav Priyadarshi Date: Tue, 14 May 2024 18:21:17 +0530 Subject: [PATCH 2/2] Increase the RQ job timeout for processing scan results Signed-off-by: Keshav Priyadarshi --- minecode/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/minecode/models.py b/minecode/models.py index a6f17488..06732ca5 100644 --- a/minecode/models.py +++ b/minecode/models.py @@ -787,6 +787,7 @@ def process_scan_results( scan_results_location=scan_results_location, scan_summary_location=scan_summary_location, project_extra_data=project_extra_data, + job_timeout=1200, ) return job