agentic-flow 2.0.1-alpha.10 → 2.0.1-alpha.12

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
@@ -2,6 +2,30 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.0.1-alpha.12] - 2025-12-31
6
+
7
+ ### Fixed
8
+ - **HNSW Enabled Status**: Fixed intelligence stats showing "HNSW: Enabled: false"
9
+ - Reordered initialization to call `getIntelligence()` before `getIntelligenceStats()`
10
+ - Now correctly shows "HNSW: Enabled: true" with 150x speedup
11
+
12
+ ### Verified
13
+ - All intelligence stats display correctly
14
+ - HNSW enabled and operational
15
+
16
+ ## [2.0.1-alpha.11] - 2025-12-31
17
+
18
+ ### Fixed
19
+ - **AdamOptimizer Constructor**: Fixed "Failed to convert napi value Undefined into rust type `f64`" error
20
+ - AdamOptimizer now correctly receives all 4 required parameters: learning_rate, beta1, beta2, epsilon
21
+ - **Silent Warnings**: Removed noisy AgentDB controller warnings for v2+ installations
22
+ - **RuVector HNSW**: Verified HNSW indexing works with M=16, efConstruction=200, achieving 1ms search times
23
+
24
+ ### Verified
25
+ - Hooks run without any error messages
26
+ - Intelligence stats display cleanly
27
+ - RuVector backend with HNSW fully operational
28
+
5
29
  ## [2.0.1-alpha.10] - 2025-12-31
6
30
 
7
31
  ### Fixed