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
17 changes: 17 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
Release notes
=============

### Version 5.7.1

- feat: Product compliance tab
https://github.com/aboutcode-org/dejacode/issues/507

- feat: Compliance control center dashboard
https://github.com/aboutcode-org/dejacode/issues/513

- feat: refine package search to display the most recent versions first
https://github.com/aboutcode-org/dejacode/issues/504

- fix: increase the max_length to 255 for api key fields
https://github.com/aboutcode-org/dejacode/issues/518

- fix: product is_vulnerable filter on list view
https://github.com/aboutcode-org/dejacode/issues/516

### Version 5.7.0

- Upgrade Python version to 3.14
Expand Down
2 changes: 1 addition & 1 deletion dejacode/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

import git

VERSION = "5.7.0"
VERSION = "5.7.1"

PROJECT_DIR = Path(__file__).resolve().parent
ROOT_DIR = PROJECT_DIR.parent
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dejacode"
version = "5.7.0"
version = "5.7.1"
description = "Automate open source license compliance and ensure supply chain integrity"
readme = "README.rst"
requires-python = ">=3.14,<3.15"
Expand Down
Loading