@pumped-fn/lite 1.0.0 → 1.1.0
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 +41 -0
- package/README.md +568 -134
- package/dist/index.cjs +100 -14
- package/dist/index.d.cts +55 -7
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +55 -7
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +100 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# @pumped-fn/lite
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 2dd9ee9: Add parse functions for Tag and Flow with full type inference
|
|
8
|
+
|
|
9
|
+
- Add `parse` property to Tag for runtime validation (sync-only)
|
|
10
|
+
- Add `parse` property to Flow for input validation (async-supported)
|
|
11
|
+
- Add `ParseError` class with structured error context (phase, label, cause)
|
|
12
|
+
- Add optional `name` property to Flow for better error messages
|
|
13
|
+
- Type inference: `TInput` automatically inferred from parser return type
|
|
14
|
+
|
|
15
|
+
- ee381f5: Add sequential invalidation chain with loop detection
|
|
16
|
+
|
|
17
|
+
- Invalidations now execute sequentially in dependency order (A → B → C)
|
|
18
|
+
- Infinite loop detection throws with helpful error message showing chain path
|
|
19
|
+
- New `scope.flush()` method to await pending invalidations
|
|
20
|
+
- State transitions now happen AFTER cleanups complete (matching C3-201 docs)
|
|
21
|
+
- Self-invalidation during factory execution remains deferred (poll-and-refresh pattern)
|
|
22
|
+
|
|
23
|
+
## 1.0.1
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 9ee6ac2: Add comprehensive README documentation for release
|
|
28
|
+
|
|
29
|
+
- Add installation instructions
|
|
30
|
+
- Add quick start guide with complete example
|
|
31
|
+
- Document all core concepts (Atoms, Flows, Controllers, Tags, Presets, Extensions)
|
|
32
|
+
- Add lifecycle diagrams (state machine, resolution flow, invalidation flow)
|
|
33
|
+
- Add complete API reference tables
|
|
34
|
+
- Add comparison with @pumped-fn/core-next
|
|
35
|
+
- Add guidance on when to choose lite vs core-next
|
|
36
|
+
|
|
37
|
+
- 219fce4: Update MIGRATION.md with accurate API documentation
|
|
38
|
+
|
|
39
|
+
- Add Controller.on() event filtering (`'resolved'`, `'resolving'`, `'*'`)
|
|
40
|
+
- Add scope.select() fine-grained subscription example
|
|
41
|
+
- Add Fine-grained select() to feature comparison table
|
|
42
|
+
- Fix Quick Reference table with event filtering syntax
|
|
43
|
+
|
|
3
44
|
## 1.0.0
|
|
4
45
|
|
|
5
46
|
### Major Changes
|