Skip to content

v0.8.1

Choose a tag to compare

@github-actions github-actions released this 04 Sep 13:11
· 5 commits to main since this release
21cb996

Patch Changes

  • 3038bec: Upgrade @beesolve/lint-config to 0.3.0 and add the newly-required oxlint-tsgolint peer dependency, which enables type-aware linting.

    Resolve the findings the stricter rules surface in the shipped handler/stream templates and tests:

    • Replace process.env as Record<string, string> casts with a definedEnv() helper that filters out undefined values.
    • Use HttpMethod.ANY instead of "ANY" as never in the CDK tests.
    • Drop redundant result-type assertions on the single-arm Bun handler result, and narrow the Node handler's v1 | v2 result union via small typed helpers.
    • Prefix intentional fire-and-forget calls (mock.module, server.stop) with void to satisfy no-floating-promises.