@theokit/sdk-budget 0.3.0 → 0.3.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 +9 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog — @theokit/sdk-budget
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 453ad2d: SE43 — system-design audit fixes (public-surface changes).
8
+
9
+ - **`@theokit/sdk` (minor):** the shared persistence kernel is now reachable from the sanctioned public `@theokit/sdk/persistence` barrel — `withCwdMutex`, `sanitizeFts5Query`, and `PersistenceSchema` are added (joining `replaceFileAtomic` / `openSqliteResilient` / `atomicWriteText` / `atomicWriteJson`). The `@theokit/sdk/internal/persistence` export is now **deprecated**: it re-exports its full surface unchanged for one release (back-compat) and is scheduled for removal in a future major. No breaking change; existing imports keep working.
10
+ - **Satellites (patch):** `sdk-tools` / `sdk-memory` / `sdk-cache` / `sdk-handoff` / `sdk-budget` tightened their `@theokit/sdk` peer-range floor from `>=1.7.0` to `>=4.0.0`, matching the v4-only surfaces they import (prevents a non-workspace install resolving an incompatible old sdk).
11
+
3
12
  ## 0.3.0
4
13
 
5
14
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theokit/sdk-budget",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "USD-cost-aware BudgetTracker impls for @theokit/sdk — extends the counter-based reference with per-model pricing. Consumes the kernel-facing BudgetTracker port from sdk-core.",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://github.com/usetheo/theokit-sdk#readme",
@@ -37,21 +37,21 @@
37
37
  "CHANGELOG.md",
38
38
  "LICENSE"
39
39
  ],
40
- "scripts": {
41
- "build": "tsup",
42
- "test": "vitest run",
43
- "typecheck": "tsc --noEmit"
44
- },
45
40
  "peerDependencies": {
46
- "@theokit/sdk": ">=1.7.0"
41
+ "@theokit/sdk": ">=4.0.0"
47
42
  },
48
43
  "devDependencies": {
49
44
  "tsup": "^8.3.5",
50
45
  "typescript": "^5.7.2",
51
46
  "vitest": "^4.1.8",
52
- "@theokit/sdk": "workspace:*"
47
+ "@theokit/sdk": "4.2.0"
53
48
  },
54
49
  "publishConfig": {
55
50
  "access": "public"
51
+ },
52
+ "scripts": {
53
+ "build": "tsup",
54
+ "test": "vitest run",
55
+ "typecheck": "tsc --noEmit"
56
56
  }
57
- }
57
+ }