@pumped-fn/core-next 0.5.78 → 0.5.80
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 +52 -0
- package/dist/{chunk-CTAAG5j7.js → chunk-Bp6m_JJh.js} +1 -1
- package/dist/index.cjs +406 -365
- package/dist/index.d.cts +96 -135
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +98 -135
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +405 -360
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @pumped-fn/core-next
|
|
2
2
|
|
|
3
|
+
## 0.5.80
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4c115a3: Performance optimizations: +37-86% improvements across all hot paths
|
|
8
|
+
|
|
9
|
+
- **Cached resolve**: +37% faster (1.98M → 2.72M ops/sec)
|
|
10
|
+
- **Reactive updates**: +12-86% faster (14.8k → 429k ops/sec)
|
|
11
|
+
- **Memory**: Reduced cold start allocations by 90-95%
|
|
12
|
+
- **Bundle size**: Unchanged (60.47 kB)
|
|
13
|
+
|
|
14
|
+
Key changes:
|
|
15
|
+
|
|
16
|
+
- Made `ResolvedState.promised` required to eliminate fallback allocations
|
|
17
|
+
- Consolidated 7 Maps into unified `ExecutorState` structure
|
|
18
|
+
- Fixed critical state preservation bugs in resolution paths
|
|
19
|
+
- Added depth-based lazy circular dependency checking
|
|
20
|
+
|
|
21
|
+
No breaking changes - 100% backward compatible.
|
|
22
|
+
|
|
23
|
+
- 7b1d5ba: Performance: WeakMap-based tag lookup caching (+6-151% improvements)
|
|
24
|
+
|
|
25
|
+
Implemented lazy Map-based caching for tag lookups using WeakMap:
|
|
26
|
+
|
|
27
|
+
- Cache automatically built on first lookup per source
|
|
28
|
+
- Stores values as arrays to support both single (`find`) and multiple (`some`) lookups
|
|
29
|
+
- WeakMap ensures automatic garbage collection when sources are no longer referenced
|
|
30
|
+
|
|
31
|
+
Performance improvements:
|
|
32
|
+
|
|
33
|
+
- Small arrays: +14-18% faster
|
|
34
|
+
- Medium arrays: +6-151% faster (huge improvement for last-match scenarios)
|
|
35
|
+
- Repeated lookups: +16% faster
|
|
36
|
+
- Collect multiple values: +52% faster
|
|
37
|
+
|
|
38
|
+
No breaking changes - 100% backward compatible.
|
|
39
|
+
|
|
40
|
+
## 0.5.79
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- f93c97c: Complete Meta to Tag migration
|
|
45
|
+
|
|
46
|
+
BREAKING CHANGE: Meta namespace removed, all metas properties and meta parameters renamed to tags
|
|
47
|
+
|
|
48
|
+
- Remove Meta namespace entirely
|
|
49
|
+
- Rename all metas properties to tags
|
|
50
|
+
- Rename all meta parameters to tags
|
|
51
|
+
- Rename scopeMeta parameter to scopeTags
|
|
52
|
+
- Update all documentation to reflect Tag API
|
|
53
|
+
- No backward compatibility
|
|
54
|
+
|
|
3
55
|
## 0.5.78
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|