Skip to content

Commit

Permalink
Fix: Vulnerabilities typo.
Browse files Browse the repository at this point in the history
Signed-off-by: Caroline Russell <[email protected]>
  • Loading branch information
cerrussell committed Jul 31, 2024
1 parent 4c32dce commit 572dd84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_json_diff/custom_diff_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ def parse_bom_dict(data: Dict, options: "Options") -> Tuple[List, List, List, Li
if not options.comp_only:
services.extend(BomService(i, options) for i in data.get("services", []))
dependencies.extend(BomDependency(i, options) for i in data.get("dependencies", []))
vulnerabilities.extend(BomVdr(data=i, options=options) for i in data.get("vulnerabilties", []))
vulnerabilities.extend(BomVdr(data=i, options=options) for i in data.get("vulnerabilities", []))
for key, value in data.items():
if key not in {"components", "dependencies", "services", "vulnerabilities"}:
ele = FlatElement(key, value)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "custom-json-diff"
version = "1.5.3"
version = "1.5.4"
description = "Custom JSON and CycloneDx BOM diffing and comparison tool."
authors = [
{ name = "Caroline Russell", email = "[email protected]" },
Expand Down

0 comments on commit 572dd84

Please sign in to comment.