@mastra/inngest 1.4.1 → 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 +24 -0
- package/dist/chunk-Q64WQPOH.cjs +1836 -0
- package/dist/chunk-Q64WQPOH.cjs.map +1 -0
- package/dist/chunk-R2J5O4MH.js +1829 -0
- package/dist/chunk-R2J5O4MH.js.map +1 -0
- package/dist/connect.cjs +12 -0
- package/dist/connect.cjs.map +1 -0
- package/dist/connect.d.ts +43 -0
- package/dist/connect.d.ts.map +1 -0
- package/dist/connect.js +3 -0
- package/dist/connect.js.map +1 -0
- package/dist/durable-agent/create-inngest-agentic-workflow.d.ts +1 -0
- package/dist/durable-agent/create-inngest-agentic-workflow.d.ts.map +1 -1
- package/dist/functions.d.ts +7 -0
- package/dist/functions.d.ts.map +1 -0
- package/dist/index.cjs +28 -1803
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -1799
- package/dist/index.js.map +1 -1
- package/dist/serve.d.ts.map +1 -1
- package/package.json +19 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
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
|
+
|
|
3
27
|
## 1.4.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|