laminas-modulemanager icon indicating copy to clipboard operation
laminas-modulemanager copied to clipboard

Update dependency psalm/plugin-phpunit to ^0.19.0

Open renovate[bot] opened this issue 11 months ago • 1 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
psalm/plugin-phpunit ^0.18.4 -> ^0.19.0 age adoption passing confidence

Release Notes

psalm/psalm-plugin-phpunit (psalm/plugin-phpunit)

v0.19.0: Add Psalm 6 support, drop Psalm 4 support

Compare Source

This release adds support for Psalm 6, dropping support for Psalm 4.

What's Changed

New Contributors

Full Changelog: https://github.com/psalm/psalm-plugin-phpunit/compare/0.18.4...0.19.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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

Read more information about the use of Renovate Bot within Laminas.

renovate[bot] avatar Mar 16 '24 14:03 renovate[bot]

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

renovate[bot] avatar Mar 16 '24 14:03 renovate[bot]

⚠️ 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: composer update brick/varexporter:0.5.0 psalm/plugin-phpunit:0.19.0 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Loading composer repositories with package information
Dependency vimeo/psalm 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 brick/varexporter ^0.3.2 || ^0.4 || ^0.5 -> satisfiable by brick/varexporter[0.5.0].
    - brick/varexporter 0.5.0 requires nikic/php-parser ^5.0 -> found nikic/php-parser[v5.0.0, v5.0.1, v5.0.2] but these were not loaded, likely because it conflicts with another require.

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

renovate[bot] avatar May 12 '24 05:05 renovate[bot]

Please!! Can you prioritize upgrading the brick/varexporter ?

celorodovalho avatar Jun 04 '24 18:06 celorodovalho

This only needs composer.lock update and fix 1 psalm error by adding 1 line

diff --git a/test/Listener/ModuleResolverListenerTest.php b/test/Listener/ModuleResolverListenerTest.php
--- a/test/Listener/ModuleResolverListenerTest.php
+++ b/test/Listener/ModuleResolverListenerTest.php
@@ -27,6 +27,7 @@ class ModuleResolverListenerTest extends AbstractListenerTestCase
         self::assertInstanceOf($expectedInstanceOf, $moduleResolver($e));
     }
 
+    /** @psalm-return array<string, array<int, string>> */
     public static function validModuleNameProvider(): array
     {
         return [

https://github.com/laminas/laminas-modulemanager/blob/81c219284e222437e160662e2e528ce504d8af68/test/Listener/ModuleResolverListenerTest.php#L29-L38

kersysgediminas avatar Jun 11 '24 07:06 kersysgediminas