Skip to content

Releases: symfony/maker-bundle

v1.4.3 Minor fix to make:entity decimal type

22 Apr 00:46
Compare
Choose a tag to compare

Releases are always exciting! But, this one is just a bug fix :).

#161 Fixed make:entity bug when using a decimal type - thanks to @mercuryseries

v1.4.2 Bug fixes

19 Apr 17:30
Compare
Choose a tag to compare

Hi! A few more minor changes:

  • #157 Fix a namespace issue introduced recently
  • #155 Re-add support for PHP 7.0

v1.4.1 Fix for Doctrine inheritance & embeddables

19 Apr 13:09
Compare
Choose a tag to compare

Yes! More bugs squashed to make the make: experience better than ever!

Highlights:

  • #149 Fixed issues with some generator commands when your entity used inheritance or embeddables. Thanks to @sadikoff

v1.4.0 Bug fixes! Small nice things

11 Apr 23:00
Compare
Choose a tag to compare

We did it! We've created another release! 🎆

This release is mostly a bug-fix release, as we continue to improve and make things smoother. Highlights:

  • Removed our tests from the archive to avoid polluting the user's auto-completion of classes #147
  • Fixed some minor bugs! #150 #145

Bug fix for make:entity

21 Mar 13:44
Compare
Choose a tag to compare

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 @Column attributes would be generated with quotes around it (which is improper) - thanks @IndraGunawan in #139

v1.3.0 Drastically improved make:entity Command

17 Mar 19:52
Compare
Choose a tag to compare

Woh! This release contains just one new feature, but it's a big one:

  • Drastically improved make:entity command, which now supports
    adding fields, relationships, updating existing entities, and
    generating (with the --regenerate flag) missing
    properties/getters/setters (effectively replaces doctrine:generate:entities)

v1.2.0 New make:crud & improved make:form

14 Mar 01:04
Compare
Choose a tag to compare

A new release! And a big one!

  • New maker command! make:crud - thanks to @sadikoff in #113.

  • Greatly improved make:form command that auto-adds fields if
    your form is bound to an entity class - thanks to @sadikoff in #113.

v1.1.1: Windows path fix

21 Feb 19:57
Compare
Choose a tag to compare

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

19 Feb 19:20
Compare
Choose a tag to compare

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()
    and writeNextStepsMessage() were removed and generate() was added
    in their place. We recommend extending AbstractMaker instead of implementing
    the interface directly, and use $this->writeSuccessMessage() to get
    the normal "success" message after the command #120 via @weaverryan

  • Added new make:migration command, which wraps the normal
    doctrine:migrations:diff command #97 via @weaverryan

  • Added new make:fixtures command 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

04 Dec 17:53
Compare
Choose a tag to compare

We're better than ever! This releases fixes a few clear bugs with the generated code:

  • #79 (bad base class for make:auth)
  • #81 (getParameter() not defined in make:controller - wrong base class)