Skip to content

Lock file maintenance #261

Lock file maintenance

Lock file maintenance #261

Triggered via push March 14, 2026 01:18
Status Success
Total duration 5m 36s
Artifacts
Matrix: Mutation tests
Fit to window
Zoom out
Zoom in

Annotations

11 warnings
Mutation tests (locked, 8.5, ubuntu-latest)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809, shivammathur/setup-php@2.36.0. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/Configuration.php#L220
Escaped Mutant for Mutator "IncrementInteger": @@ @@ 'The "%node%" option is deprecated and will be removed in 4.0. Use "patchlevel_event_sourcing.subscription.retry_strategies" instead.' ) ->children() - ->integerNode('base_delay')->defaultValue(5)->end() + ->integerNode('base_delay')->defaultValue(6)->end() ->integerNode('delay_factor')->defaultValue(2)->end() ->integerNode('max_attempts')->defaultValue(5)->end() ->end()
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/Configuration.php#L220
Escaped Mutant for Mutator "DecrementInteger": @@ @@ 'The "%node%" option is deprecated and will be removed in 4.0. Use "patchlevel_event_sourcing.subscription.retry_strategies" instead.' ) ->children() - ->integerNode('base_delay')->defaultValue(5)->end() + ->integerNode('base_delay')->defaultValue(4)->end() ->integerNode('delay_factor')->defaultValue(2)->end() ->integerNode('max_attempts')->defaultValue(5)->end() ->end()
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/Configuration.php#L200
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ ->addDefaultsIfNotSet() ->children() ->enumNode('type') - ->values(['dbal', 'in_memory', 'static_in_memory', 'custom']) + ->values(['in_memory', 'static_in_memory', 'custom']) ->defaultValue('dbal') ->end() ->scalarNode('service')->defaultNull()->end()
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/Configuration.php#L121
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ ->addDefaultsIfNotSet() ->children() ->enumNode('type') - ->values(['dbal_aggregate', 'dbal_stream', 'in_memory', 'custom']) + ->values(['dbal_stream', 'in_memory', 'custom']) ->end() ->scalarNode('service')->defaultNull()->end() ->arrayNode('options')->variablePrototype()->end()->end()
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/Configuration.php#L109
Escaped Mutant for Mutator "ArrayItemRemoval": @@ @@ ->addDefaultsIfNotSet() ->children() ->enumNode('type') - ->values(['dbal_aggregate', 'dbal_stream', 'in_memory', 'custom']) + ->values(['dbal_stream', 'in_memory', 'custom']) ->defaultValue('dbal_aggregate') ->end() ->scalarNode('service')->defaultNull()->end()
Mutation tests (locked, 8.5, ubuntu-latest): src/DependencyInjection/CommandHandlerCompilerPass.php#L40
Escaped Mutant for Mutator "UnwrapStrToLower": @@ @@ $parameterResolverId = sprintf('.event_sourcing.handler_parameter_resolver.%s', $aggregateName); foreach (HandlerFinder::findInClass($aggregateClass) as $aggregateHandler) { - $handlerId = strtolower(sprintf('event_sourcing.handler.%s.%s', $aggregateName, $aggregateHandler->method)); + $handlerId = sprintf('event_sourcing.handler.%s.%s', $aggregateName, $aggregateHandler->method); $handlerClass = $aggregateHandler->static ? CreateAggregateHandler::class : UpdateAggregateHandler::class; $container->register($handlerId, $handlerClass)
Mutation tests (locked, 8.5, ubuntu-latest): src/Command/StoreMigrateCommand.php#L43
Escaped Mutant for Mutator "IncrementInteger": @@ @@ null, InputOption::VALUE_REQUIRED, 'How many messages should be buffered', - 1_000, + 1001, ); }
Mutation tests (locked, 8.5, ubuntu-latest): src/Command/StoreMigrateCommand.php#L43
Escaped Mutant for Mutator "DecrementInteger": @@ @@ null, InputOption::VALUE_REQUIRED, 'How many messages should be buffered', - 1_000, + 999, ); }
Mutation tests (locked, 8.5, ubuntu-latest): src/Command/StoreMigrateCommand.php#L37
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ protected function configure(): void { - $this - ->addOption( - 'buffer', - null, - InputOption::VALUE_REQUIRED, - 'How many messages should be buffered', - 1_000, - ); + } protected function execute(InputInterface $input, OutputInterface $output): int
Mutation tests (locked, 8.5, ubuntu-latest): src/Command/StoreMigrateCommand.php#L32
Escaped Mutant for Mutator "MethodCallRemoval": @@ @@ private readonly Store $newStore, private readonly iterable $translators = [], ) { - parent::__construct(); + } protected function configure(): void