@hienlh/ppm 0.9.70 → 0.9.71

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,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.71] - 2026-04-09
4
+
5
+ ### Fixed
6
+ - **CLI db commands**: `ppm db` subcommands (list, add, remove, test, tables, schema, data, query) were implemented but not registered in CLI entry point — now accessible.
7
+
8
+ ### Added
9
+ - Unit tests for CLI db command registration and option structure.
10
+ - Unit tests for `isReadOnlyQuery` utility (18 cases including CTE attack patterns).
11
+ - Unit tests for database routes: readonly enforcement, validation, edge cases (+30 tests).
12
+ - Unit tests for db.service connection CRUD: insert, resolve, update, delete, encryption round-trip (+17 tests).
13
+
3
14
  ## [0.9.70] - 2026-04-09
4
15
 
5
16
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hienlh/ppm",
3
- "version": "0.9.70",
3
+ "version": "0.9.71",
4
4
  "description": "Personal Project Manager — mobile-first web IDE with AI assistance",
5
5
  "author": "hienlh",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -148,6 +148,9 @@ registerCloudCommands(program);
148
148
  const { registerExtCommands } = await import("./cli/commands/ext-cmd.ts");
149
149
  registerExtCommands(program);
150
150
 
151
+ const { registerDbCommands } = await import("./cli/commands/db-cmd.ts");
152
+ registerDbCommands(program);
153
+
151
154
  const { registerBotCommands } = await import("./cli/commands/bot-cmd.ts");
152
155
  registerBotCommands(program);
153
156