artifact-graph 0.9.4 → 0.10.0
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 +21 -0
- package/dist/cli.js +1071 -75
- package/dist/index.cjs +351 -60
- package/dist/index.d.cts +32 -0
- package/dist/index.d.ts +32 -0
- package/dist/index.js +331 -41
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.10.0
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Added transactional `refactor-id` support for renaming artifact identifiers across configured
|
|
8
|
+
artifacts, source annotations, and tests. The command reports version-lock impact without
|
|
9
|
+
changing the lock, preserves unrelated bytes and file modes, detects conflicts before writing,
|
|
10
|
+
and rolls back the whole transaction if a write fails.
|
|
11
|
+
- Added structured native-binding diagnostics for the CLI and Node library, including the selected
|
|
12
|
+
installation, probe source, failure stage, stable cause, and actionable remediation.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- `doctor`, `scan`, and `query` now classify `better-sqlite3` failures against the installation
|
|
17
|
+
that actually provides the running CLI. A target project's dependencies can no longer change
|
|
18
|
+
`MISSING`, `BUILD_DISABLED`, ABI mismatch, or load-error classification.
|
|
19
|
+
- CommonJS `require`, ESM import, and packed CLI use are covered by the release consumer matrix and
|
|
20
|
+
remain loadable when lifecycle scripts are disabled. SQLite-dependent `doctor`, `scan`, and
|
|
21
|
+
`query` operations then fail with the documented structured diagnostic instead of an unrelated
|
|
22
|
+
loader error.
|
|
23
|
+
|
|
3
24
|
## 0.9.4
|
|
4
25
|
|
|
5
26
|
### Changed
|