2.0.0
This release provides compatibility with amphp/socket v1.0. Please see the amphp/socket release notes for more information on changes in that library. While most code using this library should not require major changes, some compatibility breaks with v1.x were made.
Summary of compatibility breaks from v1.x to v2.0
- Updated to
league/uri@^6. Consequentially, PHP 7.2+ is now required. - Renamed
ServertoHttpServer. An alias ofServertoHttpServerwas kept for backward compatibility with v1.x, but may be removed in a future version. - Added
Pushobject for pushed resources.Response::getPush()now returns an array ofPushobjects. - Upgrade callbacks (those set with
Response::upgrade()) now receive an instance ofAmp\Socket\EncryptableSocket, an interface extendingAmp\Socket\Socket, as the parameter to the callback function. Upgrade callback are now run as a coroutine if a generater is returned. Coroutine (or promise returned from the callback) failures are logged to the server log. Driver\Clientreturns an instance ofAmp\Socket\SocketAddressfromgetLocalAddress()andgetRemoteAddress(). The methodsgetLocalPort()andgetRemotePort()have been removed. The IP address and port are available on the instance ofSocketAddressreturned.Driver\Client::getCryptoContext()has been replaced withgetTlsInfo(), which now returns an instance ofAmp\Socket\TlsInfofor encrypted clients ornullfor plaintext clients.- HTTP/2 protocol is now declared as
"2"instead of"2.0"in requests and responses (see https://http2.github.io/faq/#is-it-http20-or-http2). - Refactored HTTP/2 flood prevention to be based on a ratio between payload and non-payload bytes received, inspired by NGINX's flood prevention. Some options were removed:
- Removed
Options::getMinimumAverageFrameSize()andwithMinimumAverageFrameSize(). - Removed
Options::getFramesPerSecondLimit()andwithFramesPerSecondLimit().
- Removed
- Removed
Options::getConnectionTimeout()andwithConnectionTimeout(). HTTP/1.x and HTTP/2 connection timeouts are now separate and can be set using thehttp1Timeout(default 15 seconds) andhttp2Timeout(default 60 seconds) options.
Trailers
The Trailers object has been refactored to contain a list of header declared trailer fields (which may be empty) and a promise for an Amp\Http\Message object containing the future trailer values. Trailers in requests have been moved from the request body to the Request object. Request::getTrailers() returns a Trailers object having two methods:
Trailers::getFields(): Returns an array of declared trailer fields (this list may be empty, but still receive trailers).Trailers::await(): Returns a promise that is resolved with aAmp\Http\Messageinstance once all trailers have been received.
Trailers are now supported in responses. A new Response constructor parameter or Response::setTrailers(Trailers $trailers) may be used to set a Trailers object for the response. The promise provided to the Trailers constructor should be resolved with an array of header values indexed by the header field name, similar to header field array provided to the Response constructor or Response::setHeaders().
Other backward compatibility breaks unlikely to affect application code
Driver\Http1DriverandDriver\Http2Driverconstructors now require an instance ofPsr\Log\LoggerInterfaceas the final parameter.Promiseparameter forTrailersobject removed fromRequestBodyconstructor.voidreturns added tostart(),onClose(), andclose()methods inDriver\Clientinterface.voidreturn added toTimeReference::onTimeUpdate().- HTTP/2 pseudo headers (header fields starting with a colon (:) such as
:methodor:status) cannot be used inRequestandResponse. Accordingly, these header fields are no longer included in requests generated by the server. The values of these headers are used to populate request properties and should be accessed by getters inRequest. - Removed
TimeReferenceandSystemTimeReference. UseAmp\Http\formatDateHeader()in theamphp/http@1.5package to generate the value for an HTTP header value containing a date. - Refactored
TimeoutCacheand renamed some methods. Client timeouts are no longer updated withinClient, ratherHttpDriverimplementations must update the client timeout. Users should be unaffected by this change unless they implemented their ownClientorHttpDriver. HttpDriverFactory::selectDriver()now requires instances ofErrorHandler,Psr\Log\LoggerInterface, andOptionsin addition to theClientinstance.
New Features
- The original casing of HTTP/1.x request headers is now available through
Request::getRawHeaders(). - Added
Request::getAttributes()to retrieve an array of all request attributes andRequest::removeAttribute()to remove an attribute. - Added
Request::removeAttribute(). - Added
ClientException::getClient()that returns theClientthat caused the error. - Back-pressure from consumption of request bodies is now used to control window sizes in HTTP/2. Window sizes are only increased in small increments instead of the entire allowable body size. This will improve memory consumption when handling large request bodies.
- Added
tlsSetupTimeoutinOptions. Default is 5 seconds.
Upgrading from v1.x
We believe only minor changes will be necessary for applications to upgrade from v1.x to v2.0. As trailers and upgrade responses are uncommon for applications, the most likely concern for upgraders is the shift to SocketAddress in Client::getLocalAddress() and Client::getRemoteAddress(), changes to methods in Options, as well as the changes made in amphp/socket v1.0.