xtctx 0.11.7 → 0.12.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 +8 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,14 @@ All notable changes to this project are documented in this file.
|
|
|
5
5
|
The format is based on Keep a Changelog, and this project follows Semantic Versioning.
|
|
6
6
|
This file is maintained automatically by Release Please.
|
|
7
7
|
|
|
8
|
+
## [0.12.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.7...xtctx-v0.12.0) (2026-08-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **drift:** watch upstream releases and fingerprint real formats, without API spend ([f6bc848](https://github.com/fstubner/xtctx/commit/f6bc848d8ad6d9842c4ce427bf7eef4f9230d6f9))
|
|
14
|
+
* **drift:** watch upstream releases and fingerprint real formats, without API spend ([994d111](https://github.com/fstubner/xtctx/commit/994d111e387374b7305add28ff8044da016a9dad))
|
|
15
|
+
|
|
8
16
|
## [0.11.7](https://github.com/fstubner/xtctx/compare/xtctx-v0.11.6...xtctx-v0.11.7) (2026-08-20)
|
|
9
17
|
|
|
10
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xtctx",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "Local cross-tool handoff for AI coding agents.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,7 +32,9 @@
|
|
|
32
32
|
"smoke:cli": "node dist/src/cli/index.js --help",
|
|
33
33
|
"verify:release": "npm run lint && npm test && npm run test:security && npm run security:checklist && npm audit --omit=dev && npm --prefix landing audit && npm run test:drift && npm run build && npm pack --dry-run && npm run demo:public && npm run landing:build && npm run smoke:cli",
|
|
34
34
|
"test:eval": "vitest run tests/eval",
|
|
35
|
-
"test:smoke": "vitest run tests/smoke"
|
|
35
|
+
"test:smoke": "vitest run tests/smoke",
|
|
36
|
+
"capture:formats": "node scripts/capture-format-fingerprint.mjs",
|
|
37
|
+
"check:upstream": "node scripts/check-upstream-versions.mjs"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
40
|
"@huggingface/transformers": "^4.2.0",
|