All Versions
16
Latest Version
Avg Release Cycle
92 days
Latest Release
284 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.9.3
May 23, 2020๐ Bugs
- ValueGetters are now ordered deterministic always #99 (Thanks to @jlocke427 for reporting)
๐ Build
- ๐ฆ Packages should be Deterministic and and Untracked sources should be source-linked #100
-
v1.7.2
March 01, 2020๐ Features
- ๐ We've added support for async lambdas when you're rendering async. #88 (Thanks to @alexdresko for reporting the missing feature)
-
v1.6.3
December 01, 2019๐ Bugs
- ๐ป The renderers were not correctly handling a case where you could get ambiguous data matches when differing by case. Both now throw an Ambiguous exception in this case which should help when this happens and you're not expecting it. #81 (Thanks to @jnferner for reporting this)
- The compilation renderer did not correctly handle truthy checks and was missing truthy checks added to the standard renderer. We've now brought them inline and simplified the generated code. #80 (Thanks to @jnferner for reporting this)
-
v1.4.12
August 11, 2019๐ Features
- โ Added overload for customising the parser pipeline while configuring your Stubble instance and added Obsolete attribute on old method of setting the pipeline. This will be removed in the next major version. #56 (Thanks to @Tasteful for contributing the change)
- โ Added support for overriding the HtmlEncoding when using escaped mustache tags
{{{
#68 (Thanks to @mingwli for the idea) - โ Added a configuration option for adding a type to be blacklisted from section iteration. #69
-
v1.2
December 30, 2018Features
- ๐ The internal enumerable exclusion list for section tags has now been moved to the renderer/compiler config and can be replaced. This came out of discussions with @rlabrecque so thanks to them. #45
๐ Fixes
- Interpolation tags were getting extra whitespace due to a bug with our literal tag folding Thanks to @StarLeafRob for reporting #36
- Exceptions would be thrown if a member with the same name was scanned twice. Thanks to @glennawatson for reporting and contributing the fix #41
- IEnumerators were not being reset after rendering and so couldn't be reused. Thanks to @rlabrecque for finding this and contributing the fix. #43
-
v1.1
October 14, 2018- ๐ For the first release we missed some customisation functionality from the compilation renderer. You can now add ValueGetters and EnumerationConversions to your compilation renderers. Thanks to @yufeih for noticing they were missing #32
- ๐ In this release we've added some helper methods to the ParserPipelineBuilder to help users who wan't to replace, remove and add parsers which should hopefully simplify some advanced usecases. We've also updated our docs to be more clear about our design decisions. Thanks to @CoffeeDreamLabs for bringing the lack of clarity here to our attention. #31