@arbidocs/cli 0.3.34 → 0.3.35
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 +4 -34
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,42 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## v0.3.
|
|
3
|
+
## v0.3.35
|
|
4
4
|
|
|
5
|
-
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.34...HEAD)
|
|
6
6
|
|
|
7
|
-
###
|
|
8
|
-
|
|
9
|
-
- Make frontend installable as a PWA ([#581](https://github.com/arbicity/ARBI-frontend/pull/581))
|
|
10
|
-
- **cli:** Add --s3 direct-to-MinIO upload flow ([#580](https://github.com/arbicity/ARBI-frontend/pull/580))
|
|
11
|
-
|
|
12
|
-
### 🔥 Performance
|
|
13
|
-
|
|
14
|
-
- Replace full document list refetches with incremental cache updates ([#587](https://github.com/arbicity/ARBI-frontend/pull/587))
|
|
15
|
-
- Replace full document list refetches with incremental cache updates " ([#587](https://github.com/arbicity/ARBI-frontend/pull/587))
|
|
16
|
-
|
|
17
|
-
### 🩹 Fixes
|
|
18
|
-
|
|
19
|
-
- **cli:** Update reprocess test to match new status line format ([#582](https://github.com/arbicity/ARBI-frontend/pull/582))
|
|
20
|
-
- Folder column truncation, tooltip, and related docs cache ([#590](https://github.com/arbicity/ARBI-frontend/pull/590))
|
|
21
|
-
- **cli:** Derive integration test SERVER_URL from DEPLOYMENT_DOMAIN ([#589](https://github.com/arbicity/ARBI-frontend/pull/589))
|
|
22
|
-
- **ci:** Probe API through nginx on the deployment domain ([e173b25a](https://github.com/arbicity/ARBI-frontend/commit/e173b25a))
|
|
23
|
-
- **ci:** Probe API through nginx in docker-deploy and e2e-tests ([#591](https://github.com/arbicity/ARBI-frontend/pull/591))
|
|
24
|
-
|
|
25
|
-
### 💅 Refactors
|
|
26
|
-
|
|
27
|
-
- **cli:** Reprocess status line — add timestamp, drop ETA ([#579](https://github.com/arbicity/ARBI-frontend/pull/579))
|
|
28
|
-
|
|
29
|
-
### ✅ Tests
|
|
30
|
-
|
|
31
|
-
- **cli:** Drop intermittent 'reprocess --status failed empty match' test ([#593](https://github.com/arbicity/ARBI-frontend/pull/593))
|
|
32
|
-
- **cli:** MakeUniquePdf returns a parser-valid PDF with unique bytes ([#594](https://github.com/arbicity/ARBI-frontend/pull/594))
|
|
33
|
-
|
|
34
|
-
### 🤖 CI
|
|
7
|
+
### 🏡 Chore
|
|
35
8
|
|
|
36
|
-
-
|
|
37
|
-
- Dual-push arbi-frontend to Docker Hub and local registry ([#585](https://github.com/arbicity/ARBI-frontend/pull/585))
|
|
38
|
-
- Temporarily disable CLI integration tests on the CI stack ([#595](https://github.com/arbicity/ARBI-frontend/pull/595))
|
|
39
|
-
- Temporarily disable SDK integration tests on the CI stack ([b639e734](https://github.com/arbicity/ARBI-frontend/commit/b639e734))
|
|
9
|
+
- Release v0.3.34 [skip ci] ([3310ce73](https://github.com/arbicity/ARBI-frontend/commit/3310ce73))
|
|
40
10
|
|
|
41
11
|
## v0.3.33
|
|
42
12
|
|
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.35";
|
|
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.35") 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.35"} \u2192 ${latest}). Updating...`);
|
|
3697
3697
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3698
|
-
showChangelog("0.3.
|
|
3698
|
+
showChangelog("0.3.35", 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.35"} \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.35") {
|
|
3714
3714
|
warn(
|
|
3715
|
-
`Your arbi version is out of date (${"0.3.
|
|
3715
|
+
`Your arbi version is out of date (${"0.3.35"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3716
3716
|
);
|
|
3717
3717
|
}
|
|
3718
3718
|
} catch {
|
|
@@ -8158,7 +8158,7 @@ console.info = (...args) => {
|
|
|
8158
8158
|
_origInfo(...args);
|
|
8159
8159
|
};
|
|
8160
8160
|
var program = new commander.Command();
|
|
8161
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
8161
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.35");
|
|
8162
8162
|
registerConfigCommand(program);
|
|
8163
8163
|
registerLoginCommand(program);
|
|
8164
8164
|
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.35",
|
|
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.35",
|
|
25
|
+
"@arbidocs/client": "0.3.35",
|
|
26
|
+
"@arbidocs/tui": "0.3.35",
|
|
27
27
|
"@inquirer/prompts": "^8.2.0",
|
|
28
28
|
"chalk": "^5.6.2",
|
|
29
29
|
"commander": "^13.1.0"
|