kandown 0.32.1 → 0.33.0

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,19 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.33.0 — 2026-07-21 — "Universal Auto-Updater & Web UI Prompt Engine"
4
+
5
+ - **Added**: **Daemon HTTP Server Module (`src/cli/lib/server.ts`)** — re-introduced and modernized full REST API server & SSE live-reload for daemon mode (`/api/daemon`, `/api/board`, `/api/config`, `/api/tasks`, `/api/update/check`, `/api/update/apply`).
6
+ - **Added**: **Web UI Update Notification Banner (`UpdateNotificationBanner.tsx`)** — non-intrusive floating prompt banner that notifies users when a new Kandown version is published on npm with a 1-click **"Update Now"** action.
7
+ - **Added**: **1-Click Web UI Settings Update Button** — added interactive `Update to vX.Y.Z` button in the Settings page version card, allowing users to upgrade Kandown directly from the web browser.
8
+ - **Added**: **Automated `.kandown/kandown.html` Bundle Auto-Refresh** — project HTML files are automatically synced with the CLI's latest singlefile bundle on daemon boot and whenever an update is applied, preventing project HTML files from being stuck on older releases.
9
+ - **Added**: **Global PATH Symlink Syncing** — automatically synchronizes symlinks at `~/.local/bin/kandown`, `~/Library/pnpm/bin/kandown`, and nvm directories so all PATH executables point to the latest CLI version.
10
+
11
+ ## 0.32.2 — 2026-07-21 — "Reliable Auto-Updater Engine"
12
+
13
+ - **Fixed**: **Auto-Updater Execution Gate** — removed command filtering logic in CLI main router that previously bypassed update checks for scripted commands like `kandown work`, `kandown list`, and `kandown doctor`.
14
+ - **Fixed**: **Home Directory Update Cache** — moved `.update-check.json` and `.update.lock` out of project/package directories to user homedir `~/.kandown/` so permissions and working directories never block registry checks.
15
+ - **Fixed**: **Compiled Version Token Precedence** — updated `getCurrentVersion()` to prioritize `KANDOWN_VERSION` over reading random `package.json` files in `CWD`, preventing false version match evaluation during auto-updates.
16
+
3
17
  ## 0.32.1 — 2026-07-21 — "CLI Modularization & Updater Speed"
4
18
 
5
19
  - **Fixed**: **Auto-Updater Check Throttle** — reduced update check throttle from 24h to 10 minutes (`UPDATE_CHECK_INTERVAL_MS = 10m`) and prioritized global `npm install -g kandown --force` for npm setups so release updates trigger promptly when launching Kandown.