Releases: jahands/workers-packages
Releases · jahands/workers-packages
prefixed-nanoid@0.2.1
Patch Changes
-
061199c: chore: fix InferId example in README.md
InferIdrequires usingas constincreatePrefixedNanoIds():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
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
Patch Changes
- fc8fec7: chore: update dagger to 0.20.0
turbo-config@0.4.0
Minor Changes
- 819b28c: feat: use versioned schema url by default
dagger-env@0.6.6
Patch Changes
- 80ff81c: chore: bump @dagger.io/dagger to 0.19.9 in dev deps
workers-tagged-logger@1.0.0
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
Minor Changes
- 3214542: feat: log custom fields when logging errors
workers-tagged-logger@0.14.0
Minor Changes
- fc29367: feat: include cause when stringifying errors
cron-workflow@0.6.2
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
Patch Changes
- 6b7d796: fix: add env generic to CronController class