Skip to content

Bump clue/block-react from 1.4.0 to 1.5.0 #111

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
merged 1 commit into from
Oct 21, 2021

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2021

Bumps clue/block-react from 1.4.0 to 1.5.0.

Release notes

Sourced from clue/block-react's releases.

v1.5.0

  • Feature: Simplify usage by supporting new default loop. (#60 by @​clue)

    // old (still supported)
    Clue\React\Block\await($promise, $loop);
    Clue\React\Block\awaitAny($promises, $loop);
    Clue\React\Block\awaitAll($promises, $loop);
    // new (using default loop)
    Clue\React\Block\await($promise);
    Clue\React\Block\awaitAny($promises);
    Clue\React\Block\awaitAll($promises);

  • Feature: Added support for upcoming react/promise v3. (#61 by @​davidcole1340 and @​SimonFrings)

  • Improve error reporting by appending previous message for Throwables. (#57 by @​clue)

  • Deprecate $timeout argument for await*() functions. (#59 by @​clue)

    // deprecated
    Clue\React\Block\await($promise, $loop, $timeout);
    Clue\React\Block\awaitAny($promises, $loop, $timeout);
    Clue\React\Block\awaitAll($promises, $loop, $timeout);
    // still supported
    Clue\React\Block\await($promise, $loop);
    Clue\React\Block\awaitAny($promises, $loop);
    Clue\React\Block\awaitAll($promises, $loop);

  • Improve API documentation. (#58 and #63 by @​clue and #55 by @​PaulRotmann)

  • Improve test suite and use GitHub actions for continuous integration (CI). (#54 by @​SimonFrings)

Changelog

Sourced from clue/block-react's changelog.

1.5.0 (2021-10-20)

  • Feature: Simplify usage by supporting new default loop. (#60 by @​clue)

    // old (still supported)
    Clue\React\Block\await($promise, $loop);
    Clue\React\Block\awaitAny($promises, $loop);
    Clue\React\Block\awaitAll($promises, $loop);
    // new (using default loop)
    Clue\React\Block\await($promise);
    Clue\React\Block\awaitAny($promises);
    Clue\React\Block\awaitAll($promises);

  • Feature: Added support for upcoming react/promise v3. (#61 by @​davidcole1340 and @​SimonFrings)

  • Improve error reporting by appending previous message for Throwables. (#57 by @​clue)

  • Deprecate $timeout argument for await*() functions. (#59 by @​clue)

    // deprecated
    Clue\React\Block\await($promise, $loop, $timeout);
    Clue\React\Block\awaitAny($promises, $loop, $timeout);
    Clue\React\Block\awaitAll($promises, $loop, $timeout);
    // still supported
    Clue\React\Block\await($promise, $loop);
    Clue\React\Block\awaitAny($promises, $loop);
    Clue\React\Block\awaitAll($promises, $loop);

  • Improve API documentation. (#58 and #63 by @​clue and #55 by @​PaulRotmann)

  • Improve test suite and use GitHub actions for continuous integration (CI). (#54 by @​SimonFrings)

Commits
  • 718b057 Prepare v1.5.0 release
  • 7618d1b Merge pull request #63 from clue-labs/docs
  • d9f50cf Add documentation to describe limitations of blocking vs async APIs
  • ee21147 Merge pull request #61 from SimonFrings/promisev3
  • d243c1d Require PromiseInterface[] as first argument in awaitAll / awaitAny
  • ba35f85 Added support for react/promise v3
  • 4c6a2ea Merge pull request #60 from clue-labs/loop
  • 514ec9c Simplify usage by supporting new default loop
  • 5906e8d Merge pull request #59 from clue-labs/deprecate-timeout
  • fa8d6fc Deprecate $timeout argument for await*() functions
  • 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 [clue/block-react](https://github.com/clue/reactphp-block) from 1.4.0 to 1.5.0.
- [Release notes](https://github.com/clue/reactphp-block/releases)
- [Changelog](https://github.com/clue/reactphp-block/blob/master/CHANGELOG.md)
- [Commits](clue/reactphp-block@v1.4.0...v1.5.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from WyriHaximus as a code owner October 21, 2021 05:01
@dependabot dependabot bot added Dependencies 📦 Pull requests that update a dependency file PHP 🐘 Hypertext Pre Processor labels Oct 21, 2021
@WyriHaximus WyriHaximus added this to the 4.0.6 milestone Oct 21, 2021
@WyriHaximus WyriHaximus merged commit eae1dfc into master Oct 21, 2021
@dependabot dependabot bot deleted the dependabot/composer/clue/block-react-1.5.0 branch October 21, 2021 08:18
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 JSON 👨‍💼 PHP 🐘 Hypertext Pre Processor
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant