@arbidocs/cli 0.3.27 → 0.3.28
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 +34 -0
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.28
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.27...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Replace workspace accent bar with color-coded border ([15fcb4d5](https://github.com/arbicity/ARBI-frontend/commit/15fcb4d5))
|
|
10
|
+
- Make workspace accent border thicker ([6dfaf440](https://github.com/arbicity/ARBI-frontend/commit/6dfaf440))
|
|
11
|
+
- Redesign smart search interface for cleaner UX ([22dd5c36](https://github.com/arbicity/ARBI-frontend/commit/22dd5c36))
|
|
12
|
+
- Add view selector dropdown and consolidate tag management ([87736ea0](https://github.com/arbicity/ARBI-frontend/commit/87736ea0))
|
|
13
|
+
- Consolidate fields manager and improve view selector UX ([4e72995d](https://github.com/arbicity/ARBI-frontend/commit/4e72995d))
|
|
14
|
+
- Polish fields manager panel UI ([347db79a](https://github.com/arbicity/ARBI-frontend/commit/347db79a))
|
|
15
|
+
- Polish field editor, labels, and tab header UX ([40f66b97](https://github.com/arbicity/ARBI-frontend/commit/40f66b97))
|
|
16
|
+
- Labels nested in field editor, remove add button, tab header spacing ([afa6975b](https://github.com/arbicity/ARBI-frontend/commit/afa6975b))
|
|
17
|
+
- Tag metadata, missing fields, and creator attribution fix ([708a5ae5](https://github.com/arbicity/ARBI-frontend/commit/708a5ae5))
|
|
18
|
+
- Polish field editor, view dropdown, and card navigator UX ([78917f28](https://github.com/arbicity/ARBI-frontend/commit/78917f28))
|
|
19
|
+
- Split bulk tags into Labels popover and AI Review in field editor ([888e2e3f](https://github.com/arbicity/ARBI-frontend/commit/888e2e3f))
|
|
20
|
+
|
|
21
|
+
### 🩹 Fixes
|
|
22
|
+
|
|
23
|
+
- Update version hash and remove stale placeholderData ([64237e66](https://github.com/arbicity/ARBI-frontend/commit/64237e66))
|
|
24
|
+
- Remove tracked .claude/worktrees path breaking CI ([b70a1e83](https://github.com/arbicity/ARBI-frontend/commit/b70a1e83))
|
|
25
|
+
- Prevent grid rerender on document selection ([d6cb7637](https://github.com/arbicity/ARBI-frontend/commit/d6cb7637))
|
|
26
|
+
- Remove unused Plus import ([f95ae7df](https://github.com/arbicity/ARBI-frontend/commit/f95ae7df))
|
|
27
|
+
- Remove unused props from DocumentFieldRenderer ([3c033082](https://github.com/arbicity/ARBI-frontend/commit/3c033082))
|
|
28
|
+
- Update KeyValueRow tests to match refactored DOM structure ([e7890388](https://github.com/arbicity/ARBI-frontend/commit/e7890388))
|
|
29
|
+
|
|
30
|
+
### 💅 Refactors
|
|
31
|
+
|
|
32
|
+
- Slot-based panel system replacing boolean flags ([902c763b](https://github.com/arbicity/ARBI-frontend/commit/902c763b))
|
|
33
|
+
- Clean separation of view dropdown and field editor ([71d16095](https://github.com/arbicity/ARBI-frontend/commit/71d16095))
|
|
34
|
+
- Move field reorder and show/hide back to card navigator ([dc3ee3f8](https://github.com/arbicity/ARBI-frontend/commit/dc3ee3f8))
|
|
35
|
+
- Clean separation of card navigator (view) and field editor (CRUD) ([e641a6d1](https://github.com/arbicity/ARBI-frontend/commit/e641a6d1))
|
|
36
|
+
|
|
3
37
|
## v0.3.27
|
|
4
38
|
|
|
5
39
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.26...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.28";
|
|
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.28") 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.28"} \u2192 ${latest}). Updating...`);
|
|
3697
3697
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3698
|
-
showChangelog("0.3.
|
|
3698
|
+
showChangelog("0.3.28", 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.28"} \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.28") {
|
|
3714
3714
|
warn(
|
|
3715
|
-
`Your arbi version is out of date (${"0.3.
|
|
3715
|
+
`Your arbi version is out of date (${"0.3.28"} \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.28");
|
|
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.28",
|
|
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.28",
|
|
25
|
+
"@arbidocs/client": "0.3.28",
|
|
26
|
+
"@arbidocs/tui": "0.3.28",
|
|
27
27
|
"@inquirer/prompts": "^8.2.0",
|
|
28
28
|
"chalk": "^5.6.2",
|
|
29
29
|
"commander": "^13.1.0"
|