inngest 3.6.2 → 3.7.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 +16 -0
- package/LICENSE.md +201 -674
- package/components/Inngest.d.ts +23 -10
- package/components/Inngest.d.ts.map +1 -1
- package/components/Inngest.js.map +1 -1
- package/components/InngestCommHandler.js +1 -1
- package/components/InngestCommHandler.js.map +1 -1
- package/components/InngestFunction.d.ts +5 -4
- package/components/InngestFunction.d.ts.map +1 -1
- package/components/InngestFunction.js +4 -0
- package/components/InngestFunction.js.map +1 -1
- package/components/InngestStepTools.d.ts +23 -3
- package/components/InngestStepTools.d.ts.map +1 -1
- package/components/InngestStepTools.js +32 -0
- package/components/InngestStepTools.js.map +1 -1
- package/components/execution/v0.d.ts.map +1 -1
- package/components/execution/v0.js +1 -0
- package/components/execution/v0.js.map +1 -1
- package/components/execution/v1.d.ts.map +1 -1
- package/components/execution/v1.js +17 -0
- package/components/execution/v1.js.map +1 -1
- package/helpers/consts.d.ts +2 -1
- package/helpers/consts.d.ts.map +1 -1
- package/helpers/consts.js +1 -0
- package/helpers/consts.js.map +1 -1
- package/helpers/functions.d.ts +2 -1
- package/helpers/functions.d.ts.map +1 -1
- package/helpers/functions.js +1 -1
- package/helpers/functions.js.map +1 -1
- package/index.d.ts +1 -1
- package/index.d.ts.map +1 -1
- package/index.js.map +1 -1
- package/next.d.ts +2 -0
- package/next.d.ts.map +1 -1
- package/next.js +13 -6
- package/next.js.map +1 -1
- package/package.json +1 -1
- package/types.d.ts +18 -2
- package/types.d.ts.map +1 -1
- package/types.js +1 -0
- package/types.js.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# inngest
|
|
2
2
|
|
|
3
|
+
## 3.7.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#421](https://github.com/inngest/inngest-js/pull/421) [`471d11f`](https://github.com/inngest/inngest-js/commit/471d11fce1cee246c017bc6c089f0f5fb5f85d1c) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Fix serverless use of `inngest/next` with `next@>=13.0.0 <13.5.0` failing to return a response, as well as `next@>=13.5.0` logging the same error
|
|
8
|
+
|
|
9
|
+
## 3.7.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#368](https://github.com/inngest/inngest-js/pull/368) [`e7e845e`](https://github.com/inngest/inngest-js/commit/e7e845e82d426b7017afeb0021f003f78edfaa5a) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Add `step.invoke()`, providing the ability to directly invoke a function as a step
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#415](https://github.com/inngest/inngest-js/pull/415) [`ea8dc6f`](https://github.com/inngest/inngest-js/commit/ea8dc6f539942d713bafd4e85aec367e4e23f21d) Thanks [@jpwilliams](https://github.com/jpwilliams)! - Move to Apache License 2.0
|
|
18
|
+
|
|
3
19
|
## 3.6.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|