@arbidocs/cli 0.3.70 → 0.3.72

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.72
4
+
5
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.71...HEAD)
6
+
7
+ ### 🚀 Enhancements
8
+
9
+ - Add contextual onboarding hints and empty-state polish ([#798](https://github.com/arbicity/ARBI-frontend/pull/798))
10
+
11
+ ### 🩹 Fixes
12
+
13
+ - Sync package-lock.json with package.json ([#796](https://github.com/arbicity/ARBI-frontend/pull/796))
14
+ - Hide incomplete Chronology feature from users ([#799](https://github.com/arbicity/ARBI-frontend/pull/799))
15
+
16
+ ### 🏡 Chore
17
+
18
+ - Fix npm audit vulnerabilities ([#795](https://github.com/arbicity/ARBI-frontend/pull/795))
19
+
20
+ ## v0.3.71
21
+
22
+ [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.70...HEAD)
23
+
24
+ ### 🚀 Enhancements
25
+
26
+ - **workspace:** Show clock icon for temporary (session-scoped) grants ([#783](https://github.com/arbicity/ARBI-frontend/pull/783))
27
+ - Manage Project — prominent quota badges, collaborator daily-limit label, smooth pack up/downgrade ([#788](https://github.com/arbicity/ARBI-frontend/pull/788))
28
+ - Connected Apps settings tab (MCP connectors Phase 1) ([e8c3231c](https://github.com/arbicity/ARBI-frontend/commit/e8c3231c))
29
+ - Gate Connected Apps tab behind show_mcp_connectors feature flag ([#794](https://github.com/arbicity/ARBI-frontend/pull/794))
30
+
31
+ ### 🩹 Fixes
32
+
33
+ - Opening a panel reliably docks it and replaces the current one ([#791](https://github.com/arbicity/ARBI-frontend/pull/791))
34
+ - Fetch authorize URL with auth token instead of bare navigation ([#793](https://github.com/arbicity/ARBI-frontend/pull/793))
35
+
3
36
  ## v0.3.70
4
37
 
5
38
  [compare changes](https://github.com/arbicity/ARBI-frontend/compare/v0.3.68...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.70";
3697
+ return "0.3.72";
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.70") return;
3750
+ if (!latest || latest === "0.3.72") return;
3751
3751
  if (autoUpdate) {
3752
3752
  warn(`
3753
- Your arbi version is out of date (${"0.3.70"} \u2192 ${latest}). Updating...`);
3753
+ Your arbi version is out of date (${"0.3.72"} \u2192 ${latest}). Updating...`);
3754
3754
  child_process.execSync("npm install -g @arbidocs/cli@latest", { stdio: "inherit" });
3755
- showChangelog("0.3.70", latest);
3755
+ showChangelog("0.3.72", 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.70"} \u2192 ${latest}).
3760
+ Your arbi version is out of date (${"0.3.72"} \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.70") return;
3792
+ if (!cached || cached.latest === "0.3.72") return;
3793
3793
  if (!shouldShowNag(cached.latest)) return;
3794
3794
  warn(
3795
- `Your arbi version is out of date (${"0.3.70"} \u2192 ${cached.latest}). Run "arbi update".`
3795
+ `Your arbi version is out of date (${"0.3.72"} \u2192 ${cached.latest}). Run "arbi update".`
3796
3796
  );
3797
3797
  markNagShown(cached.latest);
3798
3798
  } catch {
@@ -10228,7 +10228,7 @@ console.info = (...args) => {
10228
10228
  _origInfo(...args);
10229
10229
  };
10230
10230
  var program = new commander.Command();
10231
- program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.70").showHelpAfterError(true).showSuggestionAfterError(true);
10231
+ program.name("arbi").description("ARBI CLI \u2014 interact with ARBI from the terminal").version("0.3.72").showHelpAfterError(true).showSuggestionAfterError(true);
10232
10232
  registerConfigCommand(program);
10233
10233
  registerLoginCommand(program);
10234
10234
  registerRegisterCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arbidocs/cli",
3
- "version": "0.3.70",
3
+ "version": "0.3.72",
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.70",
25
- "@arbidocs/client": "0.3.70",
26
- "@arbidocs/tui": "0.3.70",
24
+ "@arbidocs/sdk": "0.3.72",
25
+ "@arbidocs/client": "0.3.72",
26
+ "@arbidocs/tui": "0.3.72",
27
27
  "@inquirer/prompts": "^8.4.3",
28
28
  "chalk": "^5.6.2",
29
29
  "commander": "^14.0.3"