Skip to content

Releases: mnapoli/FrontYAML

2.0.3

07 Feb 14:42
d42d841
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.0.2...2.0.3

2.0.2

19 Dec 17:36
58d2c73
Compare
Choose a tag to compare

Authorize symfony/yaml v6 by @Jibbarth in #27

2.0.1

11 Sep 16:10
Compare
Choose a tag to compare

Obligatory 2.0.1 bugfix release: widens PHP types.

2.0.0

11 Sep 16:04
e4a544d
Compare
Choose a tag to compare

#26 Switches to CommonMark, which is a much better Markdown parser. Parsedown is no longer installed.

Version 2 also requires PHP 7.4.

Nothing else has changed.

1.8.0

04 Dec 10:53
76baa8c
Compare
Choose a tag to compare

#23 Support PHP 8, dropped support for PHP 7.2

1.7.0

21 May 08:32
7602e0f
Compare
Choose a tag to compare

#21 Added support for Symfony 5 by @tomcoonen.

The required PHP version is now 7.2 or greater.

1.6.0

29 Oct 19:31
24070ac
Compare
Choose a tag to compare

Support for PHP 5.3 and HHVM was dropped. Since Composer is the only way supported to install this package users should not have a BC break.

1.5.2

01 Oct 11:07
Compare
Choose a tag to compare

#13 Fix regex escaping

1.5.1

15 Apr 11:49
Compare
Choose a tag to compare

Compatibility with Symfony 3 and 2

1.5.0

09 Mar 09:52
Compare
Choose a tag to compare

Added an adapter to use the League CommonMark package.

To use it, require league/commonmark and then create the FrontYAML parser using the bridge:

use \Mni\FrontYAML\Bridge\CommonMark\CommonMarkParser;

$parser = new Mni\FrontYAML\Parser(null, new CommonMarkParser());