File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
5
5
Format of the log is _ loosely_ based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) .
6
6
The project does _ not_ follow Semantic Versioning and the changes are documented in reverse chronological order, grouped by calendar month.
7
7
8
+ ## June 2025
9
+
10
+ ### Changed
11
+
12
+ - Published SBOM contains dependencies only from runtime configurations
13
+
8
14
## May 2025
9
15
10
16
### Changed
Original file line number Diff line number Diff line change @@ -576,4 +576,8 @@ cyclonedxBom {
576
576
outputFormat = " json"
577
577
// Don't include license texts in generated SBOMs
578
578
includeLicenseText = false
579
+ // Include runtime only deps (bundled libs, language libs, mps)
580
+ def runtimeConfigs = bundledDeps. collect {it. configName }
581
+ runtimeConfigs. addAll([configurations. mps. name, configurations. languageLibs. name])
582
+ includeConfigs = runtimeConfigs
579
583
}
You can’t perform that action at this time.
0 commit comments