Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"main": "index.js",
"author": "JupiterOne <dev@jupiterone.io>",
"devDependencies": {
"@jupiterone/query-language-parser": "^4.5.0",
"@jupiterone/query-language-parser": "^6.3.20",

Copilot AI Feb 7, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR updates package.json but does not include an updated lockfile. If this repo commits a lockfile (e.g., package-lock.json / yarn.lock / pnpm-lock.yaml), it should be regenerated and committed in the same PR to keep installs reproducible in CI and for consumers.

Copilot uses AI. Check for mistakes.
"@types/node": "^20.11.13",
"euberlog": "^2.5.1",
"tsx": "^4.7.0",
Expand Down
2 changes: 1 addition & 1 deletion rule-packs/jupiterone-sbom.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"queries": [
{
"name": "query0",
"query": "FIND (CodeRepo|CodeModule) AS parent THAT CONTAINS AS rel CodeModule AS cm RETURN parent.displayName, cm,displayName, rel.version",
"query": "FIND (CodeRepo|CodeModule) AS parent THAT CONTAINS AS rel CodeModule AS cm RETURN parent.displayName, cm.displayName, rel.version",

Copilot AI Feb 7, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change fixes the malformed cm,displayName token, but it also removes cm from the RETURN list (previously it returned cm and a separate displayName token). If any downstream consumer expects the full cm entity/object in results, this will be a breaking behavioral change. Consider returning both (e.g., include cm alongside cm.displayName) or confirm that only cm.displayName is required.

Suggested change
"query": "FIND (CodeRepo|CodeModule) AS parent THAT CONTAINS AS rel CodeModule AS cm RETURN parent.displayName, cm.displayName, rel.version",
"query": "FIND (CodeRepo|CodeModule) AS parent THAT CONTAINS AS rel CodeModule AS cm RETURN parent.displayName, cm, cm.displayName, rel.version",

Copilot uses AI. Check for mistakes.
"version": "v1"
}
],
Expand Down