Skip to content

Releases: symfony/maker-bundle

Bug fixes for embeddables, edge-case class names

03 Mar 20:00
Compare
Choose a tag to compare

Hiya!

Another patch release with some minor bug fixes and other minor things - all thanks to the community!

Cheers!

Changes: v1.11.3..v1.11.4

Fix for make:migration and various other small fixes

17 Jan 02:23
Compare
Choose a tag to compare

Hiya!

Just a patch release with some minor bug fixes and other minor things - all driven by community contributions. Woo!

Changes: v1.11.2..v1.11.3

Fixing some PHPCS bug and a make:auth validation bug

05 Jan 04:32
24b19cc
Compare
Choose a tag to compare

Hi friends!

Just a few bug fixes in this release:

  • #343 Fixing phpcs and making the registration controller more explicit - thanks to @weaverryan
  • #204 Fixed the IDE link in new controller + make code simpler in the generated controller - thanks to @lyrixx
  • #203 Better CS in make:crud command - thanks to @lyrixx
  • #345 fix - make:auth returns exception in validator.php - thanks to @LeJeanbono

Bug fix for non-existent src/Entity directory

20 Dec 19:54
Compare
Choose a tag to compare

Patch release that addresses 2 bugs:

  • Fix entity directory does not exist - thanks to @yceruto #311
  • Add missing max Length validator in make:registration-form - thanks to @weaverryan #337

New command: make:registration-form 🚀

20 Dec 15:48
Compare
Choose a tag to compare

Hey friends! This release comes with one new, shiny command:

Enjoy!

New make:serializer:normalizer command and other minor new features

13 Dec 19:14
Compare
Choose a tag to compare

Another release to make developing in Symfony faster! Highlights:

  • Add make:serializer:normalizer command - #298 thanks
    to @lyrixx

  • Add a --no-template option to make:controller to skip
    generating a template - #280 thanks to @welcoMattic

  • Add support for rendering additional date types in make:crud

  • Better errors when trying to use reserved words for classes

make:form now works with non-entities!

03 Nov 19:35
Compare
Choose a tag to compare

Another release brought to you by the active community of MakerBundle! This release includes a number of bug fixes and one great new feature.

Changes: v1.8.0...v1.9.0

  • Allow make:form to work with non-entities - #301 thanks to @ckrack

New make:auth option to generate an entire login form + features & fixes

13 Oct 20:18
Compare
Choose a tag to compare

This is a BIG release that I'm thrilled to say was powered entirely by community contributions!

The big features are related to security: make:auth now updates your security.yaml file and can also generate an entire, functional login form system. Highlights:

make:auth can now generate an entire form login system with
authenticator, login form and controller! #266 thanks to @nikophil

make:auth now registers your guard authenticator in your security.yaml
file automatically - #261 thanks to @nikophil

Generate more explicit voter attribute names - #283 thanks to @lyrixx

Fixing incorrect dependency for make:crud - #256 thanks to @ckrack

Fix self-referencing relation issue - #278 thanks to @codedmonkey

Fix edge-case bad template name in make:crud - #286 thanks
to @thlbaut

New make:user Security Command & Fixes

30 Aug 01:09
Compare
Choose a tag to compare

This release comes with a new shiny command! Introducing make:user - a way to generate the User class you need for your exact configuration + security.yaml configuration.

Highlights of 1.7.0:

  • Added make:user command that generates a User class, generates
    a user provider (when needed) and configures your the providers
    and encoders section in your security.yaml file - #250 thanks
    to @weaverryan

  • Properly extend AbstractController and use core @Route annotation
    in make:crud - #246 thanks to @royklutman

  • Fixed a bug when a class name contained the namespace App\ - #243
    thanks to @gmanen

  • Fix bug with make:entity when generating inside a sub-directory - #245
    thanks to @nikophil

Many small bug fixes & features!

08 Aug 14:20
Compare
Choose a tag to compare

We did it! Another release! 🎂And this contains many bug fixes and small features from various contributors. Highlights:

#238 Fixing bad empty line when source file uses tabs - thanks to @weaverryan
#190 - Str case mismatch - thanks to @localheinz
#197 - Preserve existing class metadata - thanks to @ro0NL
#214 - Fixing a bug where having relativizePath failed - thanks to @weaverryan
#205 - Do not prefix Command Class Name by 'App' if the prefix is app: - thanks to @lyrixx
#215 - make:entity: Add return type to getId() - thanks to @gharlan
#222, #202 - Don't make Twig filters safe for HTML by default - thanks to @lyrixx
#224 - Remove support for the deprecated json_array Doctrine type - thanks to @javiereguiluz
#221 - Extend from AbstractController when using Symfony 4.1 or higher - thanks to @javiereguiluz
#226 - Don't use :contains in the functional test tpl - thanks to @dunglas