Releases: Chi-teck/drupal-code-generator
Releases · Chi-teck/drupal-code-generator
4.1.0
4.0.0
- Dropped support for PHP 8.2
- Dropped support for Drupal 10
- Most generated plugins have been updated to use PHP attributes instead of annotations
- Removed
misc:apache-virtual-host
generator - Removed
misc:nginx-virtual-host
generator - Removed
plugin:ckeditor
generator
Generator API is must be compatible with version 3.x
4.0.0-RC1
3.6.1
4.0.0-alpha2
- Downgraded the required version of
symfony/string
to version 7.0 - Updated README.md
4.0.0-alpha1
- Added compatibility with PHPUnit version 10.
- Added Drupal 11 support and Symfony 7.
- Dropped support for Drupal 10.
- PHP attributes are now used for block and action plugins.
- Other small changes and improvements.
3.6.0
- Added sort_namespaces twig filter.
- The sort twig tag has been deprecated in favor of a sort_namespaces twig filter.
Before:
{% sort %}
use Drupal\Core\Controller\ControllerBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Component\Utility\Random;
{% endsort %}
After:
{% apply sort_namespaces %}
use Drupal\Core\Controller\ControllerBase;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Component\Utility\Random;
{% endapply %}
3.5.0
- Added revision UI for generated revisionable entity type.
- Fixed config entity form template not using entity class.
- Fixed a warning about SDC component properties that require schema changes if a non-scalar type is used.
- Fixed generation revision_metadata_keys for revisioable entity types.