v0.6.0

paulpierre/markdown-crawlerv0.6.0Jun 9, 2025by ekzhang

AI Summary

This version fixes a critical bug where closing one half of a TCP stream would terminate the entire proxy connection. It now correctly handles half-closed streams using the `copy_bidirectional` method.

Key Highlights

  • Fix half-closed TCP stream handling
  • Use copy_bidirectional for proper stream management
  • Prevents entire proxy connection from dropping

New Features

  • Improved TCP stream management
  • Better handling of FIN packets

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