@pumped-fn/core-next 0.5.89 → 0.5.91
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 +25 -0
- package/dist/index.cjs +438 -404
- package/dist/index.d.cts +33 -16
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +33 -16
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +439 -390
- package/dist/index.mjs.map +1 -1
- package/package.json +12 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @pumped-fn/core-next
|
|
2
2
|
|
|
3
|
+
## 0.5.91
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ec181f8: Fix tag resolution to use execution context instead of scope
|
|
8
|
+
|
|
9
|
+
- Tags in flow dependencies now correctly resolve from execution context, not scope
|
|
10
|
+
- Added `executionContext` parameter to `scope.resolve()` for context-specific resolution
|
|
11
|
+
- Added type-safe `hasTagStore()` type guard replacing `any` casts
|
|
12
|
+
- Added error cleanup for `contextResolvedValue` on resolution failure
|
|
13
|
+
- Optimized constructor to skip cache operations for execution context accessors
|
|
14
|
+
- Added memory profiling tests validating ~5KB per context overhead
|
|
15
|
+
- Added comprehensive test coverage for concurrent and nested context scenarios
|
|
16
|
+
|
|
17
|
+
## 0.5.90
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- bcf91ca: Fix type mappings for tsdown beta.50 and revert namespace aliases
|
|
22
|
+
|
|
23
|
+
- Update package.json exports to use .d.mts/.d.cts extensions instead of .d.ts
|
|
24
|
+
- Revert from `export * as` pattern to const declarations for smaller bundle size
|
|
25
|
+
- Add main/module/types fields to React package for consistency
|
|
26
|
+
- Update skill references to use correct import paths
|
|
27
|
+
|
|
3
28
|
## 0.5.89
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|