v0.6.0

lewish/asciiflowv0.6.0Jun 9, 2025by ekzhang

AI Summary

This version fixes a critical bug in how the proxy handles TCP streams. Previously, initiating a half-close (FIN) would drop the entire connection, but now it correctly only closes the half of the stream that is being closed.

Key Highlights

  • Fixed handling of half-closed TCP streams
  • Stream now only closes the affected half, not the entire connection
  • Uses `copy_bidirectional` for stream handling

New Features

  • Improved TCP stream management

Full Release Notes

This version fixes a bug in handling of half-closed TCP streams. Previously, half-closing a TCP stream (FIN) would result in the entire proxy connection being dropped, but now it only closes that half of the stream.

## What's Changed
* Use copy_bidirectional, handle half-closed TCP streams by @ekzhang in https://github.com/ekzhang/bore/pull/165


**Full Changelog**: https://github.com/ekzhang/bore/compare/v0.5.3...v0.6.0