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 @@ -584,4 +584,8 @@ cyclonedxBom {
584
584
outputFormat = " json"
585
585
// Don't include license texts in generated SBOMs
586
586
includeLicenseText = false
587
+ // Include runtime only deps (bundled libs, language libs, mps)
588
+ def runtimeConfigs = bundledDeps. collect {it. configName }
589
+ runtimeConfigs. addAll([configurations. mps. name, configurations. languageLibs. name])
590
+ includeConfigs = runtimeConfigs
587
591
}
You can’t perform that action at this time.
0 commit comments