@mastra/inngest 1.0.2-alpha.0 → 1.0.2
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 +9 -0
- package/dist/index.cjs +8 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +8 -4
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/inngest
|
|
2
2
|
|
|
3
|
+
## 1.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix long running steps causing inngest workflow to fail ([#12522](https://github.com/mastra-ai/mastra/pull/12522))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`e6fc281`](https://github.com/mastra-ai/mastra/commit/e6fc281896a3584e9e06465b356a44fe7faade65), [`97be6c8`](https://github.com/mastra-ai/mastra/commit/97be6c8963130fca8a664fcf99d7b3a38e463595), [`2770921`](https://github.com/mastra-ai/mastra/commit/2770921eec4d55a36b278d15c3a83f694e462ee5), [`b1695db`](https://github.com/mastra-ai/mastra/commit/b1695db2d7be0c329d499619c7881899649188d0), [`5fe1fe0`](https://github.com/mastra-ai/mastra/commit/5fe1fe0109faf2c87db34b725d8a4571a594f80e), [`4133d48`](https://github.com/mastra-ai/mastra/commit/4133d48eaa354cdb45920dc6265732ffbc96788d), [`5dd01cc`](https://github.com/mastra-ai/mastra/commit/5dd01cce68d61874aa3ecbd91ee17884cfd5aca2), [`13e0a2a`](https://github.com/mastra-ai/mastra/commit/13e0a2a2bcec01ff4d701274b3727d5e907a6a01), [`f6673b8`](https://github.com/mastra-ai/mastra/commit/f6673b893b65b7d273ad25ead42e990704cc1e17), [`cd6be8a`](https://github.com/mastra-ai/mastra/commit/cd6be8ad32741cd41cabf508355bb31b71e8a5bd), [`9eb4e8e`](https://github.com/mastra-ai/mastra/commit/9eb4e8e39efbdcfff7a40ff2ce07ce2714c65fa8), [`c987384`](https://github.com/mastra-ai/mastra/commit/c987384d6c8ca844a9701d7778f09f5a88da7f9f), [`cb8cc12`](https://github.com/mastra-ai/mastra/commit/cb8cc12bfadd526aa95a01125076f1da44e4afa7), [`aa37c84`](https://github.com/mastra-ai/mastra/commit/aa37c84d29b7db68c72517337932ef486c316275), [`62f5d50`](https://github.com/mastra-ai/mastra/commit/62f5d5043debbba497dacb7ab008fe86b38b8de3), [`47eba72`](https://github.com/mastra-ai/mastra/commit/47eba72f0397d0d14fbe324b97940c3d55e5a525)]:
|
|
10
|
+
- @mastra/core@1.2.0
|
|
11
|
+
|
|
3
12
|
## 1.0.2-alpha.0
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -1924,7 +1924,8 @@ function createStepFromProcessor(processor) {
|
|
|
1924
1924
|
...baseContext,
|
|
1925
1925
|
messages,
|
|
1926
1926
|
messageList: passThrough.messageList,
|
|
1927
|
-
systemMessages: systemMessages ?? []
|
|
1927
|
+
systemMessages: systemMessages ?? [],
|
|
1928
|
+
state: {}
|
|
1928
1929
|
});
|
|
1929
1930
|
if (result instanceof agent.MessageList) {
|
|
1930
1931
|
if (result !== passThrough.messageList) {
|
|
@@ -1995,7 +1996,8 @@ function createStepFromProcessor(processor) {
|
|
|
1995
1996
|
providerOptions,
|
|
1996
1997
|
modelSettings,
|
|
1997
1998
|
structuredOutput,
|
|
1998
|
-
steps: steps ?? []
|
|
1999
|
+
steps: steps ?? [],
|
|
2000
|
+
state: {}
|
|
1999
2001
|
});
|
|
2000
2002
|
const validatedResult = await processors.ProcessorRunner.validateAndFormatProcessInputStepResult(result, {
|
|
2001
2003
|
messageList: passThrough.messageList,
|
|
@@ -2088,7 +2090,8 @@ function createStepFromProcessor(processor) {
|
|
|
2088
2090
|
const result = await processor.processOutputResult({
|
|
2089
2091
|
...baseContext,
|
|
2090
2092
|
messages,
|
|
2091
|
-
messageList: passThrough.messageList
|
|
2093
|
+
messageList: passThrough.messageList,
|
|
2094
|
+
state: {}
|
|
2092
2095
|
});
|
|
2093
2096
|
if (result instanceof agent.MessageList) {
|
|
2094
2097
|
if (result !== passThrough.messageList) {
|
|
@@ -2154,7 +2157,8 @@ function createStepFromProcessor(processor) {
|
|
|
2154
2157
|
toolCalls,
|
|
2155
2158
|
text,
|
|
2156
2159
|
systemMessages: systemMessages ?? [],
|
|
2157
|
-
steps: steps ?? []
|
|
2160
|
+
steps: steps ?? [],
|
|
2161
|
+
state: {}
|
|
2158
2162
|
});
|
|
2159
2163
|
if (result instanceof agent.MessageList) {
|
|
2160
2164
|
if (result !== passThrough.messageList) {
|