@archpilotlabs/archpilot 0.2.8 → 0.2.9
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/CHANGELOG.md +22 -0
- package/dist/archpilot-cli.js +2199 -1425
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.9
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added structural finding classification so architecture violations, setup gaps, and guidance are represented explicitly instead of being inferred from finding message text.
|
|
8
|
+
- Added broader same-schema tenant discriminator support for `tenant_id`, organization, workspace, account, company, and customer-based discriminator conventions.
|
|
9
|
+
|
|
10
|
+
### Improved
|
|
11
|
+
|
|
12
|
+
- Improved validation performance on large multi-module repositories, significantly reducing analysis time for dependency-heavy projects.
|
|
13
|
+
- Improved production source-scope handling so persistence, infrastructure, adapter, and provider code is analyzed where applicable without weakening test, generated, frontend, migration, or tooling exclusions.
|
|
14
|
+
- Improved governance risk accuracy for cross-module dependency findings by distinguishing contract drift from stronger public-surface violations and transitive dependency cycles.
|
|
15
|
+
- Improved tenant isolation analysis so actual tenant predicate evidence is distinguished from tenant-like fields that are only selected or projected.
|
|
16
|
+
- Improved module and component resolution for governance risk and reporting by using structured architecture identities before legacy path-based fallbacks.
|
|
17
|
+
- Improved drift and reporting identity so finding classification and score deductions remain stable even when human-readable finding messages change.
|
|
18
|
+
|
|
19
|
+
### Notes
|
|
20
|
+
|
|
21
|
+
- Isolated `AP-DEP-004` contract drift no longer automatically results in critical governance risk. `AP-DEP-005` public-surface bypass and `AP-DEP-008` transitive dependency cycles retain stronger risk treatment.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
3
25
|
## 0.2.8
|
|
4
26
|
|
|
5
27
|
### Added
|