@devflow-tools/database 0.1.0 → 0.7.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 +17 -0
- package/package.json +1 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [0.7.0](https://github.com/shilongfeicool/dev-flow/compare/v0.3.2...v0.7.0) (2026-07-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **database:** add database abstraction layer with node:sqlite adapter ([4765e98](https://github.com/shilongfeicool/dev-flow/commit/4765e98fd675a64f191486df50b7b3030f1e2512))
|
|
12
|
+
* **database:** add database package skeleton ([ac3d554](https://github.com/shilongfeicool/dev-flow/commit/ac3d5546031e0986e57d8fddff397667fe4da667))
|
|
13
|
+
* **database:** implement run_steps table CRUD ([90eb7b3](https://github.com/shilongfeicool/dev-flow/commit/90eb7b34f4d9688a61452481bc6fb8f17586f98b))
|
|
14
|
+
* **database:** implement runs table CRUD ([4ef9d60](https://github.com/shilongfeicool/dev-flow/commit/4ef9d60b3d8b028ac2b22aefcb5aef24a802ecf9))
|
|
15
|
+
* **database:** implement schema initialization ([3236e49](https://github.com/shilongfeicool/dev-flow/commit/3236e49d4537dcb46e0721fa8fc7d8c2413c3bf6))
|
|
16
|
+
* **database:** implement telemetry_events and project_stats CRUD ([8c2e76e](https://github.com/shilongfeicool/dev-flow/commit/8c2e76e6e6db7f1a4d9c35789f2ce154c6282cda))
|
|
17
|
+
* **telemetry:** integrate database for persistence ([1956d7f](https://github.com/shilongfeicool/dev-flow/commit/1956d7f060b23dca9224969784c324c60e79a36b))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@devflow-tools/database",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
4
4
|
"description": "DevFlow SQLite database package",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,7 +8,6 @@
|
|
|
8
8
|
"build": "tsc",
|
|
9
9
|
"test": "vitest run"
|
|
10
10
|
},
|
|
11
|
-
"dependencies": {},
|
|
12
11
|
"devDependencies": {
|
|
13
12
|
"@types/node": "^20.0.0",
|
|
14
13
|
"typescript": "^5.5.0",
|