@mastra/inngest 1.4.1-alpha.0 → 1.5.0-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,69 @@
1
1
  # @mastra/inngest
2
2
 
3
+ ## 1.5.0-alpha.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Added `connect()` to support Inngest Connect for Mastra workflows. Use this when running workflow execution in a dedicated long-running worker process that should not expose an inbound HTTP endpoint: ([#17064](https://github.com/mastra-ai/mastra/pull/17064))
8
+
9
+ ```ts
10
+ import { connect } from '@mastra/inngest/connect';
11
+
12
+ await connect({
13
+ mastra,
14
+ inngest,
15
+ instanceId: 'worker-1',
16
+ maxWorkerConcurrency: 10,
17
+ });
18
+ ```
19
+
20
+ `connect()` uses the same Mastra workflow functions as `serve()`, including nested and cron workflows. `serve()` is unchanged.
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies [[`d779de3`](https://github.com/mastra-ai/mastra/commit/d779de3cd9d2e7ed8110547190e2f15e786a0e41), [`1750c97`](https://github.com/mastra-ai/mastra/commit/1750c975d6179fbf6db2813b15229d4f8f23fc55), [`0e32507`](https://github.com/mastra-ai/mastra/commit/0e32507962cdfa5569b7bda5bc6fb3dd34e40b03), [`3a081c1`](https://github.com/mastra-ai/mastra/commit/3a081c1255c5ae8c99f6dad91cc612934ef6f2bd), [`fe9eacd`](https://github.com/mastra-ai/mastra/commit/fe9eacd9545a0a9d64aad31c9fa90294a425289e), [`db79c86`](https://github.com/mastra-ai/mastra/commit/db79c86c60723d57e02f9636ca2611bd4515f194)]:
25
+ - @mastra/core@1.38.0-alpha.2
26
+
27
+ ## 1.4.1
28
+
29
+ ### Patch Changes
30
+
31
+ - You can now run ACP-compatible coding agents as Mastra tools or lightweight subagents. ACP agents support incremental response streaming and can be used anywhere Mastra accepts a `SubAgent`, including supervisor delegation and workflow steps. ([#16423](https://github.com/mastra-ai/mastra/pull/16423))
32
+
33
+ ```ts
34
+ import { createACPTool, AcpAgent } from '@mastra/acp';
35
+
36
+ export const codingTool = createACPTool({
37
+ id: 'coding-agent',
38
+ command: 'my-acp-agent',
39
+ });
40
+
41
+ export const codingAgent = new AcpAgent({
42
+ id: 'coding-agent',
43
+ command: 'my-acp-agent',
44
+ });
45
+ ```
46
+
47
+ You can also wire an `AcpAgent` into a supervisor or workflow as a `SubAgent`-compatible implementation:
48
+
49
+ ```ts
50
+ import { Agent } from '@mastra/core/agent';
51
+
52
+ export const supervisor = new Agent({
53
+ name: 'supervisor',
54
+ instructions: 'Delegate coding tasks to the ACP agent.',
55
+ model,
56
+ agents: {
57
+ codingAgent,
58
+ },
59
+ });
60
+ ```
61
+
62
+ Workflows and the Inngest workflow adapter now recognize `SubAgent`-compatible implementations when creating agent-backed workflow steps.
63
+
64
+ - Updated dependencies [[`20787de`](https://github.com/mastra-ai/mastra/commit/20787de5965234a1af28fe35f49437c537dbfa0d), [`784ad98`](https://github.com/mastra-ai/mastra/commit/784ad989549de91dc5d33ab8ef36caa6f7dcd34e), [`fceae1f`](https://github.com/mastra-ai/mastra/commit/fceae1f5f5db4722cb078a663c6eb4bd22944123), [`090a647`](https://github.com/mastra-ai/mastra/commit/090a647ba5a66d36f203f9f49457e03a1ff4e6fb), [`bf02acb`](https://github.com/mastra-ai/mastra/commit/bf02acbb8a6110f638ac844e89f1ebf04cb7fe74), [`090a647`](https://github.com/mastra-ai/mastra/commit/090a647ba5a66d36f203f9f49457e03a1ff4e6fb), [`bdb4cbf`](https://github.com/mastra-ai/mastra/commit/bdb4cbf8ba4b685d7481f28bb9dc3de6c79c9ed2), [`0fd3fbe`](https://github.com/mastra-ai/mastra/commit/0fd3fbe40fb63657aedd72f6e7b38c8e8ee6940d), [`f84447d`](https://github.com/mastra-ai/mastra/commit/f84447d6c80f3471836a9b300d246b331fb47e0d), [`a1a5b3e`](https://github.com/mastra-ai/mastra/commit/a1a5b3e42ab2ca5161ea21db59ebf28442680fa7), [`af84f57`](https://github.com/mastra-ai/mastra/commit/af84f571ed762e92e8e61c5f9a72363520914274), [`8b3c6f9`](https://github.com/mastra-ai/mastra/commit/8b3c6f90f7879833ba7d1bc70937e1d8f69d0804), [`fed0475`](https://github.com/mastra-ai/mastra/commit/fed0475ccfea31e4fc251469ac05640d0742c1f0), [`0d53730`](https://github.com/mastra-ai/mastra/commit/0d53730c1ed87ef80c87caa5701c4170ea8028e6), [`522f44d`](https://github.com/mastra-ai/mastra/commit/522f44d947214bfc06cff50599bae1ef3494880d)]:
65
+ - @mastra/core@1.34.0
66
+
3
67
  ## 1.4.1-alpha.0
4
68
 
5
69
  ### Patch Changes