File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,38 @@ Changelog
55
66- Drop support for Python3.10 and Python3.11
77
8+ v37.1.0 (2026-04-01)
9+ --------------------
10+
11+ - feat: display scio and toolkit versions in place of django version
12+ https://github.com/aboutcode-org/scancode.io/pull/2101
13+
14+ - feat: display layers information (created_by, comment) in tree view
15+ https://github.com/aboutcode-org/scancode.io/pull/2102
16+
17+ - feat: enhance the global HTML structure
18+ https://github.com/aboutcode-org/scancode.io/pull/2103
19+
20+ - feat: remove the need for context processor and improve base template
21+ https://github.com/aboutcode-org/scancode.io/pull/2106
22+
23+ - fix: XSS and duplicate file detection in file upload UI
24+ https://github.com/aboutcode-org/scancode.io/pull/2129
25+
26+ - fix: incomplete URL sanitization for Slack webhook detection
27+ https://github.com/aboutcode-org/scancode.io/pull/2130
28+
29+ - feat: is_safe_url to mitigate SSRF in URL requests
30+ https://github.com/aboutcode-org/scancode.io/pull/2131
31+
32+ - feat: add search to resource tree
33+ https://github.com/aboutcode-org/scancode.io/pull/2114
34+
35+ - feat!: use uv and uv.lock for reproducible builds in Docker image
36+ https://github.com/aboutcode-org/scancode.io/pull/2134
37+
38+ - feat!: convert Dockerfile to multi-stage build
39+
840v37.0.0 (2026-03-11)
941--------------------
1042
Original file line number Diff line number Diff line change 77 - ` pyproject.toml `
88 - ` scancodeio/__init__.py `
99 - ` CHANGELOG.rst ` (set date)
10- - Commit and push this branch
10+ - Run ` $ uv lock ` to update the version in the ` uv.lock ` file
11+ - Commit and push this branch: "chore: bump version to vx.x.x for release"
1112- Create a PR and merge once approved
1213- Tag and push that tag. This will trigger the ` pypi-release.yml ` GitHub workflow that
1314 takes care of building the dist release files and upload those to pypi:
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " scancodeio"
7- version = " 37.0 .0"
7+ version = " 37.1 .0"
88description = " Automate software composition analysis pipelines"
99readme = " README.rst"
1010requires-python = " >=3.12,<3.15"
Original file line number Diff line number Diff line change 2828
2929import git
3030
31- VERSION = "37.0 .0"
31+ VERSION = "37.1 .0"
3232
3333PROJECT_DIR = Path (__file__ ).resolve ().parent
3434ROOT_DIR = PROJECT_DIR .parent
You can’t perform that action at this time.
0 commit comments