Releases: xp-forge/handlebars
Releases · xp-forge/handlebars
9.4.0: XP 12 compatibility
9.3.0: Partial inheritance
9.2.0: Inverse blocks, literals, optimizations
- Added support for literals enclosed in
[]
- @thekid - Optimized helpers invoked as part of a block - @thekid
- Fixed Call to undefined method errors for unclosed sections - @thekid
- Merged PR #29: Implement inverse blocks - @thekid
- Added PHP 8.4 to the test matrix - @thekid
- Optimized parsing
{{.}}
by not parsing following text - @thekid
9.1.0: Block helper functions
9.0.0: Decorator removal
8.1.1: HTML escaping warnings fix
8.1.0: Helper compatibility
8.0.0: Helpers precedence
- Merged PR #23: Add support for literal segments, e.g. notations
likearray.[0].[item-class]
.
(@thekid) - Merged PR #22: Give helpers precedence over input properties.
Heads up: This creates a BC break,{{date}}
will now invoke
the date helper instead of selecting the date property from the
current context!
(@thekid)
7.1.1: Nested loops fix
- Fixed
@first
and@last
inside nested each loops - @thekid