@arbidocs/cli 0.3.35 → 0.3.36

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,12 +1,56 @@
1
1
  # Changelog
2
2
 
3
- ## v0.3.35
3
+ ## v0.3.36
4
4
 
5
5
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.34...HEAD)
6
6
 
7
- ### 🏡 Chore
7
+ ### 🔥 Performance
8
+
9
+ - Replace full document list refetches with incremental cache updates ([#588](https://github.com/arbicity/ARBI-frontend/pull/588))
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - **ci:** Match frontend image tag in backend compose after registry move ([03ca2ca8](https://github.com/arbicity/ARBI-frontend/commit/03ca2ca8))
14
+ - **ci:** Use registry.arbi.work for FRONTEND_IMAGE and auto-PR body ([27791a2a](https://github.com/arbicity/ARBI-frontend/commit/27791a2a))
15
+ - **ci:** Log in to local registry in the integration-tests job ([1f003e94](https://github.com/arbicity/ARBI-frontend/commit/1f003e94))
16
+
17
+ ## v0.3.34
18
+
19
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.33...HEAD)
20
+
21
+ ### 🚀 Enhancements
22
+
23
+ - Make frontend installable as a PWA ([#581](https://github.com/arbicity/ARBI-frontend/pull/581))
24
+ - **cli:** Add --s3 direct-to-MinIO upload flow ([#580](https://github.com/arbicity/ARBI-frontend/pull/580))
25
+
26
+ ### 🔥 Performance
27
+
28
+ - Replace full document list refetches with incremental cache updates ([#587](https://github.com/arbicity/ARBI-frontend/pull/587))
29
+ - Replace full document list refetches with incremental cache updates " ([#587](https://github.com/arbicity/ARBI-frontend/pull/587))
30
+
31
+ ### 🩹 Fixes
32
+
33
+ - **cli:** Update reprocess test to match new status line format ([#582](https://github.com/arbicity/ARBI-frontend/pull/582))
34
+ - Folder column truncation, tooltip, and related docs cache ([#590](https://github.com/arbicity/ARBI-frontend/pull/590))
35
+ - **cli:** Derive integration test SERVER_URL from DEPLOYMENT_DOMAIN ([#589](https://github.com/arbicity/ARBI-frontend/pull/589))
36
+ - **ci:** Probe API through nginx on the deployment domain ([e173b25a](https://github.com/arbicity/ARBI-frontend/commit/e173b25a))
37
+ - **ci:** Probe API through nginx in docker-deploy and e2e-tests ([#591](https://github.com/arbicity/ARBI-frontend/pull/591))
38
+
39
+ ### 💅 Refactors
40
+
41
+ - **cli:** Reprocess status line — add timestamp, drop ETA ([#579](https://github.com/arbicity/ARBI-frontend/pull/579))
42
+
43
+ ### ✅ Tests
44
+
45
+ - **cli:** Drop intermittent 'reprocess --status failed empty match' test ([#593](https://github.com/arbicity/ARBI-frontend/pull/593))
46
+ - **cli:** MakeUniquePdf returns a parser-valid PDF with unique bytes ([#594](https://github.com/arbicity/ARBI-frontend/pull/594))
47
+
48
+ ### 🤖 CI
8
49
 
9
- - Release v0.3.34 [skip ci] ([3310ce73](https://github.com/arbicity/ARBI-frontend/commit/3310ce73))
50
+ - Robust Docker cleanup before e2e test environment startup ([2384d0d9](https://github.com/arbicity/ARBI-frontend/commit/2384d0d9))
51
+ - Dual-push arbi-frontend to Docker Hub and local registry ([#585](https://github.com/arbicity/ARBI-frontend/pull/585))
52
+ - Temporarily disable CLI integration tests on the CI stack ([#595](https://github.com/arbicity/ARBI-frontend/pull/595))
53
+ - Temporarily disable SDK integration tests on the CI stack ([b639e734](https://github.com/arbicity/ARBI-frontend/commit/b639e734))
10
54
 
11
55
  ## v0.3.33
12
56
 
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.35";
3640
+ return "0.3.36";
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.35") return;
3693
+ if (!latest || latest === "0.3.36") return;
3694
3694
  if (autoUpdate) {
3695
3695
  warn(`
3696
- Your arbi version is out of date (${"0.3.35"} \u2192 ${latest}). Updating...`);
3696
+ Your arbi version is out of date (${"0.3.36"} \u2192 ${latest}). Updating...`);
3697
3697
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3698
- showChangelog("0.3.35", latest);
3698
+ showChangelog("0.3.36", 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.35"} \u2192 ${latest}).
3703
+ Your arbi version is out of date (${"0.3.36"} \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.35") {
3713
+ if (cached && cached.latest !== "0.3.36") {
3714
3714
  warn(
3715
- `Your arbi version is out of date (${"0.3.35"} \u2192 ${cached.latest}). Run "arbi update".`
3715
+ `Your arbi version is out of date (${"0.3.36"} \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.35");
8161
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.36");
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.35",
3
+ "version": "0.3.36",
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.35",
25
- "@arbidocs/client": "0.3.35",
26
- "@arbidocs/tui": "0.3.35",
24
+ "@arbidocs/sdk": "0.3.36",
25
+ "@arbidocs/client": "0.3.36",
26
+ "@arbidocs/tui": "0.3.36",
27
27
  "@inquirer/prompts": "^8.2.0",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^13.1.0"