v0.6.0
nextauthjs/next-authv0.6.0Jun 9, 2025by ekzhang
AI Summary
This release fixes a bug where half-closing a TCP stream (FIN) would previously drop the entire proxy connection. The update ensures that only the specific half of the stream is closed.
Key Highlights
- Fixed handling of half-closed TCP streams to prevent unintended connection drops.
- Previously, a FIN signal would terminate the whole proxy connection.
- Implemented use of `copy_bidirectional` for better stream management.
New Features
- Fixed TCP stream half-closing bug
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