v0.8.0
-
Feature: New
Serverclass now acts as a facade for existing server classes
and renamed oldServertoTcpServerfor advanced usage.
(#96 and #97 by @clue)The
Serverclass is now the main class in this package that implements the
ServerInterfaceand allows you to accept incoming streaming connections,
such as plaintext TCP/IP or secure TLS connection streams.This is not a BC break and consumer code does not have to be updated.
-
Feature / BC break: All addresses are now URIs that include the URI scheme
(#98 by @clue)- $parts = parse_url('tcp://' . $conn->getRemoteAddress()); + $parts = parse_url($conn->getRemoteAddress());
-
Fix: Fix
unix://addresses for Unix domain socket (UDS) paths
(#100 by @clue) -
Feature: Forward compatibility with Stream v1.0 and v0.7
(#99 by @clue)