Skip to content
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

Update dependency wyrihaximus/async-test-utilities to v7 - autoclosed #34

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 20, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
wyrihaximus/async-test-utilities require-dev major ^5.0.25 -> ^7.0.3

Release Notes

WyriHaximus/php-async-test-utilities (wyrihaximus/async-test-utilities)

v7.0.3

Compare Source

7.0.3

  • Total issues resolved: 0
  • Total pull requests resolved: 3
  • Total contributors: 2

Dependencies 📦

Enhancement ✨

v7.0.2

Compare Source

7.0.2

  • Total issues resolved: 0
  • Total pull requests resolved: 11
  • Total contributors: 3

Dependencies 📦,JSON 👨‍💼,PHP 🐘

CI 🚧,Configuration ⚙,YAML 🍄

Dependencies 📦,PHP 🐘

Dependencies 📦,JSON 👨‍💼,NEON 🦹‍♂️,PHP 🐘,Source 🔮,Tests 🧪

Configuration ⚙,YAML 🍄

Configuration ⚙,JSON 👨‍💼

v7.0.1

Compare Source

7.0.1

  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1

Dependencies 📦,JSON 👨‍💼,PHP 🐘

v7.0.0

Compare Source

This release drops all deprecated await methods. Use the await and other related functions directly.

Major new feature in this release:

Since all tests are executed inside a fiber, there is a default timeout of 30 seconds. To lower or raise that timeout
this package comes with a TimeOut attribute. It can be set on the class and method level. When set on both the method level it takes priority over the class level.

<?php

declare(strict_types=1);

namespace WyriHaximus\Tests\AsyncTestUtilities;

use React�ventLoop\Loop;
use WyriHaximus\AsyncTestUtilities\AsyncTestCase;
use WyriHaximus\AsyncTestUtilities\TimeOut;

use function React\Async�sync;
use function React\Async�wait;
use function React\Promise
esolve;
use function React\Promise\Timer\sleep;
use function time;

#[TimeOut(0.3)]
final class AsyncTestCaseTest extends AsyncTestCase
{
    #[TimeOut(1)]
    public function testAllTestsAreRanInAFiber(): void
    {
        self::expectOutputString('ab');

        Loop::futureTick(async(static function (): void {
            echo 'a';
        }));

        await(sleep(1));

        echo 'b';
    }

    public function testExpectCallableExactly(): void
    {
        $callable = $this->expectCallableExactly(3);

        Loop::futureTick($callable);
        Loop::futureTick($callable);
        Loop::futureTick($callable);
    }

    public function testExpectCallableOnce(): void
    {
        Loop::futureTick($this->expectCallableOnce());
    }
}

7.0.0

  • Total issues resolved: 0
  • Total pull requests resolved: 4
  • Total contributors: 1

Deprecations 👋,NEON 🦹‍♂️,PHP 🐘,Source 🔮

Configuration ⚙,YAML 🍄

Deprecations 👋,NEON 🦹‍♂️,PHP 🐘,Source 🔮,Tests 🧪

Dependencies 📦,Documentation 📚,Enhancement ✨,Feature 🏗,JSON 👨‍💼,MarkDown 📝,NEON 🦹‍♂️,PHP 🐘,Source 🔮,Tests 🧪

v6.2.0

Compare Source

6.2.0

  • Total issues resolved: 0
  • Total pull requests resolved: 5
  • Total contributors: 2

Dependencies 📦,JSON 👨‍💼,PHP 🐘

v6.1.0

Compare Source

6.1.0

  • Total issues resolved: 0
  • Total pull requests resolved: 4
  • Total contributors: 2

Dependencies 📦,JSON 👨‍💼,PHP 🐘

Enhancement ✨,NEON 🦹‍♂️,PHP 🐘,Source 🔮

v6.0.0

Compare Source

6.0.0

  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1

Dependencies 📦,JSON 👨‍💼,NEON 🦹‍♂️,PHP 🐘,Source 🔮,Tests 🧪


Configuration

📅 Schedule: Branch creation - "* 6-22/3 * * 1-5,* 12-23/3 * * 0,6" in timezone Europe/Amsterdam, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from WyriHaximus as a code owner July 20, 2023 06:41
@renovate renovate bot added Dependencies 📦 Pull requests that update a dependency file PHP 🐘 Hypertext Pre Processor labels Jul 20, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Jul 20, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: docker run --rm --name=renovate_a_sidecar --label=renovate_a_child --memory=3584m -v "/tmp/worker/5c6174/96f165/repos/github/WyriHaximus/reactphp-cache-psr-16-adapter":"/tmp/worker/5c6174/96f165/repos/github/WyriHaximus/reactphp-cache-psr-16-adapter" -v "/tmp/worker/5c6174/96f165/cache":"/tmp/worker/5c6174/96f165/cache" -e COMPOSER_CACHE_DIR -e COMPOSER_AUTH -e CONTAINERBASE_CACHE_DIR -w "/tmp/worker/5c6174/96f165/repos/github/WyriHaximus/reactphp-cache-psr-16-adapter" ghcr.io/containerbase/sidecar:9.8.0 bash -l -c "install-tool php 8.1.1 && install-tool composer 2.5.8 && composer update wyrihaximus/async-test-utilities --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins"
/usr/local/bin/docker: line 4: .: filename argument required
.: usage: . filename [arguments]
[19:17:26.149] INFO (45): Downloading file ...
    url: "https://github.com/containerbase/php-prebuild/releases/download/8.1.1/php-8.1.1-focal-x86_64.tar.xz.sha512"
    output: "/tmp/worker/5c6174/96f165/cache/containerbase/62632b75fca08e3247484254fb2586f6453ae9ddcda76df832dd1f3e169cff32/php-8.1.1-focal-x86_64.tar.xz.sha512"
[19:17:26.264] INFO (45): Download completed  in 115ms.
[19:17:26.382] INFO (61): Downloading file ...
    url: "https://github.com/containerbase/php-prebuild/releases/download/8.1.1/php-8.1.1-focal-x86_64.tar.xz"
    output: "/tmp/worker/5c6174/96f165/cache/containerbase/c23e79b591ef2468c20eafd6e64796977640db3c384aa4ff66a5494603107dfc/php-8.1.1-focal-x86_64.tar.xz"
[19:17:26.766] INFO (61): Download completed  in 384ms.
[19:17:29.317] INFO (131): Downloading file ...
    url: "https://getcomposer.org/download/2.5.8/composer.phar.sha256sum"
    output: "/tmp/worker/5c6174/96f165/cache/containerbase/040c3f4735561c01edd8aeeb5abf9bb9f81c0dd1e2f4fd7573f6c3f48bec96cc/composer.phar.sha256sum"
[19:17:29.408] INFO (131): Download completed  in 91ms.
[19:17:29.528] INFO (149): Downloading file ...
    url: "https://getcomposer.org/download/2.5.8/composer.phar"
    output: "/tmp/worker/5c6174/96f165/cache/containerbase/e06e976d60a877c02176f9ccdc450933572f4f6f37eaa5e9ba8aff79632f608d/composer.phar"
[19:17:29.834] INFO (149): Download completed  in 306ms.
Loading composer repositories with package information
Info from https://repo.packagist.org: #StandWithUkraine
Dependency react/async is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Dependency thecodingmachine/safe is also a root requirement. Package has not been listed as an update argument, so keeping locked at old version. Use --with-all-dependencies (-W) to include root dependencies.
Updating dependencies
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - Root composer.json requires wyrihaximus/async-test-utilities ^7.0.3 -> satisfiable by wyrihaximus/async-test-utilities[7.0.3].
    - wyrihaximus/async-test-utilities 7.0.3 requires php ^8.2 -> your php version (8.1.1; overridden via config.platform, same as actual) does not satisfy that requirement.

Use the option --with-all-dependencies (-W) to allow upgrades, downgrades and removals for packages currently locked to specific versions.

@renovate renovate bot force-pushed the renovate/wyrihaximus-async-test-utilities-7.x branch 5 times, most recently from f8c225f to b861945 Compare July 26, 2023 14:46
@renovate renovate bot force-pushed the renovate/wyrihaximus-async-test-utilities-7.x branch from b861945 to bdf7356 Compare July 27, 2023 19:17
@renovate renovate bot changed the title Update dependency wyrihaximus/async-test-utilities to v7 Update dependency wyrihaximus/async-test-utilities to v7 - autoclosed Aug 10, 2023
@renovate renovate bot closed this Aug 10, 2023
@renovate renovate bot deleted the renovate/wyrihaximus-async-test-utilities-7.x branch August 10, 2023 15:31
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.

0 participants