Skip to content

inngest@3.34.0

Choose a tag to compare

@inngest-release-bot inngest-release-bot released this 25 Mar 14:26
· 396 commits to main since this release
e3e63d8

Minor Changes

  • #919 ebeaaff Thanks @jpwilliams! - Add dependencyInjectionMiddleware(), allowing you to easily add data to function input

    import { dependencyInjectionMiddleware } from "inngest";
    
    const prisma = new Prisma();
    
    const inngest = new Inngest({
      id: "my-app",
      middleware: [dependencyInjectionMiddleware({ prisma })],
    });

Patch Changes

  • #922 3374187 Thanks @jpwilliams! - Error.cause can now be any unknown value, though we still attempt to recursively expand causes until we hit an unknown value