@arbidocs/cli 0.3.120 → 0.3.121
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 +29 -0
- package/dist/index.js +8 -8
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.3.121
|
|
4
|
+
|
|
5
|
+
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.120...HEAD)
|
|
6
|
+
|
|
7
|
+
### 🚀 Enhancements
|
|
8
|
+
|
|
9
|
+
- **theme:** Default to Fraunces/Inter with editorial heading polish ([907ecdc8](https://github.com/arbicity/ARBI-frontend/commit/907ecdc8))
|
|
10
|
+
- **theme:** Tighten radius, add editorial marks, warm the neutral palette ([d42cc2bc](https://github.com/arbicity/ARBI-frontend/commit/d42cc2bc))
|
|
11
|
+
- **theme:** Complete the status-token system (solid fills, hover-strong, dark trios) ([ad3e6f56](https://github.com/arbicity/ARBI-frontend/commit/ad3e6f56))
|
|
12
|
+
- **api:** Circuit-break runaway settings writes at the fetch layer ([#1094](https://github.com/arbicity/ARBI-frontend/pull/1094))
|
|
13
|
+
- **subscription:** Add a "Stay on Free plan" opt-out to the plan dialog ([79cda37b](https://github.com/arbicity/ARBI-frontend/commit/79cda37b))
|
|
14
|
+
- **subscription:** Lead the plan dialog with why you'd upgrade ([b0add3a7](https://github.com/arbicity/ARBI-frontend/commit/b0add3a7))
|
|
15
|
+
- **blocks:** Reference images for studio image generation ([#1087](https://github.com/arbicity/ARBI-frontend/pull/1087))
|
|
16
|
+
|
|
17
|
+
### 🩹 Fixes
|
|
18
|
+
|
|
19
|
+
- **pwa:** Make deploys reach stale clients automatically (SW update watcher + cache fixes) ([#1079](https://github.com/arbicity/ARBI-frontend/pull/1079))
|
|
20
|
+
- **documents:** Gallery thumbnail never appears after reprocessing a document ([3071dedf](https://github.com/arbicity/ARBI-frontend/commit/3071dedf))
|
|
21
|
+
- **subscription:** Stop the plan cards bleeding out of the dialog on narrow screens ([2310a6d5](https://github.com/arbicity/ARBI-frontend/commit/2310a6d5))
|
|
22
|
+
|
|
23
|
+
### 💅 Refactors
|
|
24
|
+
|
|
25
|
+
- **theme:** Make hardcoded colors and radii respond to design tokens ([44d9c907](https://github.com/arbicity/ARBI-frontend/commit/44d9c907))
|
|
26
|
+
- Clear all ESLint warnings (dead code, unused deps, file splits) ([a582e35b](https://github.com/arbicity/ARBI-frontend/commit/a582e35b))
|
|
27
|
+
|
|
28
|
+
### ✅ Tests
|
|
29
|
+
|
|
30
|
+
- De-flake useOfflineDocuments by stubbing the lazy DocumentViewer chunk ([218df512](https://github.com/arbicity/ARBI-frontend/commit/218df512))
|
|
31
|
+
|
|
3
32
|
## v0.3.120
|
|
4
33
|
|
|
5
34
|
[compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.119...HEAD)
|
package/dist/index.js
CHANGED
|
@@ -3694,7 +3694,7 @@ function getLatestVersion(skipCache = false) {
|
|
|
3694
3694
|
}
|
|
3695
3695
|
}
|
|
3696
3696
|
function getCurrentVersion() {
|
|
3697
|
-
return "0.3.
|
|
3697
|
+
return "0.3.121";
|
|
3698
3698
|
}
|
|
3699
3699
|
function readChangelog(fromVersion, toVersion) {
|
|
3700
3700
|
try {
|
|
@@ -3747,17 +3747,17 @@ function showChangelog(fromVersion, toVersion) {
|
|
|
3747
3747
|
async function checkForUpdates(autoUpdate) {
|
|
3748
3748
|
try {
|
|
3749
3749
|
const latest = getLatestVersion();
|
|
3750
|
-
if (!latest || latest === "0.3.
|
|
3750
|
+
if (!latest || latest === "0.3.121") return;
|
|
3751
3751
|
if (autoUpdate) {
|
|
3752
3752
|
warn(`
|
|
3753
|
-
Your arbi version is out of date (${"0.3.
|
|
3753
|
+
Your arbi version is out of date (${"0.3.121"} \u2192 ${latest}). Updating...`);
|
|
3754
3754
|
child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
|
|
3755
|
-
showChangelog("0.3.
|
|
3755
|
+
showChangelog("0.3.121", latest);
|
|
3756
3756
|
console.log(`Updated to ${latest}.`);
|
|
3757
3757
|
} else {
|
|
3758
3758
|
warn(
|
|
3759
3759
|
`
|
|
3760
|
-
Your arbi version is out of date (${"0.3.
|
|
3760
|
+
Your arbi version is out of date (${"0.3.121"} \u2192 ${latest}).
|
|
3761
3761
|
Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
|
|
3762
3762
|
);
|
|
3763
3763
|
}
|
|
@@ -3789,10 +3789,10 @@ function markNagShown(latest) {
|
|
|
3789
3789
|
function hintUpdateOnError() {
|
|
3790
3790
|
try {
|
|
3791
3791
|
const cached = readCache();
|
|
3792
|
-
if (!cached || cached.latest === "0.3.
|
|
3792
|
+
if (!cached || cached.latest === "0.3.121") return;
|
|
3793
3793
|
if (!shouldShowNag(cached.latest)) return;
|
|
3794
3794
|
warn(
|
|
3795
|
-
`Your arbi version is out of date (${"0.3.
|
|
3795
|
+
`Your arbi version is out of date (${"0.3.121"} \u2192 ${cached.latest}). Run "arbi update".`
|
|
3796
3796
|
);
|
|
3797
3797
|
markNagShown(cached.latest);
|
|
3798
3798
|
} catch {
|
|
@@ -10483,7 +10483,7 @@ console.info = (...args) => {
|
|
|
10483
10483
|
_origInfo(...args);
|
|
10484
10484
|
};
|
|
10485
10485
|
var program = new commander.Command();
|
|
10486
|
-
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.
|
|
10486
|
+
program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.121").showHelpAfterError(true).showSuggestionAfterError(true);
|
|
10487
10487
|
registerConfigCommand(program);
|
|
10488
10488
|
registerLoginCommand(program);
|
|
10489
10489
|
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.121",
|
|
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.121",
|
|
25
|
+
"@arbidocs/client": "0.3.121",
|
|
26
|
+
"@arbidocs/tui": "0.3.121",
|
|
27
27
|
"@inquirer/prompts": "^8.5.2",
|
|
28
28
|
"chalk": "^5.6.2",
|
|
29
29
|
"commander": "^15.0.0"
|