@arbidocs/cli 0.3.26 → 0.3.27
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 +31 -0
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.27
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.26...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Sidebar navigation improvements — workspaces top, Members item, pin action ([80506914](https://github.com/arbicity/ARBI-frontend/commit/80506914))
|
|
10
|
+
- Label tag pills with X in document cell, instant checkbox toggles in editor ([fdc53ca8](https://github.com/arbicity/ARBI-frontend/commit/fdc53ca8))
|
|
11
|
+
- New panel UX — main mode by default, dock-right button, sidebar click brings back to main ([583d08de](https://github.com/arbicity/ARBI-frontend/commit/583d08de))
|
|
12
|
+
- Redline comparison, similarity filter, panel mode fixes, user guide ([8b548ded](https://github.com/arbicity/ARBI-frontend/commit/8b548ded))
|
|
13
|
+
- Add User Guide tab to FeedbackPanel with version badge ([749d4bc0](https://github.com/arbicity/ARBI-frontend/commit/749d4bc0))
|
|
14
|
+
- Add hybrid/semantic/keyword search mode toggle to SmartSearch ([e4d9c704](https://github.com/arbicity/ARBI-frontend/commit/e4d9c704))
|
|
15
|
+
- Replace TagEditorModal with TagEditorPanel FloatingPanel ([ae7fb82b](https://github.com/arbicity/ARBI-frontend/commit/ae7fb82b))
|
|
16
|
+
- ComparePanel with table-aware redline diff ([9ae1a3fd](https://github.com/arbicity/ARBI-frontend/commit/9ae1a3fd))
|
|
17
|
+
|
|
18
|
+
### 🩹 Fixes
|
|
19
|
+
|
|
20
|
+
- Close tag editor modal on successful creation, use logger in TagEditor ([c5a5583a](https://github.com/arbicity/ARBI-frontend/commit/c5a5583a))
|
|
21
|
+
- Simplify AI generation confirm dialog — simple message with collapsible details matrix ([13eee3d8](https://github.com/arbicity/ARBI-frontend/commit/13eee3d8))
|
|
22
|
+
- Patch docs to analysing on AI generation start, invalidate docs on batch complete ([ca9e9a20](https://github.com/arbicity/ARBI-frontend/commit/ca9e9a20))
|
|
23
|
+
- Sidebar panels are mutually exclusive — opening one closes all others ([59ed9d3c](https://github.com/arbicity/ARBI-frontend/commit/59ed9d3c))
|
|
24
|
+
- Use ToggleGroup for search mode, order keyword/hybrid/semantic ([ff8370be](https://github.com/arbicity/ARBI-frontend/commit/ff8370be))
|
|
25
|
+
- Replace left accent bar with faint background tint on search hits ([f4d6166f](https://github.com/arbicity/ARBI-frontend/commit/f4d6166f))
|
|
26
|
+
- Add diff and rehype-slug as explicit deps, fix implicit any types ([23f09901](https://github.com/arbicity/ARBI-frontend/commit/23f09901))
|
|
27
|
+
- Format files and remove unused changedCount variable ([94054760](https://github.com/arbicity/ARBI-frontend/commit/94054760))
|
|
28
|
+
|
|
29
|
+
### 💅 Refactors
|
|
30
|
+
|
|
31
|
+
- Remove unused DocTagPopover (duplicate of DocTagEditor) ([6e5ae16a](https://github.com/arbicity/ARBI-frontend/commit/6e5ae16a))
|
|
32
|
+
- Remove floating panel mode, convert DocTagEditor to Popover ([5aacd016](https://github.com/arbicity/ARBI-frontend/commit/5aacd016))
|
|
33
|
+
|
|
3
34
|
## v0.3.26
|
|
4
35
|
|
|
5
36
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.25...HEAD)
|
package/dist/index.js
CHANGED
|
@@ -3637,7 +3637,7 @@ function getLatestVersion(skipCache = false) {
|
|
|
3637
3637
|
}
|
|
3638
3638
|
}
|
|
3639
3639
|
function getCurrentVersion() {
|
|
3640
|
-
return "0.3.
|
|
3640
|
+
return "0.3.27";
|
|
3641
3641
|
}
|
|
3642
3642
|
function readChangelog(fromVersion, toVersion) {
|
|
3643
3643
|
try {
|
|
@@ -3690,17 +3690,17 @@ function showChangelog(fromVersion, toVersion) {
|
|
|
3690
3690
|
async function checkForUpdates(autoUpdate) {
|
|
3691
3691
|
try {
|
|
3692
3692
|
const latest = getLatestVersion();
|
|
3693
|
-
if (!latest || latest === "0.3.
|
|
3693
|
+
if (!latest || latest === "0.3.27") return;
|
|
3694
3694
|
if (autoUpdate) {
|
|
3695
3695
|
warn(`
|
|
3696
|
-
Your arbi version is out of date (${"0.3.
|
|
3696
|
+
Your arbi version is out of date (${"0.3.27"} \u2192 ${latest}). Updating...`);
|
|
3697
3697
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3698
|
-
showChangelog("0.3.
|
|
3698
|
+
showChangelog("0.3.27", latest);
|
|
3699
3699
|
console.log(`Updated to ${latest}.`);
|
|
3700
3700
|
} else {
|
|
3701
3701
|
warn(
|
|
3702
3702
|
`
|
|
3703
|
-
Your arbi version is out of date (${"0.3.
|
|
3703
|
+
Your arbi version is out of date (${"0.3.27"} \u2192 ${latest}).
|
|
3704
3704
|
Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
3705
3705
|
);
|
|
3706
3706
|
}
|
|
@@ -3710,9 +3710,9 @@ Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
|
3710
3710
|
function hintUpdateOnError() {
|
|
3711
3711
|
try {
|
|
3712
3712
|
const cached = readCache();
|
|
3713
|
-
if (cached && cached.latest !== "0.3.
|
|
3713
|
+
if (cached && cached.latest !== "0.3.27") {
|
|
3714
3714
|
warn(
|
|
3715
|
-
`Your arbi version is out of date (${"0.3.
|
|
3715
|
+
`Your arbi version is out of date (${"0.3.27"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3716
3716
|
);
|
|
3717
3717
|
}
|
|
3718
3718
|
} catch {
|
|
@@ -6877,7 +6877,7 @@ console.info = (...args) => {
|
|
|
6877
6877
|
_origInfo(...args);
|
|
6878
6878
|
};
|
|
6879
6879
|
var program = new commander.Command();
|
|
6880
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
6880
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.27");
|
|
6881
6881
|
registerConfigCommand(program);
|
|
6882
6882
|
registerLoginCommand(program);
|
|
6883
6883
|
registerRegisterCommand(program);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arbidocs/cli",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.27",
|
|
4
4
|
"description": "CLI tool for interacting with ARBI — login, manage workspaces, upload documents, query the RAG assistant",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"preuninstall": "node scripts/preuninstall.js"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@arbidocs/sdk": "0.3.
|
|
25
|
-
"@arbidocs/client": "0.3.
|
|
26
|
-
"@arbidocs/tui": "0.3.
|
|
24
|
+
"@arbidocs/sdk": "0.3.27",
|
|
25
|
+
"@arbidocs/client": "0.3.27",
|
|
26
|
+
"@arbidocs/tui": "0.3.27",
|
|
27
27
|
"@inquirer/prompts": "^8.2.0",
|
|
28
28
|
"chalk": "^5.6.2",
|
|
29
29
|
"commander": "^13.1.0"
|