We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See NikolaLohinski/gonja#3 for gonja related features
gonja
fromyaml, toyaml filters (done in v1.11.1)
fromyaml
toyaml
v1.11.1
dir, basename would be good too (done in v1.11.1)
dir
fromtoml, totoml filters (done in v1.13.0)
fromtoml
totoml
v1.13.0
An file filter to load the content of a file into a variable, similarly to the include statement (done in v1.12.0)
file
include
v1.12.0
Document gonja builtin statements, filters and globals in the provider docs (done in v1.12.0)
Move all filters to gonja itself (since it's now a fully maintained fork) (done in v1.12.0)
Add the ability to specify the working directory when dealing with inlined templates (done in v1.16.0 )
v1.16.0
Move to the terraform plugin framework (Done in v2.0.0)
v2.0.0
The split filter is buggy: "test_foo" | split("_") | last is not behaving as expected (done in v1.11.1)
split
"test_foo" | split("_") | last
Native gonja filter length is broken for objects (done in v1.12.0)
length
Native gonja filters such as select or selectattr are broken when it comes to the type they are returning and need to be fixed in gonja itself.
select
selectattr
For example:
{{- [{"a": 1}, {"a": 2}] | selectattr("a", "==", 1) | first -}}
does not work.
(done in v1.12.0)
There's a bug most likely in gonja itself when it comes to indent trimmers.
# [% if data.nope is defined -%] [% endif %] Should not be commented
Renders as:
# Should not be commented
Instead of:
when the variable is undefined
Comments don't seem to handle correctly whitespace control using - (done in v1.13.0)
-
The text was updated successfully, but these errors were encountered:
NikolaLohinski
No branches or pull requests
🚀 Features
See NikolaLohinski/gonja#3 for
gonja
related featuresClick me to see finished work
fromyaml
,toyaml
filters(done in
v1.11.1
)dir
, basename would be good too(done in
v1.11.1
)fromtoml
,totoml
filters(done in
v1.13.0
)An
file
filter to load the content of a file into a variable, similarly to theinclude
statement(done in
v1.12.0
)Document gonja builtin statements, filters and globals in the provider docs
(done in
v1.12.0
)Move all filters to gonja itself (since it's now a fully maintained fork)
(done in
v1.12.0
)Add the ability to specify the working directory when dealing with inlined templates
(done in
v1.16.0
)Move to the terraform plugin framework
(Done in
v2.0.0
)🐛 Bug fixes
Click me to see finished work
The
split
filter is buggy:"test_foo" | split("_") | last
is not behaving as expected(done in
v1.11.1
)Native gonja filter
length
is broken for objects(done in
v1.12.0
)Native gonja filters such as
select
orselectattr
are broken when it comes to the type they are returning and need to be fixed in gonja itself.Details
For example:
does not work.
(done in
v1.12.0
)There's a bug most likely in gonja itself when it comes to indent trimmers.
Details
Renders as:
Instead of:
when the variable is undefined
(done in
v1.12.0
)Comments don't seem to handle correctly whitespace control using
-
(done in
v1.13.0
)The text was updated successfully, but these errors were encountered: