v1.61.0
版本发布时间: 2024-08-30 06:50:41
symfony/maker-bundle最新发布版本:v1.61.0(2024-08-30 06:50:41)
Howdy Makers!
Aside from squashing a few bugs mentioned below, this releases adds a few improvements such as the ability to generate CRUD without needing to have a trailing /
in the index path, reading twig_component.yaml
to determine the appropriate namespace (directory structure) when creating Twig Components, matching event names to event classes/id's with make:listener
, and improving PHP types with make:registration-form
& make:reset-password
.
We're also starting to roll out a config based final
classes system with all of our make:*
commands. In essence, you'll be able to set config values to determine if generated classes should be made final. This release adds the ability to do so with make:voter
& make:crud
- other makers will soon follow.
# config/packages/maker.yaml
when@dev:
maker:
root_namespace: 'App'
generate_final_classes: true
generate_final_entities: false
(See https://github.com/symfony/recipes/pull/1315 for the flex recipe)
By default, MakerBundle will generate all non-entity classes with the final
PHP keyword. Changing generate_final_classes
to false
will disable this feature. If you're app has the need to have final
entities, setting generate_final_entities
to true
will allow make:entity
to add the final
keyword to new entities. For classes & entities, we're using an all or nothing approach.
Enjoy!
v1.61.0
August 29th, 2024
- #1583 [make:crud] Remove / from from index action URL - @seb-jean
- #1579 [make:listener] Match event name against active events class/id - @maelanleborgne
-
#1571 [make:twig-component] Improve
make:twig-component
by reading the configuration file - @shadowc - #1549 [make:registration-form] improve generated types for phpstan - @seb-jean
- #1548 [make:reset-password] improve generated typehints for phpstan - @seb-jean
- #1539 [make:crud|voter] generate classes with final keyword - @jrushlow
Bug
- #1584 [make:entity] fix multiple and nullable enums - @Fan2Shrek
- #1581 [make:reset-password] fix generated test name - @mvhirsch
- #1573 [make:twig-component] Fix config file in error messages - @smnandre
-
#1550 [make:user] fix
getPassword()
return type in certain instance withPasswordAuthenticatedUserInterface
- @seb-jean
New Contributors
- @shadowc made their first contribution in https://github.com/symfony/maker-bundle/pull/1571
- @mvhirsch made their first contribution in https://github.com/symfony/maker-bundle/pull/1581
- @theofidry made their first contribution in https://github.com/symfony/maker-bundle/pull/1576
Full Changelog: https://github.com/symfony/maker-bundle/compare/v1.60.0...v1.61.0