@mastra/inngest 0.11.1-alpha.0 → 0.11.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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +26 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.5.0
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 11632ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
13
|
[36mWriting package typings: /home/runner/work/mastra/mastra/workflows/inngest/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
14
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
15
|
[36mWriting package typings: /home/runner/work/mastra/mastra/workflows/inngest/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 6309ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
20
|
[32mCJS[39m [1mdist/index.cjs [22m[32m34.53 KB[39m
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 341ms
|
|
22
22
|
[32mESM[39m [1mdist/index.js [22m[32m34.32 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
23
|
+
[32mESM[39m ⚡️ Build success in 341ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @mastra/inngest
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e423a31: Fix bug where nested workflows would cause Inngest duplicate key error
|
|
8
|
+
- 764f86a: Introduces the runCount property in the execution parameters for the steps execute function
|
|
9
|
+
- 1760a1c: Use workflow stream in playground instead of watch
|
|
10
|
+
- 038e5ae: Add cancel workflow run
|
|
11
|
+
- 81a1b3b: Update peerdeps
|
|
12
|
+
- Updated dependencies [9dda1ac]
|
|
13
|
+
- Updated dependencies [c984582]
|
|
14
|
+
- Updated dependencies [7e801dd]
|
|
15
|
+
- Updated dependencies [a606c75]
|
|
16
|
+
- Updated dependencies [7aa70a4]
|
|
17
|
+
- Updated dependencies [764f86a]
|
|
18
|
+
- Updated dependencies [1760a1c]
|
|
19
|
+
- Updated dependencies [038e5ae]
|
|
20
|
+
- Updated dependencies [7dda16a]
|
|
21
|
+
- Updated dependencies [5ebfcdd]
|
|
22
|
+
- Updated dependencies [b2d0c91]
|
|
23
|
+
- Updated dependencies [4e809ad]
|
|
24
|
+
- Updated dependencies [57929df]
|
|
25
|
+
- Updated dependencies [b7852ed]
|
|
26
|
+
- Updated dependencies [6320a61]
|
|
27
|
+
- @mastra/core@0.10.9
|
|
28
|
+
|
|
3
29
|
## 0.11.1-alpha.0
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/inngest",
|
|
3
|
-
"version": "0.11.1
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "Mastra Inngest integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
"tsup": "^8.5.0",
|
|
38
38
|
"typescript": "^5.8.3",
|
|
39
39
|
"vitest": "^3.2.4",
|
|
40
|
-
"@internal/lint": "0.0.
|
|
41
|
-
"@mastra/core": "0.10.9-alpha.0",
|
|
40
|
+
"@internal/lint": "0.0.16",
|
|
42
41
|
"@mastra/libsql": "0.11.0",
|
|
43
|
-
"@mastra/deployer": "0.10.9
|
|
42
|
+
"@mastra/deployer": "0.10.9",
|
|
43
|
+
"@mastra/core": "0.10.9"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
46
|
"@mastra/core": ">=0.10.9-0 <0.11.0-0"
|