Closed renovate[bot] closed 1 year ago
Latest commit: 3291497450175f38c2bb35063d80c663afb3596a
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
This PR contains the following updates:
2.1.0
->2.4.0
Release Notes
inngest/inngest-js (inngest)
### [`v2.4.0`](https://togithub.com/inngest/inngest-js/blob/HEAD/CHANGELOG.md#240) [Compare Source](https://togithub.com/inngest/inngest-js/compare/v2.3.0...v2.4.0) ##### Minor Changes - [`6cb6719`](https://togithub.com/inngest/inngest-js/commit/6cb6719): Allow filtering of events within triggers ##### Patch Changes - [`55c889c`](https://togithub.com/inngest/inngest-js/commit/55c889c): Expose raw error message if status is unknown ### [`v2.3.0`](https://togithub.com/inngest/inngest-js/blob/HEAD/CHANGELOG.md#230) [Compare Source](https://togithub.com/inngest/inngest-js/compare/v2.2.1...v2.3.0) ##### Minor Changes - [`7792a62`](https://togithub.com/inngest/inngest-js/commit/7792a62): Add support for streaming to `inngest/remix` ### [`v2.2.1`](https://togithub.com/inngest/inngest-js/blob/HEAD/CHANGELOG.md#221) [Compare Source](https://togithub.com/inngest/inngest-js/compare/v2.2.0...v2.2.1) ##### Patch Changes - [`1120e29`](https://togithub.com/inngest/inngest-js/commit/1120e29): Genercize mixed async error; the same symptom can be caused by a few different errors ### [`v2.2.0`](https://togithub.com/inngest/inngest-js/blob/HEAD/CHANGELOG.md#220) [Compare Source](https://togithub.com/inngest/inngest-js/compare/v2.1.0...v2.2.0) ##### Minor Changes - [`d0a8976`](https://togithub.com/inngest/inngest-js/commit/d0a8976): Add support for batching events. Introduces a new configuration to function configurations. ```ts batchEvents?: { maxSize: 100, timeout: "5s" } ``` This will take Inngest start execution when one of the following conditions are met. 1. The batch is full 2. Time is up When the SDK gets invoked, the list of events will be available via a newly exported field `events`. ```ts createFunction( { name: "my func", batchEvents: { maxSize: 100, timeout: "5s" } }, { event: "my/event" }, async ({ event, events, step }) => { // events is accessible with the list of events // event will still be a single event object, which will be the // 1st event of the list. const result = step.run("do something with events", () => { return events.map(() => doSomething()); }); return { success: true, result }; } ); ``` ##### Patch Changes - [`591f73d`](https://togithub.com/inngest/inngest-js/commit/591f73d): Set `ts` field on sent events if undefined - [`1cbf65e`](https://togithub.com/inngest/inngest-js/commit/1cbf65e): Alter registration response to include `modified` for deployment deduplicationConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.