@devflow-tools/database 0.8.0 → 0.8.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -3,6 +3,31 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.8.1](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.1) (2026-07-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
12
+ * **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
13
+
14
+
15
+ ### Features
16
+
17
+ * **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
18
+ * **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
19
+ * **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
20
+ * **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
21
+ * **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
22
+ * **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
23
+ * **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
24
+ * **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
25
+ * **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
26
+
27
+
28
+
29
+
30
+
6
31
  # [0.8.0](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.0) (2026-07-07)
7
32
 
8
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/database",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "DevFlow SQLite database package",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -13,5 +13,5 @@
13
13
  "typescript": "^5.5.0",
14
14
  "vitest": "^2.0.0"
15
15
  },
16
- "gitHead": "5c9a804d3c2e6e6822b516fde67d5b789dbdb5b3"
16
+ "gitHead": "08e47047445ba2b8112669608264af9971627138"
17
17
  }