PR #80 opened: chore(deps-dev): bump laravel/boost from 1.8.10 to 2.4.1
Bumps laravel/boost from 1.8.10 to 2.4.1.
▶Release notes
Sourced from laravel/boost's releases.
v2.4.1
What's Changed
- Update Inertia v3 upgrade prompt to stable and add missing sections by
@pushpak1300in laravel/boost#717- Strip HTML comments before parsing skill frontmatter by
@pushpak1300in laravel/boost#711- Escape Blade component tags in guideline rendering by
@pushpak1300in laravel/boost#718Full Changelog: https://github.com/laravel/boost/compare/v2.4.0...v2.4.1
v2.4.0
What's Changed
- Fix typo in Livewire skill description by
@bram-pkgin laravel/boost#695- Remove Herd MCP integration in favor of Herd CLI by
@pushpak1300in laravel/boost#666- Add security audit to add-skill command by
@pushpak1300in laravel/boost#616- Add oauth field to OpenCode Nightwatch MCP config by
@DGarbs51in laravel/boost#703- Add laravel-best-practices skill by
@pushpak1300in laravel/boost#628- Feat: ignore skills update command by
@MrPunyapalin laravel/boost#702- Improve folio-routing skill description and remove core guideline by
@pushpak1300in laravel/boost#674- Optimize core guideline for token efficiency by
@pushpak1300in laravel/boost#668New Contributors
@bram-pkgmade their first contribution in laravel/boost#695@DGarbs51made their first contribution in laravel/boost#703Full Changelog: https://github.com/laravel/boost/compare/v2.3.4...v2.4.0
v2.3.4
What's Changed
- Remove Roster object caching to fix Laravel 13 serialization issue by
@pushpak1300in laravel/boost#692Full Changelog: https://github.com/laravel/boost/compare/v2.3.3...v2.3.4
v2.3.3
Full Changelog: https://github.com/laravel/boost/compare/v2.3.2...v2.3.3
v2.3.2
What's Changed
- Use major.minor PHP version in guidelines instead of full version by
@oddvaluein laravel/boost#657- Remove redundant Tailwind CSS guidelines by
@pushpak1300in laravel/boost#661- Add Upgrade Laravel v13 MCP prompt by
@pushpak1300in laravel/boost#658- Use
app_path()helper to support customized app locations by@iWaderin laravel/boost#665- Configure sail binary path by
@iWaderin laravel/boost#664- fix: register installed skills in boost.json during add-skill by
@meirdickin laravel/boost#621- Add
--discoverflag toboost:updateby@MrPunyapalin laravel/boost#651- Remove redundant "When to Apply" sections from skill bodies by
@sulimanbenhalimin laravel/boost#669- Guard against file_get_contents() returning false by
@sulimanbenhalimin laravel/boost#671- fix: resolve relative symlinks when skills path is outside project root by
@tjmartin69in laravel/boost#673- Update pest-testing skill descriptions and clean up core guidelines by
@pushpak1300in laravel/boost#670- Rewrite Livewire core guidelines and skill descriptions in imperative style by
@pushpak1300in laravel/boost#672
... (truncated)
▶Changelog
Sourced from laravel/boost's changelog.
v2.4.1 - 2026-03-25
What's Changed
- Update Inertia v3 upgrade prompt to stable and add missing sections by
@pushpak1300in laravel/boost#717- Strip HTML comments before parsing skill frontmatter by
@pushpak1300in laravel/boost#711- Escape Blade component tags in guideline rendering by
@pushpak1300in laravel/boost#718Full Changelog: https://github.com/laravel/boost/compare/v2.4.0...v2.4.1
v2.4.0 - 2026-03-23
What's Changed
- Fix typo in Livewire skill description by
@bram-pkgin laravel/boost#695- Remove Herd MCP integration in favor of Herd CLI by
@pushpak1300in laravel/boost#666- Add security audit to add-skill command by
@pushpak1300in laravel/boost#616- Add oauth field to OpenCode Nightwatch MCP config by
@DGarbs51in laravel/boost#703- Add laravel-best-practices skill by
@pushpak1300in laravel/boost#628- Feat: ignore skills update command by
@MrPunyapalin laravel/boost#702- Improve folio-routing skill description and remove core guideline by
@pushpak1300in laravel/boost#674- Optimize core guideline for token efficiency by
@pushpak1300in laravel/boost#668New Contributors
@bram-pkgmade their first contribution in laravel/boost#695@DGarbs51made their first contribution in laravel/boost#703Full Changelog: https://github.com/laravel/boost/compare/v2.3.4...v2.4.0
v2.3.4 - 2026-03-17
What's Changed
- Remove Roster object caching to fix Laravel 13 serialization issue by
@pushpak1300in laravel/boost#692Full Changelog: https://github.com/laravel/boost/compare/v2.3.3...v2.3.4
v2.3.3 - 2026-03-17
Full Changelog: https://github.com/laravel/boost/compare/v2.3.2...v2.3.3
v2.3.2 - 2026-03-16
What's Changed
- Use major.minor PHP version in guidelines instead of full version by
@oddvaluein laravel/boost#657- Remove redundant Tailwind CSS guidelines by
@pushpak1300in laravel/boost#661- Add Upgrade Laravel v13 MCP prompt by
@pushpak1300in laravel/boost#658- Use
app_path()helper to support customized app locations by@iWaderin laravel/boost#665
... (truncated)
▶Upgrade guide
Sourced from laravel/boost's upgrade guide.
Upgrade Guide
Upgrading To 2.x From 1.x
Note: If you are not using custom agents or overriding Boost in any way, you should experience minimal issues while upgrading. Simply run
php artisan boost:installafter upgrading to Boost 2.x and the migration will be handled automatically.Note: If you are using external packages that add custom agents, ensure you update to versions that have support for Boost 2.x.
Minimum PHP Version
PHP 8.2 is now the minimum required version.
Minimum Laravel Version
Laravel 11.x is now the minimum required version.
Custom Agent Changes
PR Link: laravel/boost#439
Likelihood Of Impact: Low
If you have added your own custom agents, you will need to make the following changes:
Terminology and Namespace Changes
CodeEnvironmenthas been replaced withAgentthroughout:
Before After CodeEnvironmentAgentCodeEnvironmentsDetectorAgentsDetectorsrc/Install/CodeEnvironment/src/Install/Agents/Laravel\Boost\Install\CodeEnvironmentLaravel\Boost\Install\AgentsregisterCodeEnvironment(string $key, string $className)registerAgent(string $key, string $className)getCodeEnvironments()getAgents()Contract Renames
Several contracts have been renamed for clarity:
Before After Laravel\Boost\Contracts\AgentLaravel\Boost\Contracts\SupportsGuidelinesLaravel\Boost\Contracts\McpClientLaravel\Boost\Contracts\SupportsMcpLaravel\Boost\Contracts\SupportSkillsLaravel\Boost\Contracts\SupportsSkillsCustom Agent Migration
If you have registered custom agents, update them to use the new namespace and contracts:
... (truncated)
▶Commits
f6241dfEscape Blade component tags in guideline rendering (#718)b7f3765Strip HTML comments before parsing skill frontmatter (#711)9e718cfUpdate Inertia v3 upgrade prompt to stable and add missing sections (#717)f405782Update CHANGELOGa09bebcOptimize core guideline for token efficiency (#668)1f7830fImprove folio-routing skill description and remove core guideline (#674)a14a8cfFeat: ignore skills update command (#702)15e6b8fAdd laravel-best-practices skill (#628)212fa0bAdd oauth field to OpenCode Nightwatch MCP config (#703)b3e5f87Add security audit to add-skill command (#616)- 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 this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)