WildPHP / irc-bot

A simple and modular PHP IRC bot
MIT License
84 stars 24 forks source link

Bump react/socket from 1.9.0 to 1.10.0 #196

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps react/socket from 1.9.0 to 1.10.0.

Release notes

Sourced from react/socket's releases.

v1.10.0

  • Feature: Support listening on existing file descriptors (FDs) with SocketServer. (#269 by @​clue)

    $socket = new React\Socket\SocketSever('php://fd/3');
    

    This is particularly useful when using systemd socket activation like this:

    $ systemd-socket-activate -l 8000 php examples/03-http-server.php php://fd/3
    
  • Feature: Improve error messages for failed connection attempts with errno and errstr. (#265, #266, #267, #270 and #271 by @​clue and #268 by @​SimonFrings)

    All error messages now always include the appropriate errno and errstr to give more details about the error reason when available. Along with these error details exposed by the underlying system functions, it will also include the appropriate error constant name (such as ECONNREFUSED) when available. Accordingly, failed TCP/IP connections will now report the actual underlying error condition instead of a generic "Connection refused" error. Higher-level error messages will now consistently report the connection URI scheme and hostname used in all error messages.

    For most common use cases this means that simply reporting the Exception message should give the most relevant details for any connection issues:

    $connector = new React\Socket\Connector();
    $connector->connect($uri)->then(function (React\Socket\ConnectionInterface $conn) {
        // …
    }, function (Exception $e) {
        echo 'Error:' . $e->getMessage() . PHP_EOL;
    });
    
  • Improve test suite, test against PHP 8.1 release. (#274 by @​SimonFrings)

Changelog

Sourced from react/socket's changelog.

1.10.0 (2021-09-13)

  • Feature: Support listening on existing file descriptors (FDs) with SocketServer. (#269 by @​clue)

    $socket = new React\Socket\SocketSever('php://fd/3');
    

    This is particularly useful when using systemd socket activation like this:

    $ systemd-socket-activate -l 8000 php examples/03-http-server.php php://fd/3
    
  • Feature: Improve error messages for failed connection attempts with errno and errstr. (#265, #266, #267, #270 and #271 by @​clue and #268 by @​SimonFrings)

    All error messages now always include the appropriate errno and errstr to give more details about the error reason when available. Along with these error details exposed by the underlying system functions, it will also include the appropriate error constant name (such as ECONNREFUSED) when available. Accordingly, failed TCP/IP connections will now report the actual underlying error condition instead of a generic "Connection refused" error. Higher-level error messages will now consistently report the connection URI scheme and hostname used in all error messages.

    For most common use cases this means that simply reporting the Exception message should give the most relevant details for any connection issues:

    $connector = new React\Socket\Connector();
    $connector->connect($uri)->then(function (React\Socket\ConnectionInterface $conn) {
        // …
    }, function (Exception $e) {
        echo 'Error:' . $e->getMessage() . PHP_EOL;
    });
    
  • Improve test suite, test against PHP 8.1 release. (#274 by @​SimonFrings)

Commits
  • d132fde Prepare v1.10.0 release
  • 2fde15a Merge pull request #274 from SimonFrings/php
  • 8e7ea99 Support PHP 8.1
  • a992631 Merge pull request #271 from clue-labs/errno
  • 95bce45 Improve error reporting in server examples
  • 90d1e0b Look up errno based on errstr when listening for connections fails
  • 52f23bb Append socket error code constants for failed connections
  • bd4fe8a Consistently report default errno when ext-sockets is not available
  • 8178edc Consistently use EINVAL for invalid connection attempts
  • 6e610d5 Consistently use ECONNABORTED for cancelled connection attempts
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)