Reputation: 43
I want to update Freemarker from 2.3.21 to 2.3.26-incubating. but, I do not know what features have improved or added or edited. I need to write an article about main improvement between these tow version. what should I write?
I want main improvement between tow versions 2.3.21 and 2.3.26-incubating of Freemarker. please, help me:
Upvotes: 0
Views: 105
Reputation: 31122
As @StephaneM said, there's a detailed change log. And it will be long for such a huge version range, but all changes should be backward compatible. But the most popular new features were probably these: Automatic escaping (i.e. "output formats"), new #list
features (key-value listing, #items
, #else
, #sep
), loop variable built-ins, ?api
(to work around historical issues with Map
-s...), custom number- and date formats, +=
and ++
operators in assignments, possibility of escaping of -
(and :
and .
) in identifiers with \
.
Upvotes: 1