reactphp-kernel/CHANGELOG.md

24 lines
1.0 KiB
Markdown

# Changelog
All notable changes to `blax-software/reactphp-kernel` are documented here. This
project adheres to [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and
Blax Software's backward-compatibility guarantee (every push to `master` is a
potentially-shipped, backward-compatible release).
## [Unreleased]
### Added
- `Kernel` — owns the ReactPHP loop, registers `Contracts\Server`s, installs
signal handlers, `run()` and graceful `stop()`.
- `Contracts\Server` — an attachable protocol server (`boot(LoopInterface)` +
`shutdown()`).
- `Server\SocketServerFactory` — plain-TCP or TLS listening socket, no framework
coupling.
- `Ipc\SocketPairIpc` — event-driven parent/child IPC over a Unix socket pair
(lifted from `blax-software/laravel-websockets`; it was already
framework-agnostic).
- `Process\SignalHandler` — SIGINT/SIGTERM → graceful shutdown.
- `Process\ChildReaper` — reaps exited forked children (SIGCHLD + periodic
backstop); the reusable form of laravel-websockets #982.