PR #29 opened: chore(deps-dev): bump laravel/boost from 1.8.10 to 2.1.4
Bumps laravel/boost from 1.8.10 to 2.1.4.
▶Release notes
Sourced from laravel/boost's releases.
v2.1.4
What's Changed
- Fix missing output key in Tinker tool error response by
@Orlando-Villanuevain laravel/boost#561- Add file paths and format guidance to Livewire 4 skill by
@pushpak1300in laravel/boost#543- Add model binding and page content examples to Folio routing skill by
@pushpak1300in laravel/boost#544- Update MCP development skill with accurate API patterns and testing by
@pushpak1300in laravel/boost#545- Update usePoll usage in skill by
@pushpak1300in laravel/boost#570New Contributors
@Orlando-Villanuevamade their first contribution in laravel/boost#561Full Changelog: https://github.com/laravel/boost/compare/v2.1.3...v2.1.4
v2.1.3
What's Changed
- Remove experimental third-party MCP primitives by
@pushpak1300in laravel/boost#552- Add symlink install mode for skills by
@hosmelqin laravel/boost#499- Add additional newline before end-guideline fence by
@ChipNeedhamin laravel/boost#565- Update Roster by
@pushpak1300in laravel/boost#562New Contributors
@hosmelqmade their first contribution in laravel/boost#499@ChipNeedhammade their first contribution in laravel/boost#565Full Changelog: https://github.com/laravel/boost/compare/v2.1.2...v2.1.3
v2.1.2
What's Changed
- Enhance database-schema tool with full column metadata by
@alanostin laravel/boost#541- Replace >- block scalar with single-line descriptions in SKILL files by
@pushpak1300in laravel/boost#547- fix: apply table prefix to raw SQL queries in DatabaseQuery tool by
@soleinjastin laravel/boost#529- Fix normalizeCommand() splitting absolute paths containing spaces by
@digitall-itin laravel/boost#553- Fix code snippet styling to use fenced code blocks by
@pushpak1300in laravel/boost#555- Use cmd /c for Windows agent detection commands by
@soleinjastin laravel/boost#558New Contributors
@alanostmade their first contribution in laravel/boost#541@digitall-itmade their first contribution in laravel/boost#553Full Changelog: https://github.com/laravel/boost/compare/v2.1.1...v2.1.2
v2.1.1
What's Changed
- Add Flux Icons documentation to SKILL.md files by
@pushpak1300in laravel/boost#494- Detect Inertia pages directory casing from filesystem by
@pushpak1300in laravel/boost#534- Graceful cache fallback when cache driver is unreachable by
@pushpak1300in laravel/boost#533Full Changelog: https://github.com/laravel/boost/compare/v2.1.0...v2.1.1
... (truncated)
▶Changelog
Sourced from laravel/boost's changelog.
v2.1.4 - 2026-02-13
What's Changed
- Fix missing output key in Tinker tool error response by
@Orlando-Villanuevain laravel/boost#561- Add file paths and format guidance to Livewire 4 skill by
@pushpak1300in laravel/boost#543- Add model binding and page content examples to Folio routing skill by
@pushpak1300in laravel/boost#544- Update MCP development skill with accurate API patterns and testing by
@pushpak1300in laravel/boost#545- Update usePoll usage in skill by
@pushpak1300in laravel/boost#570New Contributors
@Orlando-Villanuevamade their first contribution in laravel/boost#561Full Changelog: https://github.com/laravel/boost/compare/v2.1.3...v2.1.4
v2.1.3 - 2026-02-11
What's Changed
- Remove experimental third-party MCP primitives by
@pushpak1300in laravel/boost#552- Add symlink install mode for skills by
@hosmelqin laravel/boost#499- Add additional newline before end-guideline fence by
@ChipNeedhamin laravel/boost#565- Update Roster by
@pushpak1300in laravel/boost#562New Contributors
@hosmelqmade their first contribution in laravel/boost#499@ChipNeedhammade their first contribution in laravel/boost#565Full Changelog: https://github.com/laravel/boost/compare/v2.1.2...v2.1.3
v2.1.2 - 2026-02-10
What's Changed
- Enhance database-schema tool with full column metadata by
@alanostin laravel/boost#541- Replace >- block scalar with single-line descriptions in SKILL files by
@pushpak1300in laravel/boost#547- fix: apply table prefix to raw SQL queries in DatabaseQuery tool by
@soleinjastin laravel/boost#529- Fix normalizeCommand() splitting absolute paths containing spaces by
@digitall-itin laravel/boost#553- Fix code snippet styling to use fenced code blocks by
@pushpak1300in laravel/boost#555- Use cmd /c for Windows agent detection commands by
@soleinjastin laravel/boost#558New Contributors
@alanostmade their first contribution in laravel/boost#541@digitall-itmade their first contribution in laravel/boost#553Full Changelog: https://github.com/laravel/boost/compare/v2.1.1...v2.1.2
... (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
acf33b7Update usePoll usage in skill (#570)438fa91Update MCP development skill with accurate API patterns and testing (#545)2bb8367Add model binding and page content examples to Folio routing skill (#544)2657b4bAdd file paths and format guidance to Livewire 4 skill (#543)ff26627fix: add missing output key to Tinker tool error response (#561)09e2c2dUpdate CHANGELOGb96e0abUpdate composer.json (#562)6d9001aAdd additional newline before end-guideline fence (#565)663a3a6Add symlink install mode for skills (#499)696d9b6Remove PackageGuidelinePrompt and PackageGuidelineResource (#552)- 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)