PR #66 opened: chore(deps-dev): bump laravel/boost from 1.8.10 to 2.3.4
Bumps laravel/boost from 1.8.10 to 2.3.4.
▶Release notes
Sourced from laravel/boost's releases.
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#672New Contributors
@oddvaluemade their first contribution in laravel/boost#657@iWadermade their first contribution in laravel/boost#665@meirdickmade their first contribution in laravel/boost#621@tjmartin69made their first contribution in laravel/boost#673Full Changelog: https://github.com/laravel/boost/compare/v2.3.1...v2.3.2
v2.3.1
What's Changed
- Decode HTML entities in Blade guideline output by
@pushpak1300in laravel/boost#654- Add configurable Codex MCP cwd by
@cyppein laravel/boost#642New Contributors
@cyppemade their first contribution in laravel/boost#642Full Changelog: https://github.com/laravel/boost/compare/v2.3.0...v2.3.1
v2.3.0
What's Changed
- Fix table snippet in SKILL.blade.php by
@AndrasMain laravel/boost#640- Remove Artisan wrapper MCP tools and update guidelines to use CLI directly by
@pushpak1300in laravel/boost#629- Remove redundant MCP guidelines by
@pushpak1300in laravel/boost#644- Remove redundant Pennant guidelines by
@pushpak1300in laravel/boost#645- Makes imports consistent by
@nunomaduroin laravel/boost#646
... (truncated)
▶Changelog
Sourced from laravel/boost's changelog.
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- 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#672New Contributors
@oddvaluemade their first contribution in laravel/boost#657@iWadermade their first contribution in laravel/boost#665@meirdickmade their first contribution in laravel/boost#621@tjmartin69made their first contribution in laravel/boost#673Full Changelog: https://github.com/laravel/boost/compare/v2.3.1...v2.3.2
v2.3.1 - 2026-03-12
What's Changed
- Decode HTML entities in Blade guideline output by
@pushpak1300in laravel/boost#654- Add configurable Codex MCP cwd by
@cyppein laravel/boost#642New Contributors
@cyppemade their first contribution in laravel/boost#642Full Changelog: https://github.com/laravel/boost/compare/v2.3.0...v2.3.1
... (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
9e3dd5fRemove Roster object caching to fix Laravel 13 serialization issue (#692)9bbdd2cUpdate CHANGELOGab0aa26update42e114fUpdate CHANGELOG5759fc7Rewrite Livewire core guidelines and skill descriptions in imperative style (...6c53d71Update pest-testing skill descriptions and clean up core guidelines (#670)4dad331fix: resolve relative symlinks when skills path is outside project root (#673)6dfa40cGuard against file_get_contents() returning false in three places (#671)4996d04Remove redundant 'When to Apply' sections from skill bodies (#669)52fbaeeAdd--discoverflag toboost:update(#651)- 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)