@arbidocs/cli 0.3.22 → 0.3.24
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 +27 -0
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.24
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.23...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🩹 Fixes
|
|
8
|
+
|
|
9
|
+
- Resolve floating panel popout state management issues ([43a0872b](https://github.com/arbicity/ARBI-frontend/commit/43a0872b))
|
|
10
|
+
- Increase citation number size for readability ([#534](https://github.com/arbicity/ARBI-frontend/pull/534))
|
|
11
|
+
- Start fresh conversation in CLI ask integration test ([#535](https://github.com/arbicity/ARBI-frontend/pull/535))
|
|
12
|
+
|
|
13
|
+
## v0.3.23
|
|
14
|
+
|
|
15
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.22...HEAD)
|
|
16
|
+
|
|
17
|
+
### 🚀 Enhancements
|
|
18
|
+
|
|
19
|
+
- Auto-select all documents when creating a new chat ([#526](https://github.com/arbicity/ARBI-frontend/pull/526))
|
|
20
|
+
|
|
21
|
+
### 🩹 Fixes
|
|
22
|
+
|
|
23
|
+
- Conversation tab switching improvements and new chat document selection ([#524](https://github.com/arbicity/ARBI-frontend/pull/524))
|
|
24
|
+
- Display detailed API error message when document export fails ([#519](https://github.com/arbicity/ARBI-frontend/pull/519))
|
|
25
|
+
- Include current user in smart search history "By" column ([#521](https://github.com/arbicity/ARBI-frontend/pull/521))
|
|
26
|
+
- Increase SDK integration test streaming timeout to 120s ([#528](https://github.com/arbicity/ARBI-frontend/pull/528))
|
|
27
|
+
- Increase CLI integration test streaming timeout to 120s ([#529](https://github.com/arbicity/ARBI-frontend/pull/529))
|
|
28
|
+
- Close Smart Search panel when navigating to another page ([#531](https://github.com/arbicity/ARBI-frontend/pull/531))
|
|
29
|
+
|
|
3
30
|
## v0.3.22
|
|
4
31
|
|
|
5
32
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.21...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.24";
|
|
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.24") 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.24"} \u2192 ${latest}). Updating...`);
|
|
3697
3697
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3698
|
-
showChangelog("0.3.
|
|
3698
|
+
showChangelog("0.3.24", 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.24"} \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.24") {
|
|
3714
3714
|
warn(
|
|
3715
|
-
`Your arbi version is out of date (${"0.3.
|
|
3715
|
+
`Your arbi version is out of date (${"0.3.24"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3716
3716
|
);
|
|
3717
3717
|
}
|
|
3718
3718
|
} catch {
|
|
@@ -7031,7 +7031,7 @@ console.info = (...args) => {
|
|
|
7031
7031
|
_origInfo(...args);
|
|
7032
7032
|
};
|
|
7033
7033
|
var program = new commander.Command();
|
|
7034
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
7034
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.24");
|
|
7035
7035
|
registerConfigCommand(program);
|
|
7036
7036
|
registerLoginCommand(program);
|
|
7037
7037
|
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.24",
|
|
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": {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"preuninstall": "node scripts/preuninstall.js"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@arbidocs/sdk": "0.3.
|
|
24
|
-
"@arbidocs/client": "0.3.
|
|
25
|
-
"@arbidocs/tui": "0.3.
|
|
23
|
+
"@arbidocs/sdk": "0.3.24",
|
|
24
|
+
"@arbidocs/client": "0.3.24",
|
|
25
|
+
"@arbidocs/tui": "0.3.24",
|
|
26
26
|
"@inquirer/prompts": "^8.2.0",
|
|
27
27
|
"chalk": "^5.6.2",
|
|
28
28
|
"commander": "^13.1.0"
|