@pumped-fn/core-next 0.5.79 → 0.5.81

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
@@ -1,5 +1,57 @@
1
1
  # @pumped-fn/core-next
2
2
 
3
+ ## 0.5.81
4
+
5
+ ### Patch Changes
6
+
7
+ - a1bdb17: Release v0.5.80 - Complete tag API migration and documentation fixes
8
+
9
+ This release completes the meta-to-tag API migration and fixes all documentation references. All tests pass and documentation builds successfully.
10
+
11
+ Key changes:
12
+
13
+ - Complete tag API naming consistency (readFrom, extractFrom, collectFrom, injectTo)
14
+ - Fixed all documentation examples to use new tag API
15
+ - Performance optimizations remain stable
16
+ - All 256 tests passing
17
+
18
+ ## 0.5.80
19
+
20
+ ### Patch Changes
21
+
22
+ - 4c115a3: Performance optimizations: +37-86% improvements across all hot paths
23
+
24
+ - **Cached resolve**: +37% faster (1.98M → 2.72M ops/sec)
25
+ - **Reactive updates**: +12-86% faster (14.8k → 429k ops/sec)
26
+ - **Memory**: Reduced cold start allocations by 90-95%
27
+ - **Bundle size**: Unchanged (60.47 kB)
28
+
29
+ Key changes:
30
+
31
+ - Made `ResolvedState.promised` required to eliminate fallback allocations
32
+ - Consolidated 7 Maps into unified `ExecutorState` structure
33
+ - Fixed critical state preservation bugs in resolution paths
34
+ - Added depth-based lazy circular dependency checking
35
+
36
+ No breaking changes - 100% backward compatible.
37
+
38
+ - 7b1d5ba: Performance: WeakMap-based tag lookup caching (+6-151% improvements)
39
+
40
+ Implemented lazy Map-based caching for tag lookups using WeakMap:
41
+
42
+ - Cache automatically built on first lookup per source
43
+ - Stores values as arrays to support both single (`find`) and multiple (`some`) lookups
44
+ - WeakMap ensures automatic garbage collection when sources are no longer referenced
45
+
46
+ Performance improvements:
47
+
48
+ - Small arrays: +14-18% faster
49
+ - Medium arrays: +6-151% faster (huge improvement for last-match scenarios)
50
+ - Repeated lookups: +16% faster
51
+ - Collect multiple values: +52% faster
52
+
53
+ No breaking changes - 100% backward compatible.
54
+
3
55
  ## 0.5.79
4
56
 
5
57
  ### Patch Changes
@@ -10,4 +10,4 @@ var __export = (all) => {
10
10
  };
11
11
 
12
12
  //#endregion
13
- export { __export };
13
+ export { __export as t };