Skip to content

v0.2.2

Choose a tag to compare

@github-actions github-actions released this 13 Jun 02:08
· 4 commits to main since this release

tokenleader v0.2.2

Merges the project's first external contribution — PR #1 by @wing-anara.

Fixed

  • Bounded, newline-aligned windowed reads (src/parser/read-slice.ts, 64 MiB cap) replace file.slice(offset).text(), which materialized a multi-GB session remainder as a single string and tripped the JS string-length ceiling as a native abort — bypassing the parsers' try/catch and causing a permanent daemon crash loop.
  • Oversized single records (> 64 MiB) are now dropped and reported (oversize_record_skipped) instead of crashing the daemon.
  • Off-by-one fix so a record exactly maxBytes long isn't dropped, and over-window record drops are surfaced instead of silently skipped.

Full diff: v0.2.1...v0.2.2