Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ Release notes
=============


Version v30.1.1
----------------

- We added a new web UI link to explain how to obtain an API for the publicly
hosted VulnerableCode


Version v30.1.0
----------------

Expand Down Expand Up @@ -32,7 +39,7 @@ This is a major version that is not backward compatible.

- We removed the ability to edit relationships from the UI. The UI is now read-only.

- We replace the web UI with a brand new UI based on the same overall look and feel as ScanCode.io.
- We replaced the web UI with a brand new UI based on the same overall look and feel as ScanCode.io.

- We added support for NixOS as a Linux deployment target.

Expand Down Expand Up @@ -62,7 +69,7 @@ This is a major version that is not backward compatible.
another aliases/ endpoint to lookup for vulnerabilities by aliases. These two endpoints will be
replaced by query parameters on the main vulnerabilities/ endpoint when stabilized.

- Added filters for vulnerabilities endpoint to get fixed packages in accordance
- We added filters for vulnerabilities endpoint to get fixed packages in accordance
to the details given in filters: For example, when you call the endpoint this way
``/api/vulnerabilities?type=pypi&namespace=foo&name=bar``, you will receive only
fixed versioned purls of the type ``pypi``, namespace ``foo`` and name ``bar``.
Expand Down
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 = 30.1.0
version = 30.1.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 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__ = "30.1.0"
__version__ = "30.1.1"


def command_line():
Expand Down