Updated Rector to commit f54a79b475d1eb73f536cbc07ee108b2dda07a01

f54a79b475 [Parallel] Fix missing --xdebug in WorkerCommand line on WorkerCommandLineFactory when --xdebug provided (#5398)
This commit is contained in:
Tomas Votruba 2023-12-28 12:01:32 +00:00
parent 38b33113ca
commit 37846880cd
6 changed files with 14 additions and 13 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = '109d734969100cf97bdc820e7c369c90e9e4016a';
public const PACKAGE_VERSION = 'f54a79b475d1eb73f536cbc07ee108b2dda07a01';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2023-12-27 21:01:50';
public const RELEASE_DATE = '2023-12-28 12:59:11';
/**
* @var int
*/

View File

@ -36,7 +36,7 @@ final class ConsoleApplication extends Application
{
// @fixes https://github.com/rectorphp/rector/issues/2205
$isXdebugAllowed = $input->hasParameterOption('--xdebug');
if (!$isXdebugAllowed) {
if ($isXdebugAllowed) {
$xdebugHandler = new XdebugHandler('rector');
$xdebugHandler->check();
unset($xdebugHandler);

View File

@ -23,5 +23,6 @@ final class ProcessConfigureDecorator
$command->addOption(Option::CLEAR_CACHE, null, InputOption::VALUE_NONE, 'Clear unchanged files cache');
$command->addOption(Option::PARALLEL_PORT, null, InputOption::VALUE_REQUIRED);
$command->addOption(Option::PARALLEL_IDENTIFIER, null, InputOption::VALUE_REQUIRED);
$command->addOption(Option::XDEBUG, null, InputOption::VALUE_NONE, 'Display xdebug output.');
}
}

View File

@ -2399,27 +2399,27 @@
},
{
"name": "symfony\/service-contracts",
"version": "v3.4.0",
"version_normalized": "3.4.0.0",
"version": "v3.4.1",
"version_normalized": "3.4.1.0",
"source": {
"type": "git",
"url": "https:\/\/github.com\/symfony\/service-contracts.git",
"reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838"
"reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
},
"dist": {
"type": "zip",
"url": "https:\/\/api.github.com\/repos\/symfony\/service-contracts\/zipball\/b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
"reference": "b3313c2dbffaf71c8de2934e2ea56ed2291a3838",
"url": "https:\/\/api.github.com\/repos\/symfony\/service-contracts\/zipball\/fe07cbc8d837f60caf7018068e350cc5163681a0",
"reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
"shasum": ""
},
"require": {
"php": ">=8.1",
"psr\/container": "^2.0"
"psr\/container": "^1.1|^2.0"
},
"conflict": {
"ext-psr": "<1.1|>=2"
},
"time": "2023-07-30T20:28:31+00:00",
"time": "2023-12-26T14:02:43+00:00",
"type": "library",
"extra": {
"branch-alias": {
@ -2464,7 +2464,7 @@
"standards"
],
"support": {
"source": "https:\/\/github.com\/symfony\/service-contracts\/tree\/v3.4.0"
"source": "https:\/\/github.com\/symfony\/service-contracts\/tree\/v3.4.1"
},
"funding": [
{

File diff suppressed because one or more lines are too long

View File

@ -24,7 +24,7 @@
],
"require": {
"php": ">=8.1",
"psr\/container": "^2.0"
"psr\/container": "^1.1|^2.0"
},
"conflict": {
"ext-psr": "<1.1|>=2"