laminas-modulemanager
laminas-modulemanager copied to clipboard
Update dependency psalm/plugin-phpunit to ^0.19.0
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
psalm/plugin-phpunit | ^0.18.4 -> ^0.19.0 |
Release Notes
psalm/psalm-plugin-phpunit (psalm/plugin-phpunit)
v0.19.0
: Add Psalm 6 support, drop Psalm 4 support
This release adds support for Psalm 6, dropping support for Psalm 4.
What's Changed
- Update README.md by @sander-bol in https://github.com/psalm/psalm-plugin-phpunit/pull/128
- Replace deprecated
::set-output
by @weirdan in https://github.com/psalm/psalm-plugin-phpunit/pull/132 - Dependabot updates for GH actions by @weirdan in https://github.com/psalm/psalm-plugin-phpunit/pull/133
- Bump actions/checkout from 2 to 3 by @dependabot in https://github.com/psalm/psalm-plugin-phpunit/pull/134
- Bump actions/cache from 2 to 3 by @dependabot in https://github.com/psalm/psalm-plugin-phpunit/pull/135
- Switch to MixedReturnStatement, drop Psalm 4 support by @danog in https://github.com/psalm/psalm-plugin-phpunit/pull/142
New Contributors
- @sander-bol made their first contribution in https://github.com/psalm/psalm-plugin-phpunit/pull/128
- @dependabot made their first contribution in https://github.com/psalm/psalm-plugin-phpunit/pull/134
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.
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
⚠️ 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.
Please!! Can you prioritize upgrading the brick/varexporter
?
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