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
21 changes: 21 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@ Release notes
=============


Version v36.0.0
---------------------

- Add indexes for models https://github.com/aboutcode-org/vulnerablecode/pull/1701
- Add fixed by package in V2 API https://github.com/aboutcode-org/vulnerablecode/pull/1706
- Add tests for num queries for views https://github.com/aboutcode-org/vulnerablecode/pull/1730
- Add postgresql conf in docker-compose https://github.com/aboutcode-org/vulnerablecode/pull/1733
- Add default postgresql.conf for local docker build https://github.com/aboutcode-org/vulnerablecode/pull/1735
- Add models for CodeFix https://github.com/aboutcode-org/vulnerablecode/pull/1704
- Migrate Alpine Linux importer to aboutcode pipeline https://github.com/aboutcode-org/vulnerablecode/pull/1737
- VCIO-next: Allow CVSS3.1 Severities in NVD https://github.com/aboutcode-org/vulnerablecode/pull/1738
- Add Pipeline to add missing CVSSV3.1 scores https://github.com/aboutcode-org/vulnerablecode/pull/1740
- Add description and reference to the latest release on the homepage https://github.com/aboutcode-org/vulnerablecode/pull/1743
- Use proper apk package type for Alpine https://github.com/aboutcode-org/vulnerablecode/pull/1739
- Optimize vulnerabilities view https://github.com/aboutcode-org/vulnerablecode/pull/1728
- Add CWE support in multiple importers https://github.com/aboutcode-org/vulnerablecode/pull/1526
- Fast content ID migration https://github.com/aboutcode-org/vulnerablecode/pull/1795
- Add captcha for user signup https://github.com/aboutcode-org/vulnerablecode/pull/1822
- Move the package search box to the top by @keshav-space in https://github.com/aboutcode-org/vulnerablecode/pull/1832


Version v35.1.0
---------------------

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 = 35.1.0
version = 36.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 @@ -10,7 +10,7 @@
import os
import sys

__version__ = "35.1.0"
__version__ = "36.0.0"


def command_line():
Expand Down
Loading