PR #93 opened: chore(deps): bump the minor-and-patch group with 5 updates
Bumps the minor-and-patch group with 5 updates:
| Package | From | To |
|---|---|---|
| laravel/horizon | 5.45.5 | 5.45.6 |
| laravel/tinker | 3.0.0 | 3.0.2 |
| laravel/boost | 2.4.3 | 2.4.4 |
| laravel/sail | 1.56.0 | 1.57.0 |
| pestphp/pest | 4.5.0 | 4.6.3 |
Updates laravel/horizon from 5.45.5 to 5.45.6
▶Release notes
Sourced from laravel/horizon's releases.
v5.45.6
- Bump axios from 1.8.2 to 1.15.0 by
@dependabot[bot] in laravel/horizon#1758- [5.x] Pass
$laterinRedisQueue@later()by@cosmastechin laravel/horizon#1759
▶Changelog
Sourced from laravel/horizon's changelog.
v5.45.6 - 2026-04-14
- Bump axios from 1.8.2 to 1.15.0 by
@dependabot[bot] in laravel/horizon#1758- [5.x] Pass
$laterinRedisQueue@later()by@cosmastechin laravel/horizon#1759
▶Commits
Updates laravel/tinker from 3.0.0 to 3.0.2
▶Release notes
Sourced from laravel/tinker's releases.
v3.0.2
Full Changelog: https://github.com/laravel/tinker/compare/v3.0.0...v3.0.2
▶Changelog
Sourced from laravel/tinker's changelog.
v3.0.2 - 2026-03-17
Full Changelog: https://github.com/laravel/tinker/compare/v3.0.0...v3.0.2
v3.0.0 - 2026-03-17
- [3.x] Return correct exit code on exceptions by
@LachlanArthurin laravel/tinker#165- [3.x] Remove supports for PHP 8.0 and 7.x by
@crynobonein laravel/tinker#186- [3.x] Supports Laravel 13 by
@crynobonein laravel/tinker#197- Avoid trust project prompts from PsySH by
@WendellAdrielin laravel/tinker#198
▶Commits
4faba77Update CHANGELOG- See full diff in compare view
Updates laravel/boost from 2.4.3 to 2.4.4
▶Release notes
Sourced from laravel/boost's releases.
v2.4.4
What's Changed
- Feature: skills list command by
@me-shaonin laravel/boost#750- feat(agents): add Kiro IDE agent support by
@oniicein laravel/boost#765- Add undocumented config override for enforce_tests by
@yousefkadahin laravel/boost#767- Fix: Update outdated Livewire paths to v4 standards in SKILL.blade.php by
@Naimul007Ain laravel/boost#736- Move deployment guideline by
@pushpak1300in laravel/boost#774New Contributors
@me-shaonmade their first contribution in laravel/boost#750@oniicemade their first contribution in laravel/boost#765@yousefkadahmade their first contribution in laravel/boost#767@Naimul007Amade their first contribution in laravel/boost#736Full Changelog: https://github.com/laravel/boost/compare/v2.4.3...v2.4.4
▶Changelog
Sourced from laravel/boost's changelog.
v2.4.4 - 2026-04-16
What's Changed
- Feature: skills list command by
@me-shaonin laravel/boost#750- feat(agents): add Kiro IDE agent support by
@oniicein laravel/boost#765- Add undocumented config override for enforce_tests by
@yousefkadahin laravel/boost#767- Fix: Update outdated Livewire paths to v4 standards in SKILL.blade.php by
@Naimul007Ain laravel/boost#736- Move deployment guideline by
@pushpak1300in laravel/boost#774New Contributors
@me-shaonmade their first contribution in laravel/boost#750@oniicemade their first contribution in laravel/boost#765@yousefkadahmade their first contribution in laravel/boost#767@Naimul007Amade their first contribution in laravel/boost#736Full Changelog: https://github.com/laravel/boost/compare/v2.4.3...v2.4.4
▶Commits
db101b9Move deployment guideline to separate deployments/core section (#774)39bc6dfFix: Update outdated Livewire paths to v4 standards in SKILL.blade.php (#736)89d531cAdd undocumented config override for enforce_tests (#767)b753796Add Kiro IDE agent support (#765)cf0dd21Add Skills list command (#750)c1ec8c9Update CHANGELOG- See full diff in compare view
Updates laravel/sail from 1.56.0 to 1.57.0
▶Release notes
Sourced from laravel/sail's releases.
v1.57.0
- Forward AI agent env vars into Docker containers by
@pushpak1300in laravel/sail#862- Add missing AI agent env vars for Copilot CLI and Pi by
@pushpak1300in laravel/sail#865
▶Changelog
Sourced from laravel/sail's changelog.
v1.57.0 - 2026-04-14
- Forward AI agent env vars into Docker containers by
@pushpak1300in laravel/sail#862- Add missing AI agent env vars for Copilot CLI and Pi by
@pushpak1300in laravel/sail#865
▶Commits
Updates pestphp/pest from 4.5.0 to 4.6.3
▶Release notes
Sourced from pestphp/pest's releases.
v4.6.3
chore: bumps phpunit
v4.6.2
fix: bumps phpunit, as previous versions became invalid due https://github.com/sebastianbergmann/phpunit/security/advisories/GHSA-qrr6-mg7r-m243
v4.6.1
- fix: up to 30% faster boot times before your test suite runs (measured on laravel cloud)
- fix: if you pass --filter or a test file, --update-snapshots now only updates the snapshots that match
v4.6.0
- feat: time based sharding by
@nunomaduroin pestphp/pest#1671For better shard balance, Pest can distribute tests based on their actual execution time using the
--update-shardsoption. This ensures each shard takes roughly the same wall-clock time, minimizing how long your slowest CI job runs.Step 1: Generate the timing data by running your full test suite with
--update-shards:./vendor/bin/pest --update-shardsThis runs all tests and records each test class's duration into
tests/.pest/shards.json. You can also combine it with--parallelto speed things up:./vendor/bin/pest --parallel --update-shardsStep 2: Commit
tests/.pest/shards.jsonto your repository. This file is human-readable and looks like this:{ "timings": { "Tests\\Feature\\Payments\\StripeCheckoutTest": 1.608, "Tests\\Feature\\Reports\\SalesReportTest": 2.105, "Tests\\Unit\\Models\\UserTest": 0.050 }, "checksum": "...", "updated_at": "2026-04-14T10:30:00+00:00" }Step 3: When you run
--shardandtests/.pest/shards.jsonexists, Pest automatically uses time-balanced distribution:./vendor/bin/pest --shard=1/5The output will indicate that time-balanced sharding is active:
</tr></table>
... (truncated)
▶Commits
bff4456release: v4.6.39ebb990chore: bumps phpunitcabff73release: v4.6.20746173chore: bumps phpunit87db0b4release: v4.6.16ba373achore: bumps phpunit945d476fix: allow to update individual screenshotsa8cf0fechore: improves CI2ae072bfeat: makes boot time much faster59d0669chore: missing header- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
▶Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions