|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to this project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 6 | + |
| 7 | +## [1.0.2] - 2025-10-17 |
| 8 | + |
| 9 | +### Changed |
| 10 | +- Updated `mio-rs` to version `1.1.0` which includes the fix for macOS thread safety issues |
| 11 | + |
| 12 | +### Fixed |
| 13 | +- Resolved macOS thread safety issues with `mio::Event` in worker threads (initially fixed with custom Event wrapper #70, then properly resolved by updating mio-rs after upstream fix #72) |
| 14 | + |
| 15 | +### Development |
| 16 | +- Enhanced CI/CD with cross-platform testing workflows |
| 17 | +- Fixed clippy linting issues |
| 18 | +- Added unstable feature testing with nightly Rust channel |
| 19 | +- Improved CI workflow to avoid using `unstable` features in stable & beta channels |
| 20 | +- Added TCP tests and disabled UDS tests on Windows for better cross-platform support |
| 21 | +- Fixed documentation errors |
| 22 | + |
| 23 | +## [1.0.1] - 2025-9-16 |
| 24 | + |
| 25 | +### Documentation |
| 26 | +- Fixed documentation errors throughout the codebase |
| 27 | +- Enhanced README.md with better explanations and examples |
| 28 | + |
| 29 | +### Development |
| 30 | +- Bumped version for documentation fixes |
| 31 | + |
| 32 | +## [1.0.0] - 2025-9-15 |
| 33 | + |
| 34 | +### Added |
| 35 | +- Complete event loop implementation with reactor pattern |
| 36 | +- Thread pool for efficient task execution |
| 37 | +- Object pool for memory management optimization |
| 38 | +- Polling abstraction layer with `PollHandle` |
| 39 | +- Error handling module with custom error types |
| 40 | +- Event loop registration and deregistration capabilities |
| 41 | +- Multiple channel types (MPMC/MPSC) for inter-thread communication |
| 42 | + |
| 43 | +### Examples |
| 44 | +- **Echo Server**: Complete TCP echo server implementation |
| 45 | +- **HTTP Server**: Basic HTTP server example |
| 46 | +- **File Watcher**: File system monitoring example |
| 47 | +- **JSON-RPC Server**: JSON-RPC protocol server implementation |
0 commit comments