Skip to content

deps(deps): update dependency sentry/sentry-laravel to v4.11.0 #165

deps(deps): update dependency sentry/sentry-laravel to v4.11.0

deps(deps): update dependency sentry/sentry-laravel to v4.11.0 #165

Triggered via pull request January 23, 2025 16:41
Status Success
Total duration 1m 9s
Artifacts

testing.yml

on: pull_request
Matrix: arch-testing
Matrix: code-coverage
Matrix: mutation-testing
Fit to window
Zoom out
Zoom in

Annotations

15 warnings
code-coverage (ubuntu-latest, 8.3, locked)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
arch-testing (ubuntu-latest, 8.3, locked)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
mutation-testing (ubuntu-latest, 8.3, locked)
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/[email protected]. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
arch-testing (ubuntu-latest, 8.3, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
code-coverage (ubuntu-latest, 8.3, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
mutation-testing (ubuntu-latest, 8.3, locked)
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "Concat": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + $this->load('/Console/Commands' . __DIR__); } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + $this->load('/Console/Commands'); } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "ConcatOperandRemoval": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + $this->load(__DIR__); } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/ConsoleKernel.php#L25
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ protected function commands() : void { - $this->load(__DIR__ . '/Console/Commands'); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Exceptions/Handler.php#L28
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ public function register() : void { - $this->reportable(function (Throwable $e) : void { - if (app()->bound('sentry')) { - app('sentry')->captureException($e); - } - }); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Providers/Domain/ProductServiceProvider.php#L28
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ private function bindProductEntity() : void { - Route::bind('product', static function ($value) { - /** @var Product|null $category */ - $category = Product::where('uuid', $value)->first(); - if ($category === null) { - throw new ProductNotFoundException(); - } - return $category; - }); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Providers/Domain/UserServiceProvider.php#L28
Escaped Mutant for Mutator "MethodCallRemoval": --- Original +++ New @@ @@ */ private function bindUserEntity() : void { - Route::bind('user', static function ($value) { - /** @var User|null $category */ - // phpstan-ignore-next-line - $category = User::where('uuid', $value)->first(); - if ($category === null) { - throw new UserNotFoundException(); - } - return $category; - }); + } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Bridge/Laravel/Providers/EventServiceProvider.php#L36
Escaped Mutant for Mutator "FalseValue": --- Original +++ New @@ @@ */ public function shouldDiscoverEvents() : bool { - return false; + return true; } }
mutation-testing (ubuntu-latest, 8.3, locked): app/src/Support/StringUtils.php#L17
Escaped Mutant for Mutator "UnwrapStrToLower": --- Original +++ New @@ @@ { public static function toTitleCase(string $str) : string { - return ucwords(strtolower($str)); + return ucwords($str); } }