All Versions
84
Latest Version
Avg Release Cycle
18 days
Latest Release
104 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v5.4.0 Changes
February 06, 2022- ๐ Fix async when accessing variables (#382)
- ๐ Fix doc for object.kind (#394)
- ๐ Fix comparison between ulong and int (#395)
- โ Add a notice for html.strip that it can fail/timeout in case of malformed HTML (#406)
- ๐ฒ Log an error instead of an exception in an invalid syntax with for/if/else (#393)
-
v5.3.0 Changes
February 06, 2022- โ Add support for auto-indent (#398)
-
v5.2.0 Changes
February 06, 2022- โ Add support for specifying custom format and culture for date.parse
-
v5.1.0 Changes
February 05, 2022- ๐ Fix accessing null?.property when EnableRelaxedMemberAccess == False (#401)
- โ Migrate tests to net6.0 (#410)
- โ Add support for anykind of expressions in when clauses (#409)
-
v5.0.0 Changes
October 20, 2021- ๐ Fix scope for variable (global vs local) (#385)
-
v4.1.0 Changes
October 07, 2021- โ Add
IQueryable<T>
support infor
-loops.- Parameter
offset:count
will be translated toIQueryable<T>.Skip(count)
- Parameter
reversed
will be translated toIQueryable<T>.Reverse()
- Parameter
limit:count
will be translated toIQueryable<T>.Take(count)
- Special for loop variables are supported with the exception of
rindex
andlast
- Optional
LoopLimitQueryable
-property onTemplateContext
object to control looplimit in case ofIQueryable<T>
(defaults to LoopLimit)
- Parameter
- โ Add
-
v4.0.2 Changes
September 22, 2021- ๐ Fix issue with object instance conversion between different object types
-
v4.0.1 Changes
June 03, 2021- ๐ Fix ternary operator with binary expression (#355)
-
v4.0.0 Changes
June 02, 2021- โ Remove
IItemAccessor
and merge features intoIObjectAccessor
. - โ Add support for non-string indexers for regular dictionaries (#364)
- โ Remove
-
v3.9.0 Changes
May 31, 2021- ๐ Improve AST to generate a function call when a pipecall is used with a parameterless function
- โ Add
TemplateContext.Reset
method to allow to cleanup the state of theTemplateContext