From ee3a4b1753b49e7d6f063926d5cc34814474d4f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 16:57:33 +0000 Subject: [PATCH 1/2] chore(deps-dev): update rector/rector requirement from 2.2.9 to 2.2.10 Updates the requirements on [rector/rector](https://github.com/rectorphp/rector) to permit the latest version. - [Release notes](https://github.com/rectorphp/rector/releases) - [Commits](https://github.com/rectorphp/rector/compare/2.2.9...2.2.10) --- updated-dependencies: - dependency-name: rector/rector dependency-version: 2.2.10 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7876152795bd..6445c84aeeca 100644 --- a/composer.json +++ b/composer.json @@ -28,7 +28,7 @@ "phpunit/phpcov": "^9.0.2 || ^10.0", "phpunit/phpunit": "^10.5.16 || ^11.2", "predis/predis": "^3.0", - "rector/rector": "2.2.9", + "rector/rector": "2.2.10", "shipmonk/phpstan-baseline-per-identifier": "^2.0" }, "replace": { From d694020309485500543151998581cad60a091114 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Tue, 2 Dec 2025 01:02:36 +0700 Subject: [PATCH 2/2] chore: remove RemoveDataProviderParamKeysRector from skip config as now deprecated --- rector.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/rector.php b/rector.php index 04de84b4ef81..279abcbc642a 100644 --- a/rector.php +++ b/rector.php @@ -34,7 +34,6 @@ use Rector\Php70\Rector\FuncCall\RandomFunctionRector; use Rector\Php80\Rector\Class_\ClassPropertyAssignToConstructorPromotionRector; use Rector\Php81\Rector\FuncCall\NullToStrictStringFuncCallArgRector; -use Rector\PHPUnit\CodeQuality\Rector\Class_\RemoveDataProviderParamKeysRector; use Rector\PHPUnit\CodeQuality\Rector\Class_\YieldDataProviderRector; use Rector\PHPUnit\CodeQuality\Rector\FuncCall\AssertFuncCallToPHPUnitAssertRector; use Rector\PHPUnit\CodeQuality\Rector\StmtsAwareInterface\DeclareStrictTypesTestsRector; @@ -168,8 +167,6 @@ CompactToVariablesRector::class, - RemoveDataProviderParamKeysRector::class, - // possibly isset() on purpose, on updated Config classes property accross versions IssetOnPropertyObjectToPropertyExistsRector::class,