xtctx 0.14.8 → 0.15.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ 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.15.1](https://github.com/fstubner/xtctx/compare/xtctx-v0.15.0...xtctx-v0.15.1) (2026-08-23)
9
+
10
+
11
+ ### Tests
12
+
13
+ * **drift:** check the smoke fixtures against the real formats ([#144](https://github.com/fstubner/xtctx/issues/144)) ([5f155c5](https://github.com/fstubner/xtctx/commit/5f155c51b272e90f4a805639555146f243c03b1a))
14
+
15
+ ## [0.15.0](https://github.com/fstubner/xtctx/compare/xtctx-v0.14.8...xtctx-v0.15.0) (2026-08-23)
16
+
17
+
18
+ ### Features
19
+
20
+ * **ci:** typecheck the test tree ([#142](https://github.com/fstubner/xtctx/issues/142)) ([5afbb7b](https://github.com/fstubner/xtctx/commit/5afbb7b320336e105ec2dbfaf0a3c3e75edc2db0))
21
+
8
22
  ## [0.14.8](https://github.com/fstubner/xtctx/compare/xtctx-v0.14.7...xtctx-v0.14.8) (2026-08-23)
9
23
 
10
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xtctx",
3
- "version": "0.14.8",
3
+ "version": "0.15.1",
4
4
  "description": "Local cross-tool handoff for AI coding agents.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -30,11 +30,12 @@
30
30
  "landing:preview": "npm --prefix landing run preview",
31
31
  "prepack": "npm run build",
32
32
  "smoke:cli": "node dist/src/cli/index.js --help",
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 test:integration && npm run test:smoke && npm run test:eval && npm run build && npm pack --dry-run && npm run demo:public && npm run landing:build && npm run smoke:cli",
33
+ "verify:release": "npm run lint && npm run typecheck && npm test && npm run test:security && npm run security:checklist && npm audit --omit=dev && npm --prefix landing audit && npm run test:drift && npm run test:integration && npm run test:smoke && npm run test:eval && 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
35
  "test:smoke": "vitest run tests/smoke",
36
36
  "capture:formats": "node scripts/capture-format-fingerprint.mjs",
37
- "check:upstream": "node scripts/check-upstream-versions.mjs"
37
+ "check:upstream": "node scripts/check-upstream-versions.mjs",
38
+ "typecheck": "tsc --noEmit -p tsconfig.test.json"
38
39
  },
39
40
  "dependencies": {
40
41
  "@huggingface/transformers": "^4.2.0",