@mastra/inngest 1.2.0 → 1.2.1

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,23 @@
1
1
  # @mastra/inngest
2
2
 
3
+ ## 1.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Add `entityName` to workflow span creation in the Inngest workflow engine, parallel to the core fix in #14949. Without this, workflows created via `init(inngest).createWorkflow({...})` show up as "unknown" in the metrics dashboard's workflow trace volume tab even when they have an explicit `id`. ([#15182](https://github.com/mastra-ai/mastra/pull/15182))
8
+
9
+ - Updated dependencies [[`ef94400`](https://github.com/mastra-ai/mastra/commit/ef9440049402596b31f2ab976c5e4508f6cb6c91), [`3db852b`](https://github.com/mastra-ai/mastra/commit/3db852bff74e29f60d415a7b0f1583d6ce2bad92)]:
10
+ - @mastra/core@1.24.1
11
+
12
+ ## 1.2.1-alpha.0
13
+
14
+ ### Patch Changes
15
+
16
+ - Add `entityName` to workflow span creation in the Inngest workflow engine, parallel to the core fix in #14949. Without this, workflows created via `init(inngest).createWorkflow({...})` show up as "unknown" in the metrics dashboard's workflow trace volume tab even when they have an explicit `id`. ([#15182](https://github.com/mastra-ai/mastra/pull/15182))
17
+
18
+ - Updated dependencies [[`ef94400`](https://github.com/mastra-ai/mastra/commit/ef9440049402596b31f2ab976c5e4508f6cb6c91)]:
19
+ - @mastra/core@1.24.1-alpha.0
20
+
3
21
  ## 1.2.0
4
22
 
5
23
  ### Minor Changes
package/dist/index.cjs CHANGED
@@ -1526,6 +1526,7 @@ var InngestWorkflow = class _InngestWorkflow extends workflows.Workflow {
1526
1526
  name: `workflow run: '${this.id}'`,
1527
1527
  entityType: observability.EntityType.WORKFLOW_RUN,
1528
1528
  entityId: this.id,
1529
+ entityName: this.id,
1529
1530
  input: inputData,
1530
1531
  metadata: {
1531
1532
  resourceId,