Skip to content

Bump react/socket from 1.9.0 to 1.10.0#26

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/react/socket-1.10.0
Closed

Bump react/socket from 1.9.0 to 1.10.0#26
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/composer/react/socket-1.10.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Dec 6, 2021

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)

Bumps [react/socket](https://github.com/reactphp/socket) from 1.9.0 to 1.10.0.
- [Release notes](https://github.com/reactphp/socket/releases)
- [Changelog](https://github.com/reactphp/socket/blob/master/CHANGELOG.md)
- [Commits](reactphp/socket@v1.9.0...v1.10.0)

---
updated-dependencies:
- dependency-name: react/socket
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Dec 6, 2021
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Jan 17, 2022

Superseded by #27.

@dependabot dependabot bot closed this Jan 17, 2022
@dependabot dependabot bot deleted the dependabot/composer/react/socket-1.10.0 branch January 17, 2022 05:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants