Skip to content

Bump clue/buzz-react from 1.1.0 to 2.5.0 #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged

Conversation

dependabot-preview[bot]
Copy link
Contributor

@dependabot-preview dependabot-preview bot commented Jan 10, 2019

Bumps clue/buzz-react from 1.1.0 to 2.5.0.

Release notes

Sourced from clue/buzz-react's releases.

v2.5.0

  • Feature: Add HTTP timeout option.
    (#114 by Rakdar and clue)

    This now respects PHP's default_socket_timeout setting (default 60s) as a
    timeout for sending the outgoing HTTP request and waiting for a successful
    response and will otherwise cancel the pending request and reject its value
    with an Exception. You can now use the timeout option to
    pass a custom timeout value in seconds like this:

    $browser = $browser->withOptions(array(
        'timeout' => 10.0
    ));
    
    $browser->get($uri)->then(function (ResponseInterface $response) {
        // response received within 10 seconds maximum
        var_dump($response->getHeaders());
    });

    Similarly, you can use a negative timeout value to not apply a timeout at
    all or use a null value to restore the default handling.

  • Improve documentation for withOptions() and
    add documentation and example for HTTP CONNECT proxy.
    (#111 and #115 by clue)

  • Refactor Browser to reuse single Transaction instance internally
    which now accepts sending individual requests and their options.
    (#113 by clue)

v2.4.0

  • Feature / Fix: Support cancellation forwarding and cancelling redirected requests.
    (#110 by clue)

  • Feature / Fix: Remove Authorization request header for redirected cross-origin requests
    and add documentation for HTTP redirects.
    (#108 by clue)

  • Improve API documentation and add documentation for HTTP authentication and Authorization header.
    (#104 and #109 by clue)

  • Update project homepage.
    (#100 by clue)

v2.3.0

  • Feature / Fix: Pass custom request headers when following redirects
    (#91 by seregazhuk and #96 by clue)
... (truncated)
Changelog

Sourced from clue/buzz-react's changelog.

2.5.0 (2018-10-24)

  • Feature: Add HTTP timeout option.
    (#114 by Rakdar and clue)

    This now respects PHP's default_socket_timeout setting (default 60s) as a
    timeout for sending the outgoing HTTP request and waiting for a successful
    response and will otherwise cancel the pending request and reject its value
    with an Exception. You can now use the timeout option to
    pass a custom timeout value in seconds like this:

    $browser = $browser->withOptions(array(
        'timeout' => 10.0
    ));
    
    $browser->get($uri)->then(function (ResponseInterface $response) {
        // response received within 10 seconds maximum
        var_dump($response->getHeaders());
    });

    Similarly, you can use a negative timeout value to not apply a timeout at
    all or use a null value to restore the default handling.

  • Improve documentation for withOptions() and
    add documentation and example for HTTP CONNECT proxy.
    (#111 and #115 by clue)

  • Refactor Browser to reuse single Transaction instance internally
    which now accepts sending individual requests and their options.
    (#113 by clue)

2.4.0 (2018-10-02)

  • Feature / Fix: Support cancellation forwarding and cancelling redirected requests.
    (#110 by clue)

  • Feature / Fix: Remove Authorization request header for redirected cross-origin requests
    and add documentation for HTTP redirects.
    (#108 by clue)

  • Improve API documentation and add documentation for HTTP authentication and Authorization header.
    (#104 and #109 by clue)

  • Update project homepage.
    (#100 by clue)

2.3.0 (2018-02-09)

... (truncated)
Commits
  • 758a731 Prepare v2.5.0 release
  • 9f54c5b Merge pull request #115 from clue-labs/http-proxy
  • 0707f62 Documentation and example for HTTP CONNECT proxy
  • 0b316c9 Merge pull request #114 from clue-labs/timeouts
  • 32de457 Make timeout optional and add documentation
  • ce29538 Merge pull request #113 from clue-labs/refactor-transaction
  • bd2d898 Added Timeout-Promise to Transaction::send()
  • 4d296fb Refactor Browser to reuse single Transaction instance
  • 0202f3a Refactor Sender to accept MessageFactory during constructor
  • e661a4c Prepare Transaction to accept options from Browser
  • 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.

If all status checks pass Dependabot will automatically merge this pull request.


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:

  • 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.

Bumps [clue/buzz-react](https://github.com/clue/php-buzz-react) from 1.1.0 to 2.5.0.
- [Release notes](https://github.com/clue/php-buzz-react/releases)
- [Changelog](https://github.com/clue/reactphp-buzz/blob/master/CHANGELOG.md)
- [Commits](clue/reactphp-buzz@v1.1.0...v2.5.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
@dependabot-preview dependabot-preview bot force-pushed the dependabot/composer/clue/buzz-react-2.5.0 branch from c6c6c1a to 1a62df1 Compare January 13, 2019 09:12
@dependabot-preview dependabot-preview bot merged commit a57fe41 into master Jan 13, 2019
@dependabot-preview dependabot-preview bot deleted the dependabot/composer/clue/buzz-react-2.5.0 branch January 13, 2019 09:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant