Release 0.6.0: audit-driven security and concurrency hardening#11
Merged
Conversation
Bundles eight PRs of fixes from a multi-agent audit, covering
Critical (CONTINUATION flood, owner liveness), High (send_frame
error propagation, HPACK table cap, send-buffer cap, set_stream_handler
default flip, send-data yielding, acceptor mailbox drain, TLS hardening),
and Medium/Low cleanups (default max_concurrent_streams, logger swap,
setting_id dedup, SETTINGS_ACK state, safe_path, cancel deprecation,
timer flush, peel_reason, style).
Behaviour changes flagged in the changelog: set_stream_handler default
flip, send_data may return {error, send_buffer_full}, cancel_stream
deprecation, max_concurrent_streams now 100, verify_peer requires cacerts.
95 CT tests + full eunit pass.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps
vsnto 0.6.0 and adds the changelog entry covering the eight PRs (#2-#10) from the audit.Headline changes
controlling_processowner monitor.send_frameerror propagation, HPACK table cap, send-buffer cap,set_stream_handlerdefault flip,handle_send_datayielding, acceptor EXIT drain, TLS server hardening.max_concurrent_streams = 100,logger:error/2swap,setting_iddedup,SETTINGS_ACKstate preservation,safe_pathhardening,cancel_streamdeprecation, set_stream_handler doc note.set_activeerror handling,peel_reasonrecursive,cancel_timerflush,=:=consistency, file_info record access,?DEFAULT_TIMEOUT_MS.Breaking notes
set_stream_handler/3,4default flipped; callers matching{ok, Buf}to forward by hand can drop that code.send_data/3,4may return{error, send_buffer_full}.cancel_stream/2,3is-deprecated; usecancel/2,3.SETTINGS_MAX_CONCURRENT_STREAMS = 100.verify_peerwithoutcacertsnow fails fast.Full detail in
CHANGELOG.md. 95 CT tests + full eunit pass.