-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from nikstur/prepare-0.3.0
Prepare 0.3.0
- Loading branch information
Showing
3 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,26 @@ | ||
# Changelog | ||
|
||
## 0.3.0 (unreleased) | ||
## 0.3.0 | ||
|
||
- `doc` and `man` outputs are not included in the SBOM anymore. | ||
### Added | ||
|
||
- Added the ability to collect SBOMs from vendored dependencies (e.g. from Rust | ||
or Go dependencies). | ||
- Added the option `excludes` to `buildBom` to exclude store paths via regex | ||
patterns from the final SBOM. | ||
- Generate CycloneDX v1.5 SBOMs instead of v1.4. | ||
- Added the option `extraPaths` to `buildBom` to consider extra dependencies | ||
but still generating an SBOM for the original derivation. | ||
- Hashes of fixed output derivations are now included in the SBOM. | ||
- A derivation's `src` url and hash are now included in the SBOM. | ||
- Derivations' descriptions are now included in the SBOM. | ||
|
||
### Changed | ||
|
||
- `doc` and `man` outputs are not included in the SBOM anymore. | ||
- Generate CycloneDX v1.5 SBOMs instead of v1.4. | ||
- The created SBOMS are now reproducible because they derive their serial | ||
number from a known input instead of randomly generating it. | ||
|
||
### Fixed | ||
|
||
- Fixed cross-compilation for SBOMs. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "bombon-transformer" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
|