WyriHaximus / react-guzzle-http-client

Meta package for ReactPHP HttpClient adapters/handles for Guzzle 4, 5, and 6.
MIT License
10 stars 8 forks source link

Bump clue/socks-react from 0.8.6 to 1.0.0 #13

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps clue/socks-react from 0.8.6 to 1.0.0.

Release notes *Sourced from [clue/socks-react's releases](https://github.com/clue/php-socks-react/releases).* > ## v1.0.0 > > * First stable release, now following SemVer! > > * Feature / BC break: Unify SOCKS5 and SOCKS4(a) protocol version handling, > the `Client` now defaults to SOCKS5 instead of SOCKS4a, > remove explicit SOCKS4a handling and merge into SOCKS4 protocol handling and > URI scheme `socks5://` now only acts as an alias for default `socks://` scheme. > ([#74](https://github-redirect.dependabot.com/clue/php-socks-react/issues/74), [#81](https://github-redirect.dependabot.com/clue/php-socks-react/issues/81) and [#87](https://github-redirect.dependabot.com/clue/php-socks-react/issues/87) by [**clue**](https://github.com/clue)) > > ```php > // old: defaults to SOCKS4a > $client = new Client('127.0.0.1:1080', $connector); > $client = new Client('socks://127.0.0.1:1080', $connector); > > // new: defaults to SOCKS5 > $client = new Client('127.0.0.1:1080', $connector); > $client = new Client('socks://127.0.0.1:1080', $connector); > > // new: explicitly use legacy SOCKS4(a) > $client = new Client('socks4://127.0.0.1:1080', $connector); > > // unchanged: explicitly use SOCKS5 > $client = new Client('socks5://127.0.0.1:1080', $connector); > ``` > > * Feature / BC break: Clean up `Server` interface, > add `Server::listen()` method instead of accepting socket in constructor, > replace `Server::setAuth()` with optional constructor parameter, > remove undocumented "connection" event from Server and drop explicit Evenement dependency and > mark all classes as `final` and all internal APIs as `[**internal**](https://github.com/internal)` > ([#78](https://github-redirect.dependabot.com/clue/php-socks-react/issues/78), [#79](https://github-redirect.dependabot.com/clue/php-socks-react/issues/79), [#80](https://github-redirect.dependabot.com/clue/php-socks-react/issues/80) and [#84](https://github-redirect.dependabot.com/clue/php-socks-react/issues/84) by [**clue**](https://github.com/clue)) > > ```php > // old: socket passed to server constructor > $socket = new React\Socket\Server(1080, $loop); > $server = new Clue\React\Socks\Server($loop, $socket); > > // old: authentication via setAuthArray()/setAuth() methods > $server = new Clue\React\Socks\Server($loop, $socket); > $server->setAuthArray(array( > 'tom' => 'password', > 'admin' => 'root' > )); > > // new: socket passed to listen() method > $server = new Clue\React\Socks\Server($loop); > $socket = new React\Socket\Server(1080, $loop); > $server->listen($socket); > > ... (truncated)
Changelog *Sourced from [clue/socks-react's changelog](https://github.com/clue/reactphp-socks/blob/master/CHANGELOG.md).* > ## 1.0.0 (2018-11-20) > > * First stable release, now following SemVer! > > * Feature / BC break: Unify SOCKS5 and SOCKS4(a) protocol version handling, > the `Client` now defaults to SOCKS5 instead of SOCKS4a, > remove explicit SOCKS4a handling and merge into SOCKS4 protocol handling and > URI scheme `socks5://` now only acts as an alias for default `socks://` scheme. > ([#74](https://github-redirect.dependabot.com/clue/php-socks-react/issues/74), [#81](https://github-redirect.dependabot.com/clue/php-socks-react/issues/81) and [#87](https://github-redirect.dependabot.com/clue/php-socks-react/issues/87) by [**clue**](https://github.com/clue)) > > ```php > // old: defaults to SOCKS4a > $client = new Client('127.0.0.1:1080', $connector); > $client = new Client('socks://127.0.0.1:1080', $connector); > > // new: defaults to SOCKS5 > $client = new Client('127.0.0.1:1080', $connector); > $client = new Client('socks://127.0.0.1:1080', $connector); > > // new: explicitly use legacy SOCKS4(a) > $client = new Client('socks4://127.0.0.1:1080', $connector); > > // unchanged: explicitly use SOCKS5 > $client = new Client('socks5://127.0.0.1:1080', $connector); > ``` > > * Feature / BC break: Clean up `Server` interface, > add `Server::listen()` method instead of accepting socket in constructor, > replace `Server::setAuth()` with optional constructor parameter, > remove undocumented "connection" event from Server and drop explicit Evenement dependency and > mark all classes as `final` and all internal APIs as `[**internal**](https://github.com/internal)` > ([#78](https://github-redirect.dependabot.com/clue/php-socks-react/issues/78), [#79](https://github-redirect.dependabot.com/clue/php-socks-react/issues/79), [#80](https://github-redirect.dependabot.com/clue/php-socks-react/issues/80) and [#84](https://github-redirect.dependabot.com/clue/php-socks-react/issues/84) by [**clue**](https://github.com/clue)) > > ```php > // old: socket passed to server constructor > $socket = new React\Socket\Server(1080, $loop); > $server = new Clue\React\Socks\Server($loop, $socket); > > // old: authentication via setAuthArray()/setAuth() methods > $server = new Clue\React\Socks\Server($loop, $socket); > $server->setAuthArray(array( > 'tom' => 'password', > 'admin' => 'root' > )); > > // new: socket passed to listen() method > $server = new Clue\React\Socks\Server($loop); > $socket = new React\Socket\Server(1080, $loop); > $server->listen($socket); > > ... (truncated)
Commits - [`f60ae62`](https://github.com/clue/reactphp-socks/commit/f60ae627807b4b04de0c5beca2344f6df666b802) Prepare v1.0.0 release - [`9db7fa7`](https://github.com/clue/reactphp-socks/commit/9db7fa75f025a0c0d5d86aeb975ecb1bfad6c4f2) Merge pull request [#87](https://github-redirect.dependabot.com/clue/php-socks-react/issues/87) from clue-labs/socks5-uri - [`cd4f80b`](https://github.com/clue/reactphp-socks/commit/cd4f80b4eeefa0f67f8e42b9aa22ecabb5157a6e) URI scheme socks5:// acts only as an alias for default socks:// scheme - [`f1003ea`](https://github.com/clue/reactphp-socks/commit/f1003eafbdda7c00adb984ab738cc9a5c4bfe705) Merge pull request [#85](https://github-redirect.dependabot.com/clue/php-socks-react/issues/85) from clue-labs/examples - [`f26e005`](https://github.com/clue/reactphp-socks/commit/f26e005fc856b582986f9caea164a2e21a2c6699) Improve documentation for examples and link to other projects - [`c602a0f`](https://github.com/clue/reactphp-socks/commit/c602a0f58d57c635e64f585cf2d5bfedeae82059) Merge pull request [#84](https://github-redirect.dependabot.com/clue/php-socks-react/issues/84) from clue-labs/server-auth - [`6231abc`](https://github.com/clue/reactphp-socks/commit/6231abc9110540dc30e5ac4b9f6d991498718ff0) Replace Server::setAuth() with optional constructor parameter - [`5a14c29`](https://github.com/clue/reactphp-socks/commit/5a14c290bf54ec5485c6da1b3bc23b56aeab4e74) Change Server::setAuth() to use bool as async promise resolution value - [`ace3394`](https://github.com/clue/reactphp-socks/commit/ace33941f031c27ff9fe07a2d4052f278b46918c) Merge pull request [#83](https://github-redirect.dependabot.com/clue/php-socks-react/issues/83) from clue-labs/error-messages - [`bb37efc`](https://github.com/clue/reactphp-socks/commit/bb37efcfcbfd6f44f28a36e0f7fb35bc0961e93c) Improve error reporting by always including target URI in exceptions - Additional commits viewable in [compare view](https://github.com/clue/php-socks-react/compare/v0.8.6...v1.0.0)


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.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

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 cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.