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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.51.0] - 2026-03-26
### Added
- Added `--format raw` option to `folder-scan` command to export HFH results in snippet-scanner JSON format
- Expands directory-level HFH results into per-file entries keyed by relative file path
- Assigns each file to the most specific matching `path_id` (deepest directory match wins)
- Added license decoration to folder hash scan results via dependency service
- Each component version in HFH results is now decorated with license information
- CycloneDX output uses pre-decorated licenses instead of making a separate dependency API call

## [1.50.1] - 2026-03-23
### Fixed
- Fixed `bom.replace` rules with a `license` field: the license is now applied to the replaced result instead of being silently dropped
Expand Down Expand Up @@ -852,3 +861,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[1.49.0]: https://github.com/scanoss/scanoss.py/compare/v1.48.0...v1.49.0
[1.49.1]: https://github.com/scanoss/scanoss.py/compare/v1.49.0...v1.49.1
[1.50.0]: https://github.com/scanoss/scanoss.py/compare/v1.49.1...v1.50.0
[1.50.1]: https://github.com/scanoss/scanoss.py/compare/v1.50.0...v1.50.1
[1.51.0]: https://github.com/scanoss/scanoss.py/compare/v1.50.1...v1.51.0
2 changes: 1 addition & 1 deletion src/scanoss/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
THE SOFTWARE.
"""

__version__ = '1.50.1'
__version__ = '1.51.0'
2 changes: 1 addition & 1 deletion src/scanoss/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ def setup_args() -> None: # noqa: PLR0912, PLR0915
'--format',
'-f',
type=str,
choices=['json', 'cyclonedx'],
choices=['json', 'cyclonedx', 'raw'],
default='json',
help='Result output format (optional - default: json)',
)
Expand Down
Loading
Loading