Releases: symfony/maker-bundle
v1.4.1 Fix for Doctrine inheritance & embeddables
v1.4.0 Bug fixes! Small nice things
Bug fix for make:entity
What's better than a new minor release? That same minor release, but with one less bug! Say hello to v1.3.1 of MakerBundle:
- Fixed a bug in make:entity where some integer
@Columnattributes would be generated with quotes around it (which is improper) - thanks @IndraGunawan in #139
v1.3.0 Drastically improved make:entity Command
Woh! This release contains just one new feature, but it's a big one:
- Drastically improved
make:entitycommand, which now supports
adding fields, relationships, updating existing entities, and
generating (with the--regenerateflag) missing
properties/getters/setters (effectively replacesdoctrine:generate:entities)- thanks to @weaverryan in #104
v1.2.0 New make:crud & improved make:form
v1.1.1: Windows path fix
We did it! Another release!
- Squashed a Windows bug and added AppVeyor CI so that generation on Windows works again, and will not break in the future: #125 via @weaverryan
BC Change in MakerInterface, New Commands
Go team! A new release in MakerBundle with some new commands, simplifications for generating your own maker commands and other improvements:
Highlights:
-
[BC BREAK] The MakerInterface changed:
getParameters(),getFiles()
andwriteNextStepsMessage()were removed andgenerate()was added
in their place. We recommend extendingAbstractMakerinstead of implementing
the interface directly, and use$this->writeSuccessMessage()to get
the normal "success" message after the command #120 via @weaverryan -
Added new
make:migrationcommand, which wraps the normal
doctrine:migrations:diffcommand #97 via @weaverryan -
Added new
make:fixturescommand to generate an empty fixtures class
#105 via @javiereguiluz -
Added PHPDoc to generated entity repositories so that your IDE knows
what type of objects are returned #116 @enleur -
Allowed generation of all classes into sub-namespaces #120 via @weaverryan
Various fixes
1.0.1
1.0.0: Hello MakerBundle!
Welcome to version 1.0 of MakerBundle!
Documentation: https://github.com/symfony/maker-bundle/blob/master/src/Resources/doc/index.rst
Current Commands: run php bin/console list make
Go generate some code!