@arbidocs/cli 0.3.18 → 0.3.19
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 +32 -0
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.19
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.18...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- Serve Word add-in manifest dynamically per deployment ([c9fcfbf3](https://github.com/arbicity/ARBI-frontend/commit/c9fcfbf3))
|
|
10
|
+
- Add popout support to FloatingPanel ([123c4ad8](https://github.com/arbicity/ARBI-frontend/commit/123c4ad8))
|
|
11
|
+
- Add token display, refactor agent steps, and update SDK exports ([4e7f26c9](https://github.com/arbicity/ARBI-frontend/commit/4e7f26c9))
|
|
12
|
+
|
|
13
|
+
### 🩹 Fixes
|
|
14
|
+
|
|
15
|
+
- Zero-pad month in manifest version to avoid ambiguity ([83d64b59](https://github.com/arbicity/ARBI-frontend/commit/83d64b59))
|
|
16
|
+
- Derive manifest patch version from git hash ([a598df12](https://github.com/arbicity/ARBI-frontend/commit/a598df12))
|
|
17
|
+
- Use HHMM for manifest patch version to ensure incrementing ([db4f2add](https://github.com/arbicity/ARBI-frontend/commit/db4f2add))
|
|
18
|
+
- Compute manifest version at Docker build time, not container start ([b0b6541a](https://github.com/arbicity/ARBI-frontend/commit/b0b6541a))
|
|
19
|
+
- **docker:** Pre-create word manifest directory at build time ([26cc8719](https://github.com/arbicity/ARBI-frontend/commit/26cc8719))
|
|
20
|
+
- **docker:** Create word directory in build stage instead of at runtime ([5acacac8](https://github.com/arbicity/ARBI-frontend/commit/5acacac8))
|
|
21
|
+
- **docker:** Remove runtime mkdir from entrypoint ([a307f6db](https://github.com/arbicity/ARBI-frontend/commit/a307f6db))
|
|
22
|
+
- **docker:** Copy manifest template into word/ directory directly ([9f9c338b](https://github.com/arbicity/ARBI-frontend/commit/9f9c338b))
|
|
23
|
+
- Always proxy /v1 and /api in dev, default to localhost ([4060ac2b](https://github.com/arbicity/ARBI-frontend/commit/4060ac2b))
|
|
24
|
+
- Make citation badge width dynamic and use outlined style ([c67ac61a](https://github.com/arbicity/ARBI-frontend/commit/c67ac61a))
|
|
25
|
+
- Restore Dashboard layout when no panel is docked ([dbc9cebf](https://github.com/arbicity/ARBI-frontend/commit/dbc9cebf))
|
|
26
|
+
- Improve panel docking, mode switching, and header layout ([d9ccbe70](https://github.com/arbicity/ARBI-frontend/commit/d9ccbe70))
|
|
27
|
+
- Make floating panel headers draggable without blocking interactive elements ([7b8ee494](https://github.com/arbicity/ARBI-frontend/commit/7b8ee494))
|
|
28
|
+
- Remove citation toggle-close and clear highlights on viewer close ([6e4b6ac7](https://github.com/arbicity/ARBI-frontend/commit/6e4b6ac7))
|
|
29
|
+
|
|
30
|
+
### 💅 Refactors
|
|
31
|
+
|
|
32
|
+
- Migrate DocTagPopover and DirectMessageModal to FloatingPanel ([ac459eab](https://github.com/arbicity/ARBI-frontend/commit/ac459eab))
|
|
33
|
+
- Decompose FloatingPanel into PanelPortal, PanelModeSwitcher, and DockZone ([ee7c7a81](https://github.com/arbicity/ARBI-frontend/commit/ee7c7a81))
|
|
34
|
+
|
|
3
35
|
## v0.3.18
|
|
4
36
|
|
|
5
37
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.17...HEAD)
|
package/dist/index.js
CHANGED
|
@@ -3636,7 +3636,7 @@ function getLatestVersion(skipCache = false) {
|
|
|
3636
3636
|
}
|
|
3637
3637
|
}
|
|
3638
3638
|
function getCurrentVersion() {
|
|
3639
|
-
return "0.3.
|
|
3639
|
+
return "0.3.19";
|
|
3640
3640
|
}
|
|
3641
3641
|
function readChangelog(fromVersion, toVersion) {
|
|
3642
3642
|
try {
|
|
@@ -3689,17 +3689,17 @@ function showChangelog(fromVersion, toVersion) {
|
|
|
3689
3689
|
async function checkForUpdates(autoUpdate) {
|
|
3690
3690
|
try {
|
|
3691
3691
|
const latest = getLatestVersion();
|
|
3692
|
-
if (!latest || latest === "0.3.
|
|
3692
|
+
if (!latest || latest === "0.3.19") return;
|
|
3693
3693
|
if (autoUpdate) {
|
|
3694
3694
|
warn(`
|
|
3695
|
-
Your arbi version is out of date (${"0.3.
|
|
3695
|
+
Your arbi version is out of date (${"0.3.19"} \u2192 ${latest}). Updating...`);
|
|
3696
3696
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3697
|
-
showChangelog("0.3.
|
|
3697
|
+
showChangelog("0.3.19", latest);
|
|
3698
3698
|
console.log(`Updated to ${latest}.`);
|
|
3699
3699
|
} else {
|
|
3700
3700
|
warn(
|
|
3701
3701
|
`
|
|
3702
|
-
Your arbi version is out of date (${"0.3.
|
|
3702
|
+
Your arbi version is out of date (${"0.3.19"} \u2192 ${latest}).
|
|
3703
3703
|
Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
3704
3704
|
);
|
|
3705
3705
|
}
|
|
@@ -3709,9 +3709,9 @@ Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
|
3709
3709
|
function hintUpdateOnError() {
|
|
3710
3710
|
try {
|
|
3711
3711
|
const cached = readCache();
|
|
3712
|
-
if (cached && cached.latest !== "0.3.
|
|
3712
|
+
if (cached && cached.latest !== "0.3.19") {
|
|
3713
3713
|
warn(
|
|
3714
|
-
`Your arbi version is out of date (${"0.3.
|
|
3714
|
+
`Your arbi version is out of date (${"0.3.19"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3715
3715
|
);
|
|
3716
3716
|
}
|
|
3717
3717
|
} catch {
|
|
@@ -6352,7 +6352,7 @@ console.info = (...args) => {
|
|
|
6352
6352
|
_origInfo(...args);
|
|
6353
6353
|
};
|
|
6354
6354
|
var program = new commander.Command();
|
|
6355
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
6355
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.19");
|
|
6356
6356
|
registerConfigCommand(program);
|
|
6357
6357
|
registerLoginCommand(program);
|
|
6358
6358
|
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.19",
|
|
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": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"preuninstall": "node scripts/preuninstall.js"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@arbidocs/sdk": "0.3.
|
|
23
|
-
"@arbidocs/client": "0.3.
|
|
24
|
-
"@arbidocs/tui": "0.3.
|
|
22
|
+
"@arbidocs/sdk": "0.3.19",
|
|
23
|
+
"@arbidocs/client": "0.3.19",
|
|
24
|
+
"@arbidocs/tui": "0.3.19",
|
|
25
25
|
"@inquirer/prompts": "^8.2.0",
|
|
26
26
|
"chalk": "^5.6.2",
|
|
27
27
|
"commander": "^13.1.0"
|