From 09937d3c5efc7c3a920e0c454181df83cb3208e7 Mon Sep 17 00:00:00 2001 From: Tushar Goel Date: Thu, 30 Apr 2026 23:59:21 +0530 Subject: [PATCH] Release v38.6.0 Signed-off-by: Tushar Goel --- CHANGELOG.rst | 10 ++++++++++ setup.cfg | 2 +- vulnerablecode/__init__.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eef4ddfee..26563283c 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,16 @@ Release notes ============= +Version v38.6.0 +--------------------- + +- fix: add missing clean_downloads step for alpine_linux v2 importer (https://github.com/aboutcode-org/vulnerablecode/pull/2282) +- fix: fix AdvisoryDataV2 deserialization and validate version ranges correctly (https://github.com/aboutcode-org/vulnerablecode/pull/2285) +- fix: ignore conflicts while bulk creating v2 packages (https://github.com/aboutcode-org/vulnerablecode/pull/2289) +- fix: use shared cache backend across WSGI workers (https://github.com/aboutcode-org/vulnerablecode/pull/2290) +- fix: delete AdvisorySet associated with malformed aliases (https://github.com/aboutcode-org/vulnerablecode/pull/2291) + + Version v38.5.0 --------------------- diff --git a/setup.cfg b/setup.cfg index 71d62d573..6e2d40a81 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = vulnerablecode -version = 38.5.0 +version = 38.6.0 license = Apache-2.0 AND CC-BY-SA-4.0 # description must be on ONE line https://github.com/pypa/setuptools/issues/1390 diff --git a/vulnerablecode/__init__.py b/vulnerablecode/__init__.py index 15d335f6a..1fcaf41e8 100644 --- a/vulnerablecode/__init__.py +++ b/vulnerablecode/__init__.py @@ -14,7 +14,7 @@ import git -__version__ = "38.5.0" +__version__ = "38.6.0" PROJECT_DIR = Path(__file__).resolve().parent