laminas / laminas-modulemanager

Modular application system for laminas-mvc applications
https://docs.laminas.dev/laminas-modulemanager/
BSD 3-Clause "New" or "Revised" License
30 stars 18 forks source link

Update all non-major dependencies - autoclosed #49

Closed renovate[bot] closed 3 months ago

renovate[bot] commented 6 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
brick/varexporter ^0.3.2 \|\| ^0.4 -> ^0.3.2 \|\| ^0.4 \|\| ^0.5 age adoption passing confidence
psalm/plugin-phpunit ^0.18.4 -> ^0.19.0 age adoption passing confidence

Release Notes

brick/varexporter (brick/varexporter) ### [`v0.5.0`](https://togithub.com/brick/varexporter/blob/HEAD/CHANGELOG.md#050---2024-05-10) [Compare Source](https://togithub.com/brick/varexporter/compare/0.4.0...0.5.0) ✨ **Compatibility** - Added compatibility with `nikic/php-parser` `5.x` - Removed compatibility with `nikic/php-parser` `4.x` πŸ’₯ **BC breaks** - deprecated constant `VarExporter::INLINE_NUMERIC_SCALAR_ARRAY` has been removed, please use `INLINE_SCALAR_LIST` instead
psalm/psalm-plugin-phpunit (psalm/plugin-phpunit) ### [`v0.19.0`](https://togithub.com/psalm/psalm-plugin-phpunit/releases/tag/0.19.0): Add Psalm 6 support, drop Psalm 4 support [Compare Source](https://togithub.com/psalm/psalm-plugin-phpunit/compare/0.18.4...0.19.0) This release adds support for Psalm 6, dropping support for Psalm 4. #### What's Changed - Update README.md by [@​sander-bol](https://togithub.com/sander-bol) in [https://github.com/psalm/psalm-plugin-phpunit/pull/128](https://togithub.com/psalm/psalm-plugin-phpunit/pull/128) - Replace deprecated `::set-output` by [@​weirdan](https://togithub.com/weirdan) in [https://github.com/psalm/psalm-plugin-phpunit/pull/132](https://togithub.com/psalm/psalm-plugin-phpunit/pull/132) - Dependabot updates for GH actions by [@​weirdan](https://togithub.com/weirdan) in [https://github.com/psalm/psalm-plugin-phpunit/pull/133](https://togithub.com/psalm/psalm-plugin-phpunit/pull/133) - Bump actions/checkout from 2 to 3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/psalm/psalm-plugin-phpunit/pull/134](https://togithub.com/psalm/psalm-plugin-phpunit/pull/134) - Bump actions/cache from 2 to 3 by [@​dependabot](https://togithub.com/dependabot) in [https://github.com/psalm/psalm-plugin-phpunit/pull/135](https://togithub.com/psalm/psalm-plugin-phpunit/pull/135) - Switch to MixedReturnStatement, drop Psalm 4 support by [@​danog](https://togithub.com/danog) in [https://github.com/psalm/psalm-plugin-phpunit/pull/142](https://togithub.com/psalm/psalm-plugin-phpunit/pull/142) #### New Contributors - [@​sander-bol](https://togithub.com/sander-bol) made their first contribution in [https://github.com/psalm/psalm-plugin-phpunit/pull/128](https://togithub.com/psalm/psalm-plugin-phpunit/pull/128) - [@​dependabot](https://togithub.com/dependabot) made their first contribution in [https://github.com/psalm/psalm-plugin-phpunit/pull/134](https://togithub.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.

πŸ‘» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



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

renovate[bot] commented 6 months ago

Branch automerge failure

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


renovate[bot] commented 4 months ago

⚠️ 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:

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.
celorodovalho commented 3 months ago

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

kersysgediminas commented 3 months ago

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