Skip to content

v1.6.0

Compare
Choose a tag to compare
@github-actions github-actions released this 03 Jul 09:37
· 397 commits to master since this release
de597e5

Minor Changes

  • #70 4646cd0 Thanks @gearnode! - Introducing maxDuration support

    defer() exposes a new maxDuration configuration:

    const importContacts = (companyId: string, contacts: Contact[]) => {
      //  ...
    };
    
    export default defer(importContacts, {
      maxDuration: 10 // timeout after 10secs
    });

    BREAKING CHANGE: maxDuration has a default value to 30min. Users having executions going over this limit can override it with a higher value { maxDuration: 3600 }

  • #70 c92bb44 Thanks @gearnode! - Allow options for CRON function

Patch Changes