PR #49 opened: chore(deps-dev): bump laravel/boost from 1.8.10 to 2.2.3
Bumps laravel/boost from 1.8.10 to 2.2.3.
▶Release notes
Sourced from laravel/boost's releases.
v2.2.3
What's Changed
- Add two spaces by
@xiCO2kin laravel/boost#632- Fix duplicate guidelines when using symlinked paths by
@damianlewisin laravel/boost#634- Laravel 13.x Compatibility by
@laravel-shiftin laravel/boost#633- Add First Party Packages by
@pushpak1300in laravel/boost#635- Use configured executable paths when rendering skill templates by
@pushpak1300in laravel/boost#638New Contributors
@damianlewismade their first contribution in laravel/boost#634@laravel-shiftmade their first contribution in laravel/boost#633Full Changelog: https://github.com/laravel/boost/compare/v2.2.2...v2.2.3
v2.2.2
What's Changed
- Fix SearchDocs crashing when MCP client passes array params as JSON strings by
@digitall-itin laravel/boost#604- Fix skill discovery for repos with non-main default branches by
@pushpak1300in laravel/boost#610- Fix crash in GuidelineAssist when app/ directory does not exist by
@mforcerin laravel/boost#617- Fix Sail is incorrectly detected as active inside devcontainers by
@Taimstin laravel/boost#614- Compile custom Blade skills to markdown instead of symlinking raw templates by
@pushpak1300in laravel/boost#611- Widen laravel/mcp version constraint to support v0.6.0 by
@pushpak1300in laravel/boost#623- Update Junie agent to use configurable mcp path by
@cswgrin laravel/boost#626- Support SKILL.blade.php in GitHubSkillProvider discovery by
@pushpak1300in laravel/boost#627New Contributors
@mforcermade their first contribution in laravel/boost#617@Taimstmade their first contribution in laravel/boost#614@cswgrmade their first contribution in laravel/boost#626Full Changelog: https://github.com/laravel/boost/compare/v2.2.1...v2.2.2
v2.2.1
What's Changed
- Fix third-party skills excluded when aiGuidelines is uninitialized by
@sulimanbenhalimin laravel/boost#596- Add summary mode to DatabaseSchema tool by
@sulimanbenhalimin laravel/boost#595- Add support for Ampcode by
@dringraysonin laravel/boost#598- Simplify Tinker tool to wrap artisan tinker --execute by
@soleinjastin laravel/boost#557- Consolidate Inertia versioned guidelines into single core file by
@pushpak1300in laravel/boost#603Minor Breaking Chnage
If you have custom overrides in:
.ai/guidelines/inertia-laravel/1/core.blade.php .ai/guidelines/inertia-laravel/2/core.blade.phpmove them to:
... (truncated)
▶Changelog
Sourced from laravel/boost's changelog.
v2.2.3 - 2026-03-06
What's Changed
- Add two spaces by
@xiCO2kin laravel/boost#632- Fix duplicate guidelines when using symlinked paths by
@damianlewisin laravel/boost#634- Laravel 13.x Compatibility by
@laravel-shiftin laravel/boost#633- Add First Party Packages by
@pushpak1300in laravel/boost#635- Use configured executable paths when rendering skill templates by
@pushpak1300in laravel/boost#638New Contributors
@damianlewismade their first contribution in laravel/boost#634@laravel-shiftmade their first contribution in laravel/boost#633Full Changelog: https://github.com/laravel/boost/compare/v2.2.2...v2.2.3
v2.2.2 - 2026-03-03
What's Changed
- Fix SearchDocs crashing when MCP client passes array params as JSON strings by
@digitall-itin laravel/boost#604- Fix skill discovery for repos with non-main default branches by
@pushpak1300in laravel/boost#610- Fix crash in GuidelineAssist when app/ directory does not exist by
@mforcerin laravel/boost#617- Fix Sail is incorrectly detected as active inside devcontainers by
@Taimstin laravel/boost#614- Compile custom Blade skills to markdown instead of symlinking raw templates by
@pushpak1300in laravel/boost#611- Widen laravel/mcp version constraint to support v0.6.0 by
@pushpak1300in laravel/boost#623- Update Junie agent to use configurable mcp path by
@cswgrin laravel/boost#626- Support SKILL.blade.php in GitHubSkillProvider discovery by
@pushpak1300in laravel/boost#627New Contributors
@mforcermade their first contribution in laravel/boost#617@Taimstmade their first contribution in laravel/boost#614@cswgrmade their first contribution in laravel/boost#626Full Changelog: https://github.com/laravel/boost/compare/v2.2.1...v2.2.2
v2.2.1 - 2026-02-25
What's Changed
- Fix third-party skills excluded when aiGuidelines is uninitialized by
@sulimanbenhalimin laravel/boost#596- Add summary mode to DatabaseSchema tool by
@sulimanbenhalimin laravel/boost#595- Add support for Ampcode by
@dringraysonin laravel/boost#598- Simplify Tinker tool to wrap artisan tinker --execute by
@soleinjastin laravel/boost#557- Consolidate Inertia versioned guidelines into single core file by
@pushpak1300in laravel/boost#603Minor Breaking Chnage
... (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
44ab65aUse configured executable paths when rendering skill templates (#638)436fa9eUpdate Composer.php (#635)9dbac7aLaravel 13.x Compatibility (#633)11686ceFix duplicate guidelines when using symlinked paths (#634)6a3dee7Add two spaces (#632)a4b4047Update CHANGELOG2b03665Support SKILL.blade.php in GitHubSkillProvider discovery (#627)982010cUpdate Junie agent to use configurable mcp path (#626)285e91aWiden laravel/mcp version constraint to support v0.6.0 (#623)d994174Compile custom Blade skills to markdown instead of symlinking raw templates (...- 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)