@cyclonedx/cdxgen 11.0.1 → 11.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/data/component-tags.json +15 -5
- package/data/frameworks-list.json +7 -1
- package/data/wrapdb-releases.json +1396 -665
- package/lib/cli/index.js +5 -5
- package/lib/helpers/display.js +4 -1
- package/lib/helpers/envcontext.js +4 -4
- package/lib/helpers/utils.js +44 -5
- package/lib/helpers/utils.test.js +10 -0
- package/lib/stages/postgen/annotator.js +10 -2
- package/package.json +4 -4
- package/types/lib/helpers/display.d.ts.map +1 -1
- package/types/lib/helpers/utils.d.ts +5 -1
- package/types/lib/helpers/utils.d.ts.map +1 -1
- package/types/lib/stages/postgen/annotator.d.ts.map +1 -1
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ Our philosophy:
|
|
|
37
37
|
|
|
38
38
|
## Documentation
|
|
39
39
|
|
|
40
|
-
Please visit our [documentation site][docs-homepage] for detailed usage, tutorials, and support documentation.
|
|
40
|
+
Please visit our [GPT app][cdxgen-gpt] or the [documentation site][docs-homepage] for detailed usage, tutorials, and support documentation.
|
|
41
41
|
|
|
42
42
|
Sections include:
|
|
43
43
|
|
|
@@ -556,3 +556,4 @@ pnpm test
|
|
|
556
556
|
[podman-github-rootless]: https://github.com/containers/podman/blob/master/docs/tutorials/rootless_tutorial.md
|
|
557
557
|
[podman-github-remote]: https://github.com/containers/podman/blob/master/docs/tutorials/mac_win_client.md
|
|
558
558
|
[swh-cdxgen]: https://archive.softwareheritage.org/browse/origin/?origin_url=https://github.com/CycloneDX/cdxgen
|
|
559
|
+
[cdxgen-gpt]: https://chatgpt.com/g/g-673bfeb4037481919be8a2cd1bf868d2-cyclonedx-generator-cdxgen
|
package/data/component-tags.json
CHANGED
|
@@ -119,8 +119,7 @@
|
|
|
119
119
|
"projections",
|
|
120
120
|
"performance",
|
|
121
121
|
"plugins",
|
|
122
|
-
"non-block"
|
|
123
|
-
"microsoft"
|
|
122
|
+
"non-block"
|
|
124
123
|
]
|
|
125
124
|
},
|
|
126
125
|
"properties": {
|
|
@@ -231,13 +230,24 @@
|
|
|
231
230
|
},
|
|
232
231
|
"name": {
|
|
233
232
|
"sbom": [
|
|
234
|
-
{ "test": ["(junit|xmlunit|testng|chai|mocha|jest|test4j)"] },
|
|
235
233
|
{
|
|
236
|
-
"
|
|
234
|
+
"test": [
|
|
235
|
+
"(junit|xmlunit|testng|mocha|jest|test4j|xunit|coverlet|Test\\.Sdk)",
|
|
236
|
+
"^(chai)$"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"security": [
|
|
241
|
+
"(boringssl|openssl|libressl|libssl|gnutls|jose|keyutils|Azure\\.Security|System\\.Security)"
|
|
242
|
+
]
|
|
237
243
|
},
|
|
238
244
|
{ "native": ["(ffi|native)"] },
|
|
239
245
|
{ "parse": ["(parser)"] },
|
|
240
|
-
{ "transform": ["(transformer)"] }
|
|
246
|
+
{ "transform": ["(transformer)"] },
|
|
247
|
+
{ "telemetry": ["(OpenTelemetry)"] },
|
|
248
|
+
{ "logging": ["(Microsoft\\.Extensions\\.Logging|Log4net)"] },
|
|
249
|
+
{ "ml": ["^(llama|langchain|openai)", "(generativeai)"] },
|
|
250
|
+
{ "devel": ["^(types-|typing-|virtualenv|ruff|poetry)"] }
|
|
241
251
|
],
|
|
242
252
|
"obom": [
|
|
243
253
|
{
|
|
@@ -3,7 +3,10 @@
|
|
|
3
3
|
"System.Web",
|
|
4
4
|
"System.ServiceModel",
|
|
5
5
|
"System.Data",
|
|
6
|
-
"
|
|
6
|
+
"Microsoft.AspNetCore",
|
|
7
|
+
"Microsoft.NETCore",
|
|
8
|
+
"springframework",
|
|
9
|
+
"pkg:maven/us.springett/alpine",
|
|
7
10
|
"pkg:pypi/flask",
|
|
8
11
|
"pkg:pypi/django",
|
|
9
12
|
"beego",
|
|
@@ -57,6 +60,9 @@
|
|
|
57
60
|
"pkg:pypi/botocore",
|
|
58
61
|
"pkg:pypi/boto3",
|
|
59
62
|
"pkg:pypi/azure",
|
|
63
|
+
"pkg:pypi/langchain",
|
|
64
|
+
"pkg:pypi/llama",
|
|
65
|
+
"pkg:pypi/sqlalchemy",
|
|
60
66
|
"vibora",
|
|
61
67
|
"koa",
|
|
62
68
|
"-sdk",
|