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
26 changes: 20 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,18 +1,32 @@
Changelog
=========

**v36 Breaking Change:** PostgreSQL 17 is now required (previously 13).
**v37 Breaking Changes:**

Docker Compose users with existing data: run `./migrate-pg13-to-17.sh` before starting
the stack.
Fresh installations require no action.
- Drop support for Python3.10 and Python3.11

v37.0.0 (unreleased)
v37.0.0 (2026-03-11)
--------------------

- Upgrade Django to release 6.x

- Drop support for Python3.10 and Python3.11
- Remove the chown service in compose file
https://github.com/aboutcode-org/scancode.io/issues/2086

- Replace plain-text DRF token with PBKDF2-hashed API token
https://github.com/aboutcode-org/scancode.io/issues/2087

- Rename "Grammar" optional step group to "Antlr" in d2d pipeline
https://github.com/aboutcode-org/scancode.io/issues/2059

- Fix URL-encode programming language filter values in resource list
https://github.com/aboutcode-org/scancode.io/issues/2079

**v36 Breaking Change:** PostgreSQL 17 is now required (previously 13).

Docker Compose users with existing data: run `./migrate-pg13-to-17.sh` before starting
the stack.
Fresh installations require no action.

v36.1.0 (2026-01-22)
--------------------
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 = "scancodeio"
version = "36.1.0"
version = "37.0.0"
description = "Automate software composition analysis pipelines"
readme = "README.rst"
requires-python = ">=3.12,<3.15"
Expand Down
2 changes: 1 addition & 1 deletion scancodeio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

import git

VERSION = "36.1.0"
VERSION = "37.0.0"

PROJECT_DIR = Path(__file__).resolve().parent
ROOT_DIR = PROJECT_DIR.parent
Expand Down