You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bump version to 0.3.7: Fix OrderedObject and Fragment pretty-printing
OrderedObject now produces properly indented output with pretty: true.
Previously it always returned compact single-line JSON because the
Encoder produced a Fragment that bypassed the NIF's inline formatting.
Two fixes:
- OrderedObject is now a native Rust struct handler, formatting directly
from the values tuple list with zero intermediate serialization
- Fragment content is now streamed through a depth-aware reformatter
when pretty-printing, matching Jason's behavior (zero-allocation,
single-pass byte walk through iodata)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>