``environmentfilter`` and ``environmentfunction`` are replaced
by ``pass_environment``.
- ``Markup`` and ``escape`` should be imported from MarkupSafe.
+ - Compiled templates from very old Jinja versions may need to be
+ recompiled.
Version 3.0.3
return concat(map(str, seq))
-def unicode_join(seq: t.Iterable[t.Any]) -> str:
- import warnings
-
- warnings.warn(
- "This template must be recompiled with at least Jinja 3.0, or"
- " it will fail in Jinja 3.1.",
- DeprecationWarning,
- stacklevel=2,
- )
- return str_join(seq)
-
-
def new_context(
environment: "Environment",
template_name: t.Optional[str],