Skip to content

Releases: jahands/workers-packages

prefixed-nanoid@0.2.1

19 Mar 10:03

Choose a tag to compare

Patch Changes

  • 061199c: chore: fix InferId example in README.md

    InferId requires using as const in createPrefixedNanoIds():

    import { createPrefixedNanoIds } from 'prefixed-nanoid'
    
    import type { InferId } from 'prefixed-nanoid'
    
    const ids = createPrefixedNanoIds({
      project: { prefix: 'prj', len: 24 },
      user: { prefix: 'usr', len: 16 }
    } as const) // need to add `as const`
    
    type ProjectId = InferId<typeof ids, 'project'>
    type UserId = InferId<typeof ids, 'user'>
    type AnyId = InferId<typeof ids> // union of all configured ID types

prefixed-nanoid@0.2.0

19 Mar 09:47

Choose a tag to compare

Minor Changes

  • 654c0a7: feat: add InferId helper for easily creating ID types

    Example

    import { createPrefixedNanoIds } from 'prefixed-nanoid'
    
    import type { InferId } from 'prefixed-nanoid'
    
    const ids = createPrefixedNanoIds({
      project: { prefix: 'prj', len: 24 },
      user: { prefix: 'usr', len: 16 }
    })
    
    type ProjectId = InferId<typeof ids, 'project'>
    type UserId = InferId<typeof ids, 'user'>
    type AnyId = InferId<typeof ids> // union of all configured ID types

dagger-env@0.6.7

19 Mar 09:47

Choose a tag to compare

Patch Changes

  • fc8fec7: chore: update dagger to 0.20.0

turbo-config@0.4.0

20 Feb 13:09
c034231

Choose a tag to compare

Minor Changes

  • 819b28c: feat: use versioned schema url by default

dagger-env@0.6.6

10 Jan 15:23

Choose a tag to compare

Patch Changes

  • 80ff81c: chore: bump @dagger.io/dagger to 0.19.9 in dev deps

workers-tagged-logger@1.0.0

21 Nov 17:00

Choose a tag to compare

Major Changes

  • bump version to 1.0.0 - this package is supported and should not have breaking changes outside of future major version changes

Patch Changes

  • 057e7f7: chore: move fields above cause

    should make it easier to read custom fields when a cause is present

workers-tagged-logger@0.15.0

21 Nov 16:52

Choose a tag to compare

Minor Changes

  • 3214542: feat: log custom fields when logging errors

workers-tagged-logger@0.14.0

21 Nov 15:57

Choose a tag to compare

Minor Changes

  • fc29367: feat: include cause when stringifying errors

cron-workflow@0.6.2

15 Nov 08:52

Choose a tag to compare

Patch Changes

  • 8a5c5fa: fix: use next run time in workflows instance id

    ensures we don't create duplicate instances (which we occasionally saw happen)

cron-workflow@0.6.1

10 Nov 13:18

Choose a tag to compare

Patch Changes

  • 6b7d796: fix: add env generic to CronController class