Releases: xp-forge/mustache
Releases · xp-forge/mustache
8.2.0: XP 12 compatibility
8.1.0: Reflection removal
8.0.4: Template string representation fix
- Fixed
com.github.mustache.Template
string representation to include
root node's string representation
(@thekid)
8.0.3: String representation fix
8.0.2: Member declaration fix
- Fixed member declaration in
com.github.mustache.templates.Compiled
(@thekid)
8.0.1: PHP 8.2 compatibility
8.0.0: Drop XP 9, add XP 11
- Made compatible with PHP 8.1 - add
ReturnTypeWillChange
attributes to
iterator, see https://wiki.php.net/rfc/internal_method_return_types - Implemented xp-framework/rfc#341, dropping compatibility with XP 9
(@thekid)
7.0.0: Single quotes escaping
- Changed single quotes to be emitted as
'
for all PHP versions.
This breaks backwards compatiblity but ensure there are no security
risks with expressions such as<a href='{{url}}'>...</a>
.
(@thekid)
6.1.2: Single quotes BC
- Fixed single quotes being output as
'
in PHP 8.1, which changed
the flags' argument default, see php/php-src#6583
(@thekid)
6.1.1: PHP 8.1 null fixes
- Fixed Passing null to parameter ... of type string is deprecated
warnings in PHP 8.1
(@thekid)