agentdb 1.0.3 → 1.0.5
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 +30 -0
- package/dist/agentdb.js +12437 -0
- package/dist/agentdb.js.map +7 -0
- package/dist/agentdb.min.js +235 -0
- package/dist/agentdb.min.js.map +7 -0
- package/dist/mcp-server.d.ts.map +1 -1
- package/dist/mcp-server.js +9 -4
- package/dist/mcp-server.js.map +1 -1
- package/dist/mcp-server.mjs +9 -4
- package/examples/browser-wasm-real.html +231 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,36 @@ All notable changes to AgentDB will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.5] - 2025-10-18
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Browser Bundle:** Added `dist/agentdb.min.js` and `dist/agentdb.js` for CDN usage
|
|
12
|
+
- Browser bundles support direct import via unpkg/jsDelivr
|
|
13
|
+
- Source maps included for debugging (`agentdb.min.js.map`, `agentdb.js.map`)
|
|
14
|
+
- New build script: `npm run build:browser` using esbuild
|
|
15
|
+
- Browser example: `examples/browser-wasm-real.html` with actual WASM implementation
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Build process now includes browser bundle generation
|
|
19
|
+
- Package size optimized: 196KB minified, 380KB development bundle
|
|
20
|
+
- WASM backend fully functional in browser environments
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- Browser examples now can use real AgentDB WASM instead of simulation
|
|
24
|
+
- CDN loading from unpkg.com now supported
|
|
25
|
+
- Removed Node-only dependencies from browser bundle
|
|
26
|
+
|
|
27
|
+
## [1.0.4] - 2025-10-18
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- **MCP Server:** All 10 learning tools now visible in tools list without requiring init
|
|
31
|
+
- Learning tools (learning_start_session, learning_predict, etc.) now initialize on server startup
|
|
32
|
+
- Fixed issue where learning tools only appeared after calling agentdb_init
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
- MCP server version updated to 1.0.3
|
|
36
|
+
- Learning tools now use temporary in-memory database for immediate availability
|
|
37
|
+
|
|
8
38
|
## [1.0.3] - 2025-10-18
|
|
9
39
|
|
|
10
40
|
### Fixed
|