Releases
v0.5.0
- Add
Stream#remote_addressreturningnilto satisfy theProtocol::HTTP::Peerinterface.
v0.4.0
- Breaking: Drop the
io-streamdependency.Stream.newandStream.openno longer coerce or wrap theirinputandoutputarguments; raw IO objects are used as-is. Callers that relied onstream.ioreturning anIO::Stream::Bufferedshould wrap the IO themselves before passing it in. - Simplify
Stream#readto delegate directly to the underlying input, since the HTTP/2 framer always requests exact byte counts (header size, then payload length).
v0.3.0
- Change
Protocol::HTTY::Streamto take explicit input and output endpoints usingStream.new(input, output)andStream.open(input, output, **options). - Read HTTY input without buffering ahead, preserving HTTP/2 frame boundaries by reading only the announced frame payload length.
v0.2.0
- Add
Protocol::HTTY::Stream.open(stream, **options)as the preferred constructor for bootstrapping HTTY over an existing stream. - Inline HTTY bootstrap encoding and decoding into
Protocol::HTTY::Stream, keeping the public API focused on the single raw byte-stream abstraction used by HTTP/2.
v0.1.0
- Initial release.