@codyswann/lisa 1.43.1 → 1.43.2
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/package.json
CHANGED
|
@@ -90,8 +90,12 @@
|
|
|
90
90
|
"@isaacs/brace-expansion": "^5.0.1",
|
|
91
91
|
"axios": ">=1.13.5"
|
|
92
92
|
},
|
|
93
|
+
"overrides": {
|
|
94
|
+
"@isaacs/brace-expansion": "^5.0.1",
|
|
95
|
+
"axios": ">=1.13.5"
|
|
96
|
+
},
|
|
93
97
|
"name": "@codyswann/lisa",
|
|
94
|
-
"version": "1.43.
|
|
98
|
+
"version": "1.43.2",
|
|
95
99
|
"description": "Claude Code governance framework that applies guardrails, guidance, and automated enforcement to projects",
|
|
96
100
|
"main": "dist/index.js",
|
|
97
101
|
"bin": {
|
|
@@ -119,7 +123,7 @@
|
|
|
119
123
|
"commander": "^12.0.0",
|
|
120
124
|
"fs-extra": "^11.0.0",
|
|
121
125
|
"lodash.merge": "^4.6.2",
|
|
122
|
-
"minimatch": "^10.
|
|
126
|
+
"minimatch": "^10.2.1",
|
|
123
127
|
"picocolors": "^1.0.0"
|
|
124
128
|
},
|
|
125
129
|
"type": "module"
|
|
@@ -85,7 +85,13 @@ elif [ "$PACKAGE_MANAGER" = "bun" ]; then
|
|
|
85
85
|
# Parent packages pin ^4.4.1; fix requires major version 5.x (incompatible)
|
|
86
86
|
# Risk: None - CLI build tool, not a production runtime dependency
|
|
87
87
|
|
|
88
|
-
|
|
88
|
+
# Excluding GHSA-3ppc-4f35-3m26: minimatch ReDoS via repeated wildcards
|
|
89
|
+
# Transitive dependency in devDependencies (eslint, jest, nodemon, ts-morph, etc.)
|
|
90
|
+
# Fix requires minimatch v10 which changes export shape (object vs function),
|
|
91
|
+
# breaking test-exclude (used by Jest coverage). No production code path is affected.
|
|
92
|
+
# Risk: None - only devDependency tooling, never processes untrusted user input
|
|
93
|
+
|
|
94
|
+
if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh --ignore GHSA-3ppc-4f35-3m26; then
|
|
89
95
|
echo "⚠️ Security audit failed. Please fix high/critical vulnerabilities before pushing."
|
|
90
96
|
exit 1
|
|
91
97
|
fi
|
|
@@ -1015,7 +1015,13 @@ jobs:
|
|
|
1015
1015
|
# Parent packages pin ^4.4.1; fix requires major version 5.x (incompatible)
|
|
1016
1016
|
# Risk: None - CLI build tool, not a production runtime dependency
|
|
1017
1017
|
|
|
1018
|
-
|
|
1018
|
+
# Excluding GHSA-3ppc-4f35-3m26: minimatch ReDoS via repeated wildcards
|
|
1019
|
+
# Transitive dependency in devDependencies (eslint, jest, nodemon, ts-morph, etc.)
|
|
1020
|
+
# Fix requires minimatch v10 which changes export shape (object vs function),
|
|
1021
|
+
# breaking test-exclude (used by Jest coverage). No production code path is affected.
|
|
1022
|
+
# Risk: None - only devDependency tooling, never processes untrusted user input
|
|
1023
|
+
|
|
1024
|
+
if ! bun audit --audit-level=high --ignore GHSA-5j98-mcp5-4vw2 --ignore GHSA-8qq5-rm4j-mr97 --ignore GHSA-37qj-frw5-hhjh --ignore GHSA-3ppc-4f35-3m26; then
|
|
1019
1025
|
echo "::warning::Found high or critical vulnerabilities"
|
|
1020
1026
|
exit 1
|
|
1021
1027
|
fi
|