Update to 2.9.6. Many bugfixes and enhancements since 2.8, see here for changelog.
Details
Details
- Reviewers
JoshStrobl - Group Reviewers
Triage Team - Commits
- R2606:2eec8a476c9f: Update python-jinja to 2.9.6
Installed and ran built in tests. Also, a quick example:
In [1]: from jinja2 import Template
In [2]: t = Template("Hello {{ something }}")
In [3]: t.render(something="World")
Out[3]: 'Hello World'Diff Detail
Diff Detail
- Repository
- R2606 python-jinja
- Lint
Lint Not Applicable - Unit
Tests Not Applicable
Event Timeline
Comment Actions
There is at least one security fix since 2.8, so I'm adding the security tag.
SECURITY: if the sandbox mode is used format expressions are now sandboxed
with the same rules as in Jinja. This solves various information leakage
problems that can occur with format strings.