Skip to content

v2.2.1

Choose a tag to compare

@github-actions github-actions released this 07 Jun 15:56
· 4 commits to main since this release
Immutable release. Only release title and notes can be modified.
9657d53

Fixed

  • update:perform command --version flag collision (#162, #163) — Symfony Console reserves --version/-V as a global flag on every Application, so declaring --version on PerformUpdateCommand threw "An option named version already exists" at command-registration time, breaking every php artisan ... invocation in host apps as soon as the command was discoverable. Renamed the custom option to --target-version (and updated the corresponding $this->option() lookup). Added a regression test that verifies the command exposes --target-version and does not redeclare --version on its own definition.