Skip to content

Releases: yannickl88/features-bundle

2.3.0: Add symfony 6 support (#19)

Choose a tag to compare

@yannickl88 yannickl88 released this 06 Jun 11:01
4e6bcb0
* Add symfony 6 compatibility, dropping 4

* Allow php:^8.1

* Add twig 3 compatibility, dropping 2

* Update unit tests

PHP 8 support

Choose a tag to compare

@yannickl88 yannickl88 released this 31 Aug 06:19
db98dde

Thanks to @janlam7 for providing support for PHP 8 and dropping non-supported PHP versions. This release includes:

  • #16 Migrate from travis to github action
  • #17 Upgrade to phpunit 9; end php7.2 support
  • #18 Add php8 compatibility

SF5 support

Choose a tag to compare

@yannickl88 yannickl88 released this 24 Dec 15:43
8b6dc76

This release includes:

Bumped versions of PHP and SF and removed legacy code

Choose a tag to compare

@yannickl88 yannickl88 released this 08 Nov 09:54
80dda27

Bumped versions of PHP and SF and removed legacy code

Changes:

  • Dropped support for php lower than 7.2
  • Dropped support for Symfony lower than 4.2
  • Project is now strictly typed
  • Removed old service names, use the class versions instead

Updated to new namespaced twig

Choose a tag to compare

@yannickl88 yannickl88 released this 25 Mar 15:22

This release includes:

  • #12 replaced deprecated global Twig classes with namespaced classes

Fix for autowire support

Choose a tag to compare

@yannickl88 yannickl88 released this 15 Jan 07:32
31dfe75

With the recent changes in Symfony autowiring will be more used. With this fix better support is added to deal with autowiring supports. The previous version had could not replace the feature arguments if autowiring was enabled, causing the deprecated feature to be injected.

Autowiring support

Choose a tag to compare

@yannickl88 yannickl88 released this 27 Nov 07:22

With this release support for autowiring has been added.

Fixed issue with tag names being escaped

Choose a tag to compare

@yannickl88 yannickl88 released this 29 Sep 11:49

Fixed issue with tag names being escaped. This release fixes issue #1 .

Stable

Choose a tag to compare

@yannickl88 yannickl88 released this 05 Apr 14:33
1.0.0

Updated README.md to include the chain resolver.

Chain resolver

Chain resolver Pre-release
Pre-release

Choose a tag to compare

@yannickl88 yannickl88 released this 21 Jan 10:24

With this release the chain resolver is added as a build-in resolver. You can use this as follows:

features:
    tags:
        beta:
            chain:
                request: ["beta", "on"]
                other: ~
                more: ["foo"]

The chain resolver only requires one resolver to resolve to true in order for it to be active.