@7n/tauri-components 0.13.8 → 0.13.10
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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.13.10] - 2026-07-21
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- chore(deps): n-taze bump — 11 minor/patch (npm), 5 minor/patch (Rust)
|
|
8
|
+
|
|
9
|
+
## [0.13.9] - 2026-07-20
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- AgentDialog: дайджест контексту при перемиканні агента більше не називає конкретного попереднього агента ('CODEX · GPT-5.6 LUNA'), а лише узагальнено 'Агент' — прибирає ще одне джерело identity-плутанини на додачу до явної примітки
|
|
14
|
+
|
|
3
15
|
## [0.13.8] - 2026-07-20
|
|
4
16
|
|
|
5
17
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@7n/tauri-components",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Shared LLM agent engine + Vue/Quasar UI for Tauri apps (chat, journal, trust-tier approval).",
|
|
6
6
|
"license": "MIT",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"!**/fixtures/**"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"marked": "^18.0.
|
|
36
|
+
"marked": "^18.0.7"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@tauri-apps/api": "^2.0.0",
|
|
@@ -45,9 +45,15 @@
|
|
|
45
45
|
"vue": "^3.0.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependenciesMeta": {
|
|
48
|
-
"@tauri-apps/api": {
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
"@tauri-apps/api": {
|
|
49
|
+
"optional": true
|
|
50
|
+
},
|
|
51
|
+
"@tauri-apps/plugin-http": {
|
|
52
|
+
"optional": true
|
|
53
|
+
},
|
|
54
|
+
"quasar": {
|
|
55
|
+
"optional": true
|
|
56
|
+
}
|
|
51
57
|
},
|
|
52
58
|
"knip": {
|
|
53
59
|
"ignoreDependencies": [
|
|
@@ -60,12 +66,12 @@
|
|
|
60
66
|
},
|
|
61
67
|
"devDependencies": {
|
|
62
68
|
"@quasar/extras": "^2.0.2",
|
|
63
|
-
"@storybook/addon-vitest": "^10.5.
|
|
64
|
-
"@storybook/vue3-vite": "^10.5.
|
|
69
|
+
"@storybook/addon-vitest": "^10.5.3",
|
|
70
|
+
"@storybook/vue3-vite": "^10.5.3",
|
|
65
71
|
"@vitejs/plugin-vue": "^6.0.8",
|
|
66
72
|
"@vitest/browser": "^4.1.10",
|
|
67
73
|
"@vitest/browser-playwright": "^4.1.10",
|
|
68
74
|
"playwright": "^1.61.1",
|
|
69
|
-
"storybook": "^10.5.
|
|
75
|
+
"storybook": "^10.5.3"
|
|
70
76
|
}
|
|
71
77
|
}
|
|
@@ -161,10 +161,12 @@ function apply(outcome) {
|
|
|
161
161
|
function handoffContext() {
|
|
162
162
|
const relevant = turns.value.filter(turn => turn.role !== 'switch')
|
|
163
163
|
if (!relevant.length) return ''
|
|
164
|
+
// Deliberately generic "Агент" — not turn.agentLabel (e.g. "CODEX ·
|
|
165
|
+
// GPT-5.6 LUNA"): naming the prior model gives an identity-shaped string
|
|
166
|
+
// for the new one to latch onto and echo when asked who it is, on top of
|
|
167
|
+
// the disclaimer below.
|
|
164
168
|
const lines = relevant.map(turn =>
|
|
165
|
-
turn.role === 'user'
|
|
166
|
-
? `Користувач: ${turn.text}`
|
|
167
|
-
: `Попередній агент (${turn.agentLabel}): ${turn.result?.summary ?? turn.result?.question ?? ''}`
|
|
169
|
+
turn.role === 'user' ? `Користувач: ${turn.text}` : `Агент: ${turn.result?.summary ?? turn.result?.question ?? ''}`
|
|
168
170
|
)
|
|
169
171
|
// Models tend to latch onto identity-shaped text in context (e.g. a prior
|
|
170
172
|
// "Я — Codex…" line) and echo it as their own self-description when asked
|