Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
Signed-off-by: Philippe Ombredanne <[email protected]>
  • Loading branch information
pombredanne committed Nov 28, 2022
1 parent 768bdd0 commit ef4fe40
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 10 deletions.
25 changes: 17 additions & 8 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,27 @@ Release notes



Version v30.3.2
Version v31.0.0
----------------

- We added a new Vulntotal command line tool that can compare the vulnerabilities
between multiple vulnerability databases.

- We refactored how we handle CVSS scores. We are no longer storing a CVSS
score separately from a CVSS vector. Instead the vector is stored in the
scoring_elements field.

- We re-enabled support for the PostgreSQL securities advisories importer.

- We fixed the API key request form UI and made it consistent with rest of UI.
- We made bulk search faster by pre-computing
`package_url` and `plain_package_url` in Package model.
And provided two options in package bulk search
``purl_only`` option to get only vulnerable
purls without any extra details, ``plain_purl`` option
to filter purls without qualifiers and
subpath and also return them without qualifiers and subpath.

- We made bulk search faster by pre-computing `package_url` and
`plain_package_url` in Package model. And provided two options in package
bulk search ``purl_only`` option to get only vulnerable purls without any
extra details, ``plain_purl`` option to filter purls without qualifiers and
subpath and also return them without qualifiers and subpath. The names used
are provisional and may be updated in a future release.


Version v30.3.1
----------------
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.3.1
version = 31.0.0
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.3.1"
__version__ = "31.0.0"


def command_line():
Expand Down

0 comments on commit ef4fe40

Please sign in to comment.