@pikku/core 0.12.33 → 0.12.34
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 +13 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 0.12.34
|
|
2
|
+
|
|
3
|
+
### Patch Changes
|
|
4
|
+
|
|
5
|
+
- 2eaa9fd: fix(workflow): seed sessionService when session already present on wire
|
|
6
|
+
|
|
7
|
+
When a parent workflow propagates its session to a child workflow via
|
|
8
|
+
`wire.session`, `resolveSession` skipped `setInitial` because `!wire.session`
|
|
9
|
+
was false, so `sessionService.freezeInitial()` returned `undefined` and
|
|
10
|
+
immediately overwrote the propagated session. We now seed the sessionService
|
|
11
|
+
with the existing `wire.session` so `freezeInitial()` returns the correct
|
|
12
|
+
session for `pikkuFunc` steps inside child workflows.
|
|
13
|
+
|
|
1
14
|
## 0.12.33
|
|
2
15
|
|
|
3
16
|
### Patch Changes
|