@arbidocs/cli 0.3.38 → 0.3.39

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,38 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.39
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.38...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - **notifications:** Wire limit/offset pagination and add load-more ([#615](https://github.com/arbicity/ARBI-frontend/pull/615))
10
+ - Add performance metrics instrumentation with web-vitals and dev overlay ([#619](https://github.com/arbicity/ARBI-frontend/pull/619))
11
+
12
+ ### 🔥 Performance
13
+
14
+ - Dynamic-import papaparse to remove from main chunk ([#613](https://github.com/arbicity/ARBI-frontend/pull/613))
15
+ - **queries:** Tune staleTime on rarely-changing server data ([#614](https://github.com/arbicity/ARBI-frontend/pull/614))
16
+ - Conditionally mount Radix Popover/HoverCard content in hot paths ([#611](https://github.com/arbicity/ARBI-frontend/pull/611))
17
+ - **sidebar:** Narrow ws.tasks selector, combine notification scans, group modal/panel subs ([#612](https://github.com/arbicity/ARBI-frontend/pull/612))
18
+ - **pdf-viewer:** Conditional text-layer, DPR cap, smaller initial buffer ([#620](https://github.com/arbicity/ARBI-frontend/pull/620))
19
+ - Offload zip extraction and DM crypto to Web Workers ([#618](https://github.com/arbicity/ARBI-frontend/pull/618))
20
+ - Bump progressive document page size to 5000 ([#624](https://github.com/arbicity/ARBI-frontend/pull/624))
21
+ - **documents:** Pre-index doctag sets and active filter keys to fix filter-click hang ([#627](https://github.com/arbicity/ARBI-frontend/pull/627))
22
+
23
+ ### 🩹 Fixes
24
+
25
+ - Friendlier login status badge and correct doc edit perms for members ([#610](https://github.com/arbicity/ARBI-frontend/pull/610))
26
+
27
+ ### 💅 Refactors
28
+
29
+ - Consume SDK listPaginated in frontend progressive loader ([#609](https://github.com/arbicity/ARBI-frontend/pull/609))
30
+
31
+ ### 🤖 CI
32
+
33
+ - Add size-limit bundle size budgets ([#616](https://github.com/arbicity/ARBI-frontend/pull/616))
34
+ - Add knip for unused code detection (report-only) ([#617](https://github.com/arbicity/ARBI-frontend/pull/617))
35
+
3
36
  ## v0.3.38
4
37
 
5
38
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.37...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.38";
3640
+ return "0.3.39";
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.38") return;
3693
+ if (!latest || latest === "0.3.39") return;
3694
3694
  if (autoUpdate) {
3695
3695
  warn(`
3696
- Your arbi version is out of date (${"0.3.38"} \u2192 ${latest}). Updating...`);
3696
+ Your arbi version is out of date (${"0.3.39"} \u2192 ${latest}). Updating...`);
3697
3697
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3698
- showChangelog("0.3.38", latest);
3698
+ showChangelog("0.3.39", 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.38"} \u2192 ${latest}).
3703
+ Your arbi version is out of date (${"0.3.39"} \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.38") {
3713
+ if (cached && cached.latest !== "0.3.39") {
3714
3714
  warn(
3715
- `Your arbi version is out of date (${"0.3.38"} \u2192 ${cached.latest}). Run "arbi update".`
3715
+ `Your arbi version is out of date (${"0.3.39"} \u2192 ${cached.latest}). Run "arbi update".`
3716
3716
  );
3717
3717
  }
3718
3718
  } catch {
@@ -8207,7 +8207,7 @@ console.info = (...args) => {
8207
8207
  _origInfo(...args);
8208
8208
  };
8209
8209
  var program = new commander.Command();
8210
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.38");
8210
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.39");
8211
8211
  registerConfigCommand(program);
8212
8212
  registerLoginCommand(program);
8213
8213
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.38",
3
+ "version": "0.3.39",
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.38",
25
- "@arbidocs/client": "0.3.38",
26
- "@arbidocs/tui": "0.3.38",
24
+ "@arbidocs/sdk": "0.3.39",
25
+ "@arbidocs/client": "0.3.39",
26
+ "@arbidocs/tui": "0.3.39",
27
27
  "@inquirer/prompts": "^8.2.0",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^13.1.0"