@pumped-fn/core-next 0.5.84 → 0.5.86
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 +42 -0
- package/dist/index.cjs +325 -102
- package/dist/index.d.cts +56 -18
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +56 -18
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +321 -99
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @pumped-fn/core-next
|
|
2
2
|
|
|
3
|
+
## 0.5.86
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2e8c85e: Consolidate tag system tests and fix Tag.Container type safety
|
|
8
|
+
|
|
9
|
+
- Consolidate 7 overlapping tag test files into single organized tag.test.ts (291 tests)
|
|
10
|
+
- Use source-first organization with test.each patterns (Map, Array, Scope)
|
|
11
|
+
- Add comprehensive Tag.Container support tests (8 new tests)
|
|
12
|
+
- Fix Tag.Container support by using isContainer type guard instead of type assertions
|
|
13
|
+
- Remove tests accessing internal scope methods (resolveTag, resolveTagExecutor)
|
|
14
|
+
- Properly handle optional Tag.Container.tags property
|
|
15
|
+
|
|
16
|
+
- bd22240: Extract ExecutionContext as standalone primitive
|
|
17
|
+
|
|
18
|
+
- Add `ExecutionContext.Context` interface with lifecycle tracking
|
|
19
|
+
- Add `ExecutionContext.Details` for execution metadata
|
|
20
|
+
- Add `Scope.createExecution()` for creating execution contexts
|
|
21
|
+
- Consolidate Flow.Context and Flow.Execution around ExecutionContext
|
|
22
|
+
- Add tag inheritance through parent context chain
|
|
23
|
+
- Add `ExecutionOperation.executionContext` field for extensions
|
|
24
|
+
- Enable new patterns beyond Flow (streaming, long-running tasks)
|
|
25
|
+
- Maintain backward compatibility with Flow API
|
|
26
|
+
|
|
27
|
+
- fc40aea: Add spread tags syntax to flow() matching provide()/derive() pattern
|
|
28
|
+
- c6d3cef: Improve flow spread tag handling, add tag merge helper, and document/test the new behavior.
|
|
29
|
+
- bd22240: Fix duplicate ExecutionContext creation in Scope.~executeFlow
|
|
30
|
+
|
|
31
|
+
- Remove redundant executionContext creation in Scope.~executeFlow
|
|
32
|
+
- Use FlowContext as single ExecutionContext instance per Flow execution
|
|
33
|
+
- Remove executionContext field from Extension.ExecutionOperation type
|
|
34
|
+
- Remove executionContext field from Flow.Execution interface
|
|
35
|
+
- Update documentation to reflect Tag.Store-based extension API
|
|
36
|
+
|
|
37
|
+
## 0.5.85
|
|
38
|
+
|
|
39
|
+
### Patch Changes
|
|
40
|
+
|
|
41
|
+
- 6deb01a: Fix Flow.Execution type references in scope implementation
|
|
42
|
+
|
|
43
|
+
Replace incorrect Flow.FlowExecution type with Flow.Execution in all scope.ts method signatures and internal tracking. Resolves type errors in exec method overloads.
|
|
44
|
+
|
|
3
45
|
## 0.5.84
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|