@arbidocs/cli 0.3.53 → 0.3.55

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 CHANGED
@@ -1,5 +1,49 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.55
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.54...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - **upload:** Accept ZIP archives via URL — extracted in the browser ([#671](https://github.com/arbicity/ARBI-frontend/pull/671))
10
+ - **subscription:** Rebase pack to 1,000 credits/mo with sizing explainer ([#675](https://github.com/arbicity/ARBI-frontend/pull/675))
11
+ - **subscription:** Show QuotaExceededModal on AI budget exhaustion ([#682](https://github.com/arbicity/ARBI-frontend/pull/682))
12
+ - **sdk:** Handle arbi.error SSE event for mid-stream quota exhaustion ([#683](https://github.com/arbicity/ARBI-frontend/pull/683))
13
+
14
+ ### 🔥 Performance
15
+
16
+ - **redline:** Hybrid line+word diff in a worker, structural-safe markdown ([#665](https://github.com/arbicity/ARBI-frontend/pull/665))
17
+
18
+ ### 🩹 Fixes
19
+
20
+ - **workspace:** Show real project for common workspaces in settings ([#663](https://github.com/arbicity/ARBI-frontend/pull/663))
21
+ - Keep conversation generating status reactive across the app ([#664](https://github.com/arbicity/ARBI-frontend/pull/664))
22
+ - Render agent avatars as dashed circles instead of rounded squares ([#667](https://github.com/arbicity/ARBI-frontend/pull/667))
23
+ - **messages,tabs:** Footer reads model from agent steps; tab dot sits outside the pill ([#668](https://github.com/arbicity/ARBI-frontend/pull/668))
24
+ - **mermaid:** Parse-first validation + single-line graph normalizer ([#669](https://github.com/arbicity/ARBI-frontend/pull/669))
25
+ - **auth:** Always clear persisted Zustand store on logout ([#670](https://github.com/arbicity/ARBI-frontend/pull/670))
26
+ - **pdf:** Handle password-prompt cancel instead of freezing the viewer ([#672](https://github.com/arbicity/ARBI-frontend/pull/672))
27
+ - Add mobile-web-app-capable meta tag alongside apple-prefixed one ([#677](https://github.com/arbicity/ARBI-frontend/pull/677))
28
+ - **ux:** Address 5 issues surfaced by Playwright tour ([#680](https://github.com/arbicity/ARBI-frontend/pull/680))
29
+
30
+ ### 🏡 Chore
31
+
32
+ - Raise related-docs similarity threshold to 0.98 ([#666](https://github.com/arbicity/ARBI-frontend/pull/666))
33
+ - Trigger frontend bump for Option 4 verification ([ff910db2](https://github.com/arbicity/ARBI-frontend/commit/ff910db2))
34
+ - Ship sample-documents zip as a public asset ([#673](https://github.com/arbicity/ARBI-frontend/pull/673))
35
+ - Drop sample-documents zip from public/, host via S3 instead ([#674](https://github.com/arbicity/ARBI-frontend/pull/674))
36
+ - Add agent harness hooks, commands, and subagents for frontend workflow ([#678](https://github.com/arbicity/ARBI-frontend/pull/678))
37
+
38
+ ## v0.3.54
39
+
40
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.53...HEAD)
41
+
42
+ ### 🚀 Enhancements
43
+
44
+ - Show backend git hash under frontend version in User Guide ([#660](https://github.com/arbicity/ARBI-frontend/pull/660))
45
+ - Move upload settings into the upload screen ([#662](https://github.com/arbicity/ARBI-frontend/pull/662))
46
+
3
47
  ## v0.3.53
4
48
 
5
49
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.52...HEAD)
package/dist/index.js CHANGED
@@ -3641,7 +3641,7 @@ function getLatestVersion(skipCache = false) {
3641
3641
  }
3642
3642
  }
3643
3643
  function getCurrentVersion() {
3644
- return "0.3.53";
3644
+ return "0.3.55";
3645
3645
  }
3646
3646
  function readChangelog(fromVersion, toVersion) {
3647
3647
  try {
@@ -3694,17 +3694,17 @@ function showChangelog(fromVersion, toVersion) {
3694
3694
  async function checkForUpdates(autoUpdate) {
3695
3695
  try {
3696
3696
  const latest = getLatestVersion();
3697
- if (!latest || latest === "0.3.53") return;
3697
+ if (!latest || latest === "0.3.55") return;
3698
3698
  if (autoUpdate) {
3699
3699
  warn(`
3700
- Your arbi version is out of date (${"0.3.53"} \u2192 ${latest}). Updating...`);
3700
+ Your arbi version is out of date (${"0.3.55"} \u2192 ${latest}). Updating...`);
3701
3701
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3702
- showChangelog("0.3.53", latest);
3702
+ showChangelog("0.3.55", latest);
3703
3703
  console.log(`Updated to ${latest}.`);
3704
3704
  } else {
3705
3705
  warn(
3706
3706
  `
3707
- Your arbi version is out of date (${"0.3.53"} \u2192 ${latest}).
3707
+ Your arbi version is out of date (${"0.3.55"} \u2192 ${latest}).
3708
3708
  Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3709
3709
  );
3710
3710
  }
@@ -3714,9 +3714,9 @@ Run "arbi update" to upgrade, or "arbi update auto" to always stay up to date.`
3714
3714
  function hintUpdateOnError() {
3715
3715
  try {
3716
3716
  const cached = readCache();
3717
- if (cached && cached.latest !== "0.3.53") {
3717
+ if (cached && cached.latest !== "0.3.55") {
3718
3718
  warn(
3719
- `Your arbi version is out of date (${"0.3.53"} \u2192 ${cached.latest}). Run "arbi update".`
3719
+ `Your arbi version is out of date (${"0.3.55"} \u2192 ${cached.latest}). Run "arbi update".`
3720
3720
  );
3721
3721
  }
3722
3722
  } catch {
@@ -8749,7 +8749,7 @@ console.info = (...args) => {
8749
8749
  _origInfo(...args);
8750
8750
  };
8751
8751
  var program = new commander.Command();
8752
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.53");
8752
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.55");
8753
8753
  registerConfigCommand(program);
8754
8754
  registerLoginCommand(program);
8755
8755
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.53",
3
+ "version": "0.3.55",
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.53",
25
- "@arbidocs/client": "0.3.53",
26
- "@arbidocs/tui": "0.3.53",
24
+ "@arbidocs/sdk": "0.3.55",
25
+ "@arbidocs/client": "0.3.55",
26
+ "@arbidocs/tui": "0.3.55",
27
27
  "@inquirer/prompts": "^8.2.0",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^13.1.0"