agentdb 1.0.4 → 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 CHANGED
@@ -5,6 +5,25 @@ 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
+
8
27
  ## [1.0.4] - 2025-10-18
9
28
 
10
29
  ### Fixed