@mastra/inngest 0.12.3-alpha.5 → 0.12.4-alpha.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 CHANGED
@@ -1,5 +1,79 @@
1
1
  # @mastra/inngest
2
2
 
3
+ ## 0.12.4-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - fd83526: Stream agent events with workflow `.streamVNext()`
8
+ - c9f4e4a: Pass tracing context to scorer run
9
+ - Updated dependencies [fd83526]
10
+ - Updated dependencies [d0b90ab]
11
+ - Updated dependencies [6f5eb7a]
12
+ - Updated dependencies [a01cf14]
13
+ - Updated dependencies [a9e50ee]
14
+ - Updated dependencies [5397eb4]
15
+ - Updated dependencies [c9f4e4a]
16
+ - Updated dependencies [0acbc80]
17
+ - @mastra/core@0.16.0-alpha.0
18
+
19
+ ## 0.12.3
20
+
21
+ ### Patch Changes
22
+
23
+ - 85ef90b: Return nested workflow steps information in getWorkflowRunExecutionResult
24
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
25
+ - 4474d04: fix: do not pass tracing context to score run
26
+ - e3d8fea: Support Inngest flow control features for Mastra Inngest workflows
27
+ - ad78bfc: "piped tracingContext through inngest and mcp packages"
28
+ - 7f3b8da: Automatically pipe writer to workflows as a tool.
29
+ Also changed start, finish, step-output events to be workflow-start, workflow-finish and workflow-step-output
30
+ - f210435: Inngest: move zod to peerDependencies
31
+ - 5de1555: Fixed tracingContext on tool executions in AI tracing
32
+ - 1ed5a3e: Support workflows for run experiments
33
+ - Updated dependencies [ab48c97]
34
+ - Updated dependencies [85ef90b]
35
+ - Updated dependencies [aedbbfa]
36
+ - Updated dependencies [ff89505]
37
+ - Updated dependencies [637f323]
38
+ - Updated dependencies [de3cbc6]
39
+ - Updated dependencies [c19bcf7]
40
+ - Updated dependencies [4474d04]
41
+ - Updated dependencies [183dc95]
42
+ - Updated dependencies [a1111e2]
43
+ - Updated dependencies [b42a961]
44
+ - Updated dependencies [61debef]
45
+ - Updated dependencies [9beaeff]
46
+ - Updated dependencies [29de0e1]
47
+ - Updated dependencies [f643c65]
48
+ - Updated dependencies [00c74e7]
49
+ - Updated dependencies [fef7375]
50
+ - Updated dependencies [e3d8fea]
51
+ - Updated dependencies [45e4d39]
52
+ - Updated dependencies [9eee594]
53
+ - Updated dependencies [7149d8d]
54
+ - Updated dependencies [822c2e8]
55
+ - Updated dependencies [979912c]
56
+ - Updated dependencies [7dcf4c0]
57
+ - Updated dependencies [4106a58]
58
+ - Updated dependencies [ad78bfc]
59
+ - Updated dependencies [0302f50]
60
+ - Updated dependencies [6ac697e]
61
+ - Updated dependencies [74db265]
62
+ - Updated dependencies [0ce418a]
63
+ - Updated dependencies [af90672]
64
+ - Updated dependencies [8387952]
65
+ - Updated dependencies [7f3b8da]
66
+ - Updated dependencies [905352b]
67
+ - Updated dependencies [599d04c]
68
+ - Updated dependencies [56041d0]
69
+ - Updated dependencies [3412597]
70
+ - Updated dependencies [5eca5d2]
71
+ - Updated dependencies [f2cda47]
72
+ - Updated dependencies [5de1555]
73
+ - Updated dependencies [cfd377a]
74
+ - Updated dependencies [1ed5a3e]
75
+ - @mastra/core@0.15.3
76
+
3
77
  ## 0.12.3-alpha.5
4
78
 
5
79
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -658,6 +658,7 @@ var InngestExecutionEngine = class extends workflows.DefaultExecutionEngine {
658
658
  emitter,
659
659
  abortController,
660
660
  runtimeContext,
661
+ executionContext,
661
662
  writableStream,
662
663
  tracingContext
663
664
  }) {
@@ -703,6 +704,8 @@ var InngestExecutionEngine = class extends workflows.DefaultExecutionEngine {
703
704
  abortController?.abort();
704
705
  },
705
706
  [_constants.EMITTER_SYMBOL]: emitter,
707
+ // TODO: add streamVNext support
708
+ [_constants.STREAM_FORMAT_SYMBOL]: executionContext.format,
706
709
  engine: { step: this.inngestStep },
707
710
  abortSignal: abortController?.signal,
708
711
  writer: new tools.ToolStream(
@@ -739,6 +742,7 @@ var InngestExecutionEngine = class extends workflows.DefaultExecutionEngine {
739
742
  emitter,
740
743
  abortController,
741
744
  runtimeContext,
745
+ executionContext,
742
746
  writableStream,
743
747
  tracingContext
744
748
  }) {
@@ -785,6 +789,8 @@ var InngestExecutionEngine = class extends workflows.DefaultExecutionEngine {
785
789
  abortController?.abort();
786
790
  },
787
791
  [_constants.EMITTER_SYMBOL]: emitter,
792
+ [_constants.STREAM_FORMAT_SYMBOL]: executionContext.format,
793
+ // TODO: add streamVNext support
788
794
  engine: { step: this.inngestStep },
789
795
  abortSignal: abortController?.signal,
790
796
  writer: new tools.ToolStream(
@@ -1193,7 +1199,8 @@ var InngestExecutionEngine = class extends workflows.DefaultExecutionEngine {
1193
1199
  workflowId: executionContext.workflowId,
1194
1200
  stepId: step.id,
1195
1201
  runtimeContext,
1196
- disableScorers
1202
+ disableScorers,
1203
+ tracingContext: { currentSpan: stepAISpan }
1197
1204
  });
1198
1205
  }
1199
1206
  });
@@ -1304,6 +1311,8 @@ var InngestExecutionEngine = class extends workflows.DefaultExecutionEngine {
1304
1311
  abortController.abort();
1305
1312
  },
1306
1313
  [_constants.EMITTER_SYMBOL]: emitter,
1314
+ [_constants.STREAM_FORMAT_SYMBOL]: executionContext.format,
1315
+ // TODO: add streamVNext support
1307
1316
  engine: {
1308
1317
  step: this.inngestStep
1309
1318
  },