@devflow-tools/database 0.8.3 → 0.8.7
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 +36 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,42 @@
|
|
|
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.7](https://github.com/shilongfeicool/dev-flow/compare/v0.8.6...v0.8.7) (2026-07-09)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @devflow-tools/database
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.8.6](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.6) (2026-07-09)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **database:** parameterize LIMIT clause in listSkillExecutions ([d85a440](https://github.com/shilongfeicool/dev-flow/commit/d85a440e727434bd8df2ab0cb0d408183f006731))
|
|
20
|
+
* replace lerna publish from-package with per-package npm publish ([e27463e](https://github.com/shilongfeicool/dev-flow/commit/e27463e379ee5860341b3c4ae121de3f2da3d010))
|
|
21
|
+
* **server:** persist activeProjectRoot to SQLite + add POST /projects/switch ([7cbe96e](https://github.com/shilongfeicool/dev-flow/commit/7cbe96e0f92d60b54261d61df1fb0ad18eacc4a1))
|
|
22
|
+
* update PreToolUse hook output to modern hookSpecificOutput format ([08e4704](https://github.com/shilongfeicool/dev-flow/commit/08e47047445ba2b8112669608264af9971627138))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* 实现新一代本地向量内存存储系统并修复多项配套问题 ([39eea1d](https://github.com/shilongfeicool/dev-flow/commit/39eea1d2532f44d83a929c5623c216ffd25bed97))
|
|
28
|
+
* **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
|
|
29
|
+
* **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
|
|
30
|
+
* **database:** add getMcpCompliance query for MCP enforcement metrics ([0f61aef](https://github.com/shilongfeicool/dev-flow/commit/0f61aef1ca06b186df136388b898b323aaf3f993))
|
|
31
|
+
* **database:** add skill_executions and tool_call_events tables ([5906f0f](https://github.com/shilongfeicool/dev-flow/commit/5906f0f6c28b1f0539f643f0b04b55c7bdf29a8d))
|
|
32
|
+
* **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
|
|
33
|
+
* **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
|
|
34
|
+
* **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
|
|
35
|
+
* **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
|
|
36
|
+
* **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
6
42
|
## [0.8.2](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.8.2) (2026-07-08)
|
|
7
43
|
|
|
8
44
|
|