@arbidocs/cli 0.3.147 → 0.3.149

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,58 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.3.149
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.148...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - **dm:** Port the clarum messenger look into the ARBI thread ([7f869fc47](https://github.com/arbicity/ARBI-frontend/commit/7f869fc47))
10
+ - **dm:** Bring back the conversation cards — the point of the clarum look ([bad883592](https://github.com/arbicity/ARBI-frontend/commit/bad883592))
11
+ - **dm:** Per-contact actions behind one overflow menu; invite states in the list ([7bcc1c92c](https://github.com/arbicity/ARBI-frontend/commit/7bcc1c92c))
12
+ - **dm:** Name the panel Direct Messages; tick shows who spoke last ([87048b3c4](https://github.com/arbicity/ARBI-frontend/commit/87048b3c4))
13
+ - **dm:** Pending invitations as chips, with actions that tell the truth ([68395ef97](https://github.com/arbicity/ARBI-frontend/commit/68395ef97))
14
+ - **dm:** Filter the chips by state, and grant access from the same menu ([f53bc7a8a](https://github.com/arbicity/ARBI-frontend/commit/f53bc7a8a))
15
+
16
+ ### 🩹 Fixes
17
+
18
+ - **dm:** Make agent conversations reachable, and cover DMs with an e2e ([70c9714c7](https://github.com/arbicity/ARBI-frontend/commit/70c9714c7))
19
+ - **dm:** Make the messenger actually read — clean surface, visible bubble ([0df98f782](https://github.com/arbicity/ARBI-frontend/commit/0df98f782))
20
+ - **dm:** Solid bubble tint, and a DM e2e suite that earns the name ([2b5ef16da](https://github.com/arbicity/ARBI-frontend/commit/2b5ef16da))
21
+ - **dm:** A thread opened on a cold load stayed empty forever ([948c68cb0](https://github.com/arbicity/ARBI-frontend/commit/948c68cb0))
22
+ - **dm:** Honest label, quiet unread count, opaque chips, real avatars ([94d21da36](https://github.com/arbicity/ARBI-frontend/commit/94d21da36))
23
+ - **dm:** Size the conversation switcher to the chip that opens it ([763742e6c](https://github.com/arbicity/ARBI-frontend/commit/763742e6c))
24
+ - **dm:** One Contacts tab, not two views of the same people side by side ([c1da9e546](https://github.com/arbicity/ARBI-frontend/commit/c1da9e546))
25
+ - **dm:** Only grant access to the workspace you have open ([8d743b8d2](https://github.com/arbicity/ARBI-frontend/commit/8d743b8d2))
26
+
27
+ ### 💅 Refactors
28
+
29
+ - **dm:** One chat bubble behind both the DM block and the ARBI thread ([df36723a6](https://github.com/arbicity/ARBI-frontend/commit/df36723a6))
30
+ - **dm:** Delete the old contacts table; the chips are the contact list ([03c8e60ca](https://github.com/arbicity/ARBI-frontend/commit/03c8e60ca))
31
+
32
+ ### ✅ Tests
33
+
34
+ - **dm:** Record the whole messenger, not one happy path ([e99b3c4ef](https://github.com/arbicity/ARBI-frontend/commit/e99b3c4ef))
35
+
36
+ ### 🤖 CI
37
+
38
+ - Retry the deploy's compose up, so a truncated pull isn't a failed deploy ([3077a8339](https://github.com/arbicity/ARBI-frontend/commit/3077a8339))
39
+ - Rotate the corrupt build cache that was failing every deploy ([d15c18879](https://github.com/arbicity/ARBI-frontend/commit/d15c18879))
40
+
41
+ ## v0.3.148
42
+
43
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.147...HEAD)
44
+
45
+ ### 🚀 Enhancements
46
+
47
+ - **tags:** Make tag hierarchy usable — parent picker and nested field list ([328d9181](https://github.com/arbicity/ARBI-frontend/commit/328d9181))
48
+ - **search:** One shared passage card, and un-break snippet highlighting ([b8f20ebe](https://github.com/arbicity/ARBI-frontend/commit/b8f20ebe))
49
+
50
+ ### 🩹 Fixes
51
+
52
+ - **fields:** Allow deleting a parent field, warning that nested fields move up ([8fd48675](https://github.com/arbicity/ARBI-frontend/commit/8fd48675))
53
+ - **search:** Keep the passage card's footer outside its click target ([3f689064](https://github.com/arbicity/ARBI-frontend/commit/3f689064))
54
+ - **search:** Drop the redundant control nested in the flat row's header ([f03a6ece](https://github.com/arbicity/ARBI-frontend/commit/f03a6ece))
55
+
3
56
  ## v0.3.147
4
57
 
5
58
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.146...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.147";
3697
+ return "0.3.149";
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.147") return;
3750
+ if (!latest || latest === "0.3.149") return;
3751
3751
  if (autoUpdate) {
3752
3752
  warn(`
3753
- Your arbi version is out of date (${"0.3.147"} \u2192 ${latest}). Updating...`);
3753
+ Your arbi version is out of date (${"0.3.149"} \u2192 ${latest}). Updating...`);
3754
3754
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3755
- showChangelog("0.3.147", latest);
3755
+ showChangelog("0.3.149", 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.147"} \u2192 ${latest}).
3760
+ Your arbi version is out of date (${"0.3.149"} \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.147") return;
3792
+ if (!cached || cached.latest === "0.3.149") return;
3793
3793
  if (!shouldShowNag(cached.latest)) return;
3794
3794
  warn(
3795
- `Your arbi version is out of date (${"0.3.147"} \u2192 ${cached.latest}). Run "arbi update".`
3795
+ `Your arbi version is out of date (${"0.3.149"} \u2192 ${cached.latest}). Run "arbi update".`
3796
3796
  );
3797
3797
  markNagShown(cached.latest);
3798
3798
  } catch {
@@ -10653,7 +10653,7 @@ console.info = (...args) => {
10653
10653
  _origInfo(...args);
10654
10654
  };
10655
10655
  var program = new commander.Command();
10656
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.147").showHelpAfterError(true).showSuggestionAfterError(true);
10656
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.149").showHelpAfterError(true).showSuggestionAfterError(true);
10657
10657
  registerConfigCommand(program);
10658
10658
  registerLoginCommand(program);
10659
10659
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.147",
3
+ "version": "0.3.149",
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.147",
25
- "@arbidocs/client": "0.3.147",
26
- "@arbidocs/tui": "0.3.147",
24
+ "@arbidocs/sdk": "0.3.149",
25
+ "@arbidocs/client": "0.3.149",
26
+ "@arbidocs/tui": "0.3.149",
27
27
  "@inquirer/prompts": "^8.5.2",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^15.0.0"