- Prefer
DynamicMemberLookup
over KVC.
##342 @art-divin
- Fix bug in
LazyValueWrapper
, causing it to never resolve.
David Jennes #328
- Drop support for Swift < 5. For Swift 4.2 support, you should use Stencil 0.14.2.
David Jennes #323
- Added support for trimming whitespace around blocks with Jinja2 whitespace control symbols. eg
{%- if value +%}
.
Miguel Bejar Yonas Kolb #92 #287 - Added support for adding default whitespace trimming behaviour to an environment.
Yonas Kolb #287 - Blocks now can be used repeatedly in the template. When block is rendered for the first time its content will be cached and it can be rendered again later using
{{ block.block_name }}
.
Ilya Puchka #158 #182 - Added
break
andcontinue
tags to break or continue current loop.
Ilya Puchka #175 - You can now access outer loop's scope by labeling it:
{% outer: for ... %}... {% for ... %} {{ outer.counter }} {% endfor %}{% endfor %}
.
Ilya Puchka #175 - Boolean expressions can now be rendered, i.e
{{ name == "John" }}
will rendertrue
orfalse
depending on the evaluation result.
Ilya Puchka David Jennes #164 #325 - Enable dynamic member lookup using a new
DynamicMemberLookup
marker protocol. Conform your own types to this protocol to support dynamic member from with contexts.
Ilya Puchka #219 #246 - Allow providing lazily evaluated context data, using the
LazyValueWrapper
structure.
David Jennes #324
- Fixed using
{{ block.super }}
inside nodes other thanblock
.
Ilya Puchka #266 #267
- Updated internal maintenance scripts, and switched to GitHub actions.
David Jennes #321 - Made the
tokens
property on aTemplate
public.
Stefanomondino #292 - Made the
Template.render(_:)
method (that accepts aContext
) public.
David Jennes #322
- Update Spectre (0.10) and PathKit to support Xcode 13.
Astromonkee #314
- Fix for crashing range indexes when variable length is 1.
Łukasz Kuczborski #306
- Drop support for Swift < 4.2. For Swift 4 support, you should use Stencil 0.13.1.
David Jennes #294
- Added support for dynamic filter using
filter
filter. With that you can define a variable with a name of filter , i.e.myfilter = "uppercase"
and then use it to invoke this filter with{{ string|filter:myfilter }}
.
Ilya Puchka #203
- Fixed using parenthesis in boolean expressions, they now can be used without spaces around them.
Ilya Puchka #254 - Throw syntax error on empty variable tags (
{{ }}
) insteadfatalError
.
Ilya Puchka #263
Token
type converted to struct to allow computing token components only once.
Ilya Puchka #256- Added SwiftLint to the project.
David Jennes #249 - Updated to Swift 5.
Jungwon An #268
- Fixed a bug in Stencil 0.13 where tags without spaces were incorrectly parsed.
David Jennes #252
- Now requires Swift 4.1 or newer.
Yonas Kolb #228
- You can now use parentheses in boolean expressions to change operator precedence.
Ilya Puchka #165 - Added method to add boolean filters with their negative counterparts.
Ilya Puchka #160 - Now you can conditionally render variables with
{{ variable if condition }}
, which is a shorthand for{% if condition %}{{ variable }}{% endif %}
. You can also useelse
like{{ variable1 if condition else variable2 }}
, which is a shorthand for{% if condition %}{{ variable1 }}{% else %}{{ variable2 }}{% endif %}
Ilya Puchka #243 - Now you can access string characters by index or get string length the same was as if it was an array, i.e.
{{ 'string'.first }}
,{{ 'string'.last }}
,{{ 'string'.1 }}
,{{ 'string'.count }}
.
Ilya Puchka #245
- Fixed the performance issues introduced in Stencil 0.12 with the error log improvements.
Ilya Puchka #230 - Now accessing undefined keys in NSObject does not cause runtime crash and instead renders empty string.
Ilya Puchka #234 for
tag: When iterating over a dictionary the keys will now always be sorted (in an ascending order) to ensure consistent output generation.
David Jennes #240
- Updated the codebase to use Swift 4 features.
David Jennes #239 - Update to Spectre 0.9.0.
Ilya Puchka #247 - Optimise Scanner performance.
Eric Thorpe Sébastien Duperron David Jennes #226
- Updated the PathKit dependency to 0.9.0 in CocoaPods, to be in line with SPM.
David Jennes #227
- Added an optional second parameter to the
include
tag for passing a sub context to the included file.
Yonas Kolb #214 - Variables now support the subscript notation. For example, if you have a variable
key = "name"
, and an objectitem = ["name": "John"]
, then{{ item[key] }}
will evaluate to "John".
David Jennes #215 - Adds support for using spaces in filter expression.
Ilya Puchka #178 - Improvements in error reporting.
Ilya Puchka #167
- Fixed using quote as a filter parameter.
Ilya Puchka #210
- Added support for resolving superclass properties for not-NSObject subclasses.
Ilya Puchka #152 - The
{% for %}
tag can now iterate over tuples, structures and classes via their stored properties.
Ilya Puchka #173 - Added
split
filter.
Ilya Puchka #187 - Allow default string filters to be applied to arrays.
Ilya Puchka #190 - Similar filters are suggested when unknown filter is used.
Ilya Puchka #186 - Added
indent
filter.
Ilya Puchka #188 - Allow using new lines inside tags.
Ilya Puchka #202 - Added support for iterating arrays of tuples.
Ilya Puchka #177 - Added support for ranges in if-in expression.
Ilya Puchka #193 - Added property
forloop.length
to get number of items in the loop.
Ilya Puchka #171 - Now you can construct ranges for loops using
a...b
syntax, i.e.for i in 1...array.count
.
Ilya Puchka #192
- Fixed rendering
{{ block.super }}
with several levels of inheritance.
Ilya Puchka #154 - Fixed checking dictionary values for nil in
default
filter.
Ilya Puchka #162 - Fixed comparing string variables with string literals, in Swift 4 string literals became
Substring
and thus couldn't be directly compared to strings.
Ilya Puchka #168 - Integer literals now resolve into Int values, not Float.
Ilya Puchka #181 - Fixed accessing properties of optional properties via reflection.
Ilya Puchka #204 - No longer render optional values in arrays as
Optional(..)
.
Ilya Puchka #205 - Fixed subscription tuples by value index, i.e.
{{ tuple.0 }}
.
Ilya Puchka #172
- Add support for Xcode 9.1.
- Adds
counter0
to for loop context allowing you to get the current index of the for loop 0 indexed. - Introduces a new
DictionaryLoader
for loading templates from a Swift Dictionary. - Added
in
expression in if tag for strings and arrays of hashable types - You can now access the amount of items in a dictionary using the
count
property.
- Fixes a potential crash when using the
{% for %}
template tag with the incorrect amount of arguments. - Fixes a potential crash when using incomplete tokens in a template for
example,
{%%}
or{{}}
. - Fixes evaluating nil properties as true
-
for
block now can containwhere
expression to filter array items. For example{% for item in items where item > 1 %}
is now supported. -
if
blocks may now contain else if (elif
) conditions.{% if one or two and not three %} one or two but not three {% elif four %} four {% else %} not one, two, or four {% endif %}
-
for
block now allows you to iterate over array of tuples or dictionaries.{% for key,value in thing %} <li>{{ key }}: {{ value }}</li> {% endfor %}
- You can now use literal filter arguments which contain quotes. #98
-
It is no longer possible to create
Context
objects. Instead, you can pass a dictionary directly to aTemplate
srender
method.- try template.render(Context(dictionary: ["name": "Kyle"])) + try template.render(["name": "Kyle"])
-
Template loader are no longer passed into a
Context
, instead you will need to pass theLoader
to anEnvironment
and create a template from theEnvironment
.let loader = FileSystemLoader(paths: ["templates/"]) - let template = loader.loadTemplate(name: "index.html") - try template.render(Context(dictionary: ["loader": loader])) + let environment = Environment(loader: loader) + try environment.renderTemplate(name: "index.html")
-
Loader
s will now throw aTemplateDoesNotExist
error when a template is not found. -
Namespace
has been removed and replaced by extensions. You can create an extension including any custom template tags and filters. A collection of extensions can be passed to anEnvironment
.
-
Environment
is a new way to load templates. You can configure an environment with custom template filters, tags and loaders and then create a template from an environment.Environment also provides a convenience method to render a template directly.
-
FileSystemLoader
will now ensure that template paths are within the base path. Any template names that try to escape the base path will raise aSuspiciousFileOperation
error. -
New
{% filter %}
tag allowing you to perform a filter across the contents of a block.{% filter lowercase %} This Text Will Be Lowercased. {% endfilter %}
-
You can now use
{{ block.super }}
to render a super block from another{% block %}
. -
Environment
allows you to provide a customTemplate
subclass, allowing new template to use a specific subclass. -
If expressions may now contain filters on variables. For example
{% if name|uppercase == "TEST" %}
is now supported.
-
Template
initialisers have been deprecated in favour of using a template loader such asFileSystemLoader
inside anEnvironment
. -
The use of whitespace inside variable filter expression is now deprecated.
- {{ name | uppercase }} + {{ name|uppercase }}
- Restores compatibility with ARM based platforms such as iOS. Stencil 0.7
introduced compilation errors due to using the
Float80
type which is not available.
- Fixes an issue where using
{% if %}
statements which use operators would throw a syntax error.
-
TemplateLoader
has been renamed toFileSystemLoader
. TheloadTemplate(s)
methods are now throwing and now take labels for thename
andnames
arguments. -
Many internal classes are no longer public. Some APIs were previously accessible due to earlier versions of Swift requiring the types to be public to be able to test. Now we have access to
@testable
these can correctly be private. -
{% ifnot %}
tag is now deprecated, please use{% if not %}
instead.
-
Variable lookup now supports introspection of Swift types. You can now lookup values of Swift structures and classes inside a Context.
-
If tags can now use prefix and infix operators such as
not
,and
,or
,==
,!=
,>
,>=
,<
and<=
.{% if one or two and not three %}
-
You may now register custom template filters which make use of arguments.
-
There is now a
default
filter.Hello {{ name|default:"World" }}
-
There is now a
join
filter.{{ value|join:", " }}
-
{% for %}
tag now supports filters.{% for user in non_admins|default:admins %} {{ user }} {% endfor %}
-
Variables (
{{ variable.5 }}
) that reference an array index at an unknown index will now resolve tonil
instead of causing a crash.
#72 -
Templates can now extend templates that extend other templates.
#60 -
If comparisons will now treat 0 and below numbers as negative.
- Adds support for Swift 3.0.