Releases: jahands/workers-packages
Releases · jahands/workers-packages
workers-tagged-logger@0.3.8
Patch Changes
- 794eb5b: fix: await als.run() for improved stack traces (hopefully)
http-codex@0.4.4
Patch Changes
- f15b06c: fix example in README
workers-tagged-logger@0.3.7
http-codex@0.4.3
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
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
Patch Changes
- 3b5dd29: fix: improve tree-shaking of root import when only importing isNullBodyStatus
http-codex@0.4.1
Patch Changes
- 24dd518: fix: hardcode null body statuses to improve tree shaking
http-codex@0.4.0
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
Patch Changes
- b6447f2: chore: update readme to shorten install instructions