@theokit/tauri 1.0.0-next.0 → 1.0.0-next.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.
- package/CHANGELOG.md +23 -0
- package/package.json +15 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Changelog — @theokit/tauri
|
|
2
2
|
|
|
3
|
+
## 1.0.0-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 3162888: **Released because its peer requirement moved, not because this package changed.**
|
|
8
|
+
|
|
9
|
+
Nothing inside `@theokit/tauri` changed in this release. It ships because `theokit` moved and this
|
|
10
|
+
package peers it, so the peer range it declares moved with it — from the 0.64 line to
|
|
11
|
+
`>=0.65.0-next.0`. For a consumer that is a real, breaking difference even though no code here
|
|
12
|
+
differs: a project pinned to `theokit@0.64.x` cannot install this version.
|
|
13
|
+
|
|
14
|
+
The version number says the same thing less clearly. A peer range that excludes versions it used to
|
|
15
|
+
admit is a breaking change to whoever installs it, which is why the bump is a major rather than a
|
|
16
|
+
patch — the code is untouched and the contract is not.
|
|
17
|
+
|
|
18
|
+
**What to do:** upgrade `theokit` to `>=0.65.0` alongside this package, or stay on the previous
|
|
19
|
+
`@theokit/tauri` while you stay on the 0.64 line. Nothing else about the Tauri glue — the
|
|
20
|
+
Channel/invoke transport, the JSONL sidecar — behaves differently.
|
|
21
|
+
|
|
22
|
+
This entry exists because the release would otherwise carry an empty section
|
|
23
|
+
([#653](https://github.com/usetheokit/theokit/issues/653)), and an empty section is
|
|
24
|
+
indistinguishable from "nothing user-visible changed" — a claim nobody made about a major bump.
|
|
25
|
+
|
|
3
26
|
## 1.0.0-next.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/tauri",
|
|
3
|
-
"version": "1.0.0-next.
|
|
3
|
+
"version": "1.0.0-next.1",
|
|
4
4
|
"description": "Tauri desktop glue for TheoKit agents — the Channel/invoke transport source (webview) + the JSONL sidecar (node), over the unified client. UI is @theokit/ui; the runtime is @theokit/sdk.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"./sidecar": {
|
|
23
23
|
"types": "./dist/sidecar.d.ts",
|
|
24
24
|
"import": "./dist/sidecar.js"
|
|
25
|
-
}
|
|
25
|
+
},
|
|
26
|
+
"./package.json": "./package.json"
|
|
26
27
|
},
|
|
27
28
|
"files": [
|
|
28
29
|
"dist",
|
|
@@ -38,8 +39,8 @@
|
|
|
38
39
|
}
|
|
39
40
|
},
|
|
40
41
|
"devDependencies": {
|
|
41
|
-
"theokit": "0.
|
|
42
|
-
"
|
|
42
|
+
"@theokit/presenter": "0.9.0-next.0",
|
|
43
|
+
"theokit": "0.65.0-next.2"
|
|
43
44
|
},
|
|
44
45
|
"publishConfig": {
|
|
45
46
|
"provenance": true,
|
|
@@ -48,6 +49,16 @@
|
|
|
48
49
|
"engines": {
|
|
49
50
|
"node": ">=22.12.0"
|
|
50
51
|
},
|
|
52
|
+
"keywords": [
|
|
53
|
+
"theokit",
|
|
54
|
+
"tauri",
|
|
55
|
+
"desktop",
|
|
56
|
+
"glue",
|
|
57
|
+
"agents",
|
|
58
|
+
"channel",
|
|
59
|
+
"invoke",
|
|
60
|
+
"transport"
|
|
61
|
+
],
|
|
51
62
|
"scripts": {
|
|
52
63
|
"build": "tsup",
|
|
53
64
|
"test": "vitest run",
|