@arbidocs/cli 0.3.9 → 0.3.11
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 +19 -5
- package/dist/index.js +262 -162
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## v0.3.
|
|
3
|
+
## v0.3.11
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.10...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- Extract conversation documents from last user message instead of leaf ([#434](https://github.com/arbicity/ARBI-frontend/pull/434))
|
|
10
|
+
- Extract metadata from response.completed SSE event ([#435](https://github.com/arbicity/ARBI-frontend/pull/435))
|
|
11
|
+
|
|
12
|
+
## v0.3.10
|
|
4
13
|
|
|
5
14
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.8...HEAD)
|
|
6
15
|
|
|
@@ -14,6 +23,15 @@
|
|
|
14
23
|
- Bypass version cache on explicit arbi update ([570d013d](https://github.com/arbicity/ARBI-frontend/commit/570d013d))
|
|
15
24
|
- Update GitHub org references from arbitrationcity to arbicity ([#393](https://github.com/arbicity/ARBI-frontend/pull/393))
|
|
16
25
|
- Update E2E health check URL from /api/ to /v1/ ([51308e65](https://github.com/arbicity/ARBI-frontend/commit/51308e65))
|
|
26
|
+
- Use PAT_PUBLISH for npm publish push ([#408](https://github.com/arbicity/ARBI-frontend/pull/408))
|
|
27
|
+
- Clear stale chat session on login, logout, and workspace switch ([#411](https://github.com/arbicity/ARBI-frontend/pull/411))
|
|
28
|
+
- Make user input request component more legible ([#414](https://github.com/arbicity/ARBI-frontend/pull/414))
|
|
29
|
+
- Use workspace-scoped client for TUI document and conversation calls ([#416](https://github.com/arbicity/ARBI-frontend/pull/416))
|
|
30
|
+
- Memoize WS message handlers to prevent duplicate notifications ([46a698ee](https://github.com/arbicity/ARBI-frontend/commit/46a698ee))
|
|
31
|
+
- Don't set parentMessageId during stream_start to prevent stale parent on retry ([5922c414](https://github.com/arbicity/ARBI-frontend/commit/5922c414))
|
|
32
|
+
- Remove redundant workspace switch notification ([3e97c574](https://github.com/arbicity/ARBI-frontend/commit/3e97c574))
|
|
33
|
+
- Remove redundant workspace switch notification" ([f439dcf8](https://github.com/arbicity/ARBI-frontend/commit/f439dcf8))
|
|
34
|
+
- Remove workspace switch confirmation dialog from deep linking ([2cdf7bd0](https://github.com/arbicity/ARBI-frontend/commit/2cdf7bd0))
|
|
17
35
|
|
|
18
36
|
### 🏡 Chore
|
|
19
37
|
|
|
@@ -22,10 +40,6 @@
|
|
|
22
40
|
- Release v0.3.7 ([a8f1156f](https://github.com/arbicity/ARBI-frontend/commit/a8f1156f))
|
|
23
41
|
- Release v0.3.8 ([2863a411](https://github.com/arbicity/ARBI-frontend/commit/2863a411))
|
|
24
42
|
|
|
25
|
-
### ❤️ Contributors
|
|
26
|
-
|
|
27
|
-
- Dmitri Evseev ([@arbi-dev](https://github.com/arbi-dev))
|
|
28
|
-
|
|
29
43
|
## v0.3.8
|
|
30
44
|
|
|
31
45
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.7...HEAD)
|