@dikolab/kbdb 0.4.1 → 0.5.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.
@@ -0,0 +1,41 @@
1
+ # 0.5.0
2
+
3
+ *Minor release -- 2026-07-03*
4
+
5
+ Repository migrated from the `tech-slaves` GitLab group
6
+ to the `diko316` personal namespace. All public-facing
7
+ URLs now point to
8
+ `gitlab.com/diko316/knowledge-base-db`.
9
+
10
+ ---
11
+
12
+ ## Repository Migration
13
+
14
+ - **GitLab namespace** -- moved from
15
+ `gitlab.com/tech-slaves/knowledge-base-db` to
16
+ `gitlab.com/diko316/knowledge-base-db`.
17
+ - **package.json** -- updated `repository.url`,
18
+ `homepage`, and `bugs.url` to the new namespace.
19
+ - **deno.json** -- updated `repository.url`.
20
+ - **README.md** -- all 19 absolute GitLab links
21
+ converted to the new namespace (license badge,
22
+ documentation links, clone URL, issue tracker).
23
+ - **docs/overview.md** -- repository link updated.
24
+
25
+ ## Documentation
26
+
27
+ - **Release notes index** -- added missing entries
28
+ for 0.4.1 and 0.4.3 to
29
+ `docs/release-notes/README.md`.
30
+
31
+ ---
32
+
33
+ ## Upgrade
34
+
35
+ ```sh
36
+ # Node.js
37
+ npm install -g @dikolab/kbdb@0.5.0
38
+
39
+ # Deno
40
+ deno install -Agf jsr:@dikolab/kbdb/cli
41
+ ```
@@ -2,6 +2,9 @@
2
2
 
3
3
  ## Releases
4
4
 
5
+ - [0.5.0](0.5.0.md) -- Repository migration to diko316 namespace
6
+ - [0.4.3](0.4.3.md) -- Build pipeline hardening, npm docs links
7
+ - [0.4.1](0.4.1.md) -- TF-IDF embedding, structured logging, daemon fixes
5
8
  - [0.4.0](0.4.0.md) -- Engine refactor, daemon reliability, publishing fixes
6
9
  - [0.3.2](0.3.2.md) -- Docs alignment, hybrid search highlight, readability
7
10
  - [0.3.1](0.3.1.md) -- MCP reliability fixes, 20 tools, zero test skips
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dikolab/kbdb",
3
- "version": "0.4.1",
3
+ "version": "0.5.0",
4
4
  "description": "CLI tool and MCP server for a file-based knowledge base database -- index documents, search with ranked results, and recall context for AI agents",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -17,11 +17,11 @@
17
17
  "license": "ISC",
18
18
  "repository": {
19
19
  "type": "git",
20
- "url": "git+https://gitlab.com/tech-slaves/knowledge-base-db.git"
20
+ "url": "git+https://gitlab.com/diko316/knowledge-base-db.git"
21
21
  },
22
- "homepage": "https://gitlab.com/tech-slaves/knowledge-base-db#readme",
22
+ "homepage": "https://gitlab.com/diko316/knowledge-base-db#readme",
23
23
  "bugs": {
24
- "url": "https://gitlab.com/tech-slaves/knowledge-base-db/-/issues"
24
+ "url": "https://gitlab.com/diko316/knowledge-base-db/-/issues"
25
25
  },
26
26
  "files": [
27
27
  "dist/**/*",