Skip to content

Releases: jahands/workers-packages

workers-tagged-logger@0.3.8

11 Dec 14:49
Compare
Choose a tag to compare

Patch Changes

  • 794eb5b: fix: await als.run() for improved stack traces (hopefully)

http-codex@0.4.4

21 Oct 08:39
Compare
Choose a tag to compare

Patch Changes

workers-tagged-logger@0.3.7

16 Oct 16:32
Compare
Choose a tag to compare

Patch Changes

  • a50da50: fix: Update tests to expect string message
  • 61feaf4: chore: Narrow ConsoleLog.message type
  • 77f30ab: chore: Narrow message type

http-codex@0.4.3

12 Oct 09:26
Compare
Choose a tag to compare

Patch Changes

  • 8cd7263: Remove bun from dependencies to speed up pnpm install time

    I originally added bun as a dep here for "correctness", but it made pnpm install time ~tripple. We already have bun in .mise.toml, which is good enough for me.

@jahands/otel-cf-workers@0.1.13

12 Oct 09:26
Compare
Choose a tag to compare

Patch Changes

  • 8cd7263: Remove bun from dependencies to speed up pnpm install time

    I originally added bun as a dep here for "correctness", but it made pnpm install time ~tripple. We already have bun in .mise.toml, which is good enough for me.

http-codex@0.4.2

11 Oct 14:27
Compare
Choose a tag to compare

Patch Changes

  • 3b5dd29: fix: improve tree-shaking of root import when only importing isNullBodyStatus

http-codex@0.4.1

11 Oct 14:17
Compare
Choose a tag to compare

Patch Changes

  • 24dd518: fix: hardcode null body statuses to improve tree shaking

http-codex@0.4.0

11 Oct 14:06
Compare
Choose a tag to compare

Minor Changes

  • 0194ca5: feat: Add isNullBodyStatus()

    This helper is useful in situations where you need to fetch a resource and then customize the response returned.

    Example:

    import { httpStatus, isNullBodyStatus } from 'http-codex'
    
    const res = await fetch(url) // Might be 204, 304, etc.
    return new Response(isNullBodyStatus(res.status) ? null : res.body, {
    	// Useful for when we need to customize response headers/init/etc.
    })

workers-tagged-logger@0.3.6

07 Oct 12:13
Compare
Choose a tag to compare

Patch Changes

  • b6447f2: chore: update readme to shorten install instructions

workers-tagged-logger@0.3.5

07 Oct 11:56
Compare
Choose a tag to compare

Patch Changes

  • 9d8540b: chore: Add installation instructions for other package managers
  • 7ae8b95: chore: update tsconfig
  • 10cd896: chore: update dependencies
  • e89bf36: fix: revert hono version due to breaking change
  • fdec52a: fix: spelling in readme