Skip to content

Releases: clue/reactphp-http-proxy

v0.3.2

10 Jun 11:50
Compare
Choose a tag to compare
v0.3.2 Pre-release
Pre-release
  • Fix: Fix rejecting invalid URIs and unexpected URI schemes
    (#13 by @clue)

  • Fix HHVM build for now again and ignore future HHVM build errors
    (#12 by @clue)

  • Documentation for Connector concepts (TCP/TLS, timeouts, DNS resolution)
    (#11 by @clue)

v0.3.1

10 May 18:43
Compare
Choose a tag to compare
v0.3.1 Pre-release
Pre-release
  • Feature: Forward compatibility with upcoming Socket v1.0 and v0.8
    (#10 by @clue)

v0.3.0

10 Apr 23:01
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release
  • Feature / BC break: Replace deprecated SocketClient with new Socket component
    (#9 by @clue)

    This implies that the ProxyConnector from this package now implements the
    React\Socket\ConnectorInterface instead of the legacy
    React\SocketClient\ConnectorInterface.

v0.2.0

10 Apr 23:00
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
  • Feature / BC break: Update SocketClient to v0.7 or v0.6 and
    use connect($uri) instead of create($host, $port)
    (#8 by @clue)

    // old
    $connector->create($host, $port)->then(function (Stream $conn) {
        $conn->write("");
    });
    
    // new
    $connector->connect($uri)->then(function (ConnectionInterface $conn) {
        $conn->write("");
    });
  • Improve test suite by adding PHPUnit to require-dev
    (#7 by @clue)

v0.1.0

01 Nov 19:26
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release
  • First tagged release