@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.
Files changed (2) hide show
  1. package/CHANGELOG.md +13 -0
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pikku/core",
3
- "version": "0.12.33",
3
+ "version": "0.12.34",
4
4
  "author": "yasser.fadl@gmail.com",
5
5
  "license": "MIT",
6
6
  "module": "dist/index.js",