jinja2 3.0.3-1ubuntu0.1 source package in Ubuntu

Changelog

jinja2 (3.0.3-1ubuntu0.1) jammy-security; urgency=medium

  * SECURITY UPDATE: Cross-Site scripting
    - debian/patches/CVE-2024-22195.patch: disallow keys with spaces
      in src/jinja2/filters.py, tests/test_filters.py.
    - CVE-2024-22195

 -- Leonidas Da Silva Barbosa <email address hidden>  Fri, 19 Jan 2024 07:56:33 -0300

Upload details

Uploaded by:
Leonidas S. Barbosa
Uploaded to:
Jammy
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy updates main python
Jammy security main python

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
jinja2_3.0.3.orig.tar.gz 262.9 KiB 611bb273cd68f3b993fabdc4064fc858c5b47a973cb5aa7999ec1ba405c87cd7
jinja2_3.0.3-1ubuntu0.1.debian.tar.xz 10.7 KiB ef1cfbf13ecf4e85779fe8ef3d98b1a9599f8622b9518723c71b244afd72881e
jinja2_3.0.3-1ubuntu0.1.dsc 2.2 KiB 9b17d5411796b68451d55af0a4867a336a3e3a5f7cf5a056bf34fde9aa9d1e0e

View changes file

Binary packages built by this source

python-jinja2-doc: documentation for the Jinja2 Python library

 Jinja2 is a small but fast and easy to use stand-alone template engine
 .
 This package contains the documentation for Jinja2 in HTML and
 reStructuredText formats.

python3-jinja2: small but fast and easy to use stand-alone template engine

 Jinja2 is a template engine written in pure Python. It provides a Django
 inspired non-XML syntax but supports inline expressions and an optional
 sandboxed environment.
 .
 The key-features are:
  * Configurable syntax. If you are generating LaTeX or other formats with
    Jinja2 you can change the delimiters to something that integrates better
    into the LaTeX markup.
  * Fast. While performance is not the primarily target of Jinja2 it’s
    surprisingly fast. The overhead compared to regular Python code was reduced
    to the very minimum.
  * Easy to debug. Jinja2 integrates directly into the Python traceback system
    which allows you to debug Jinja2 templates with regular Python debugging
    helpers.
  * Secure. It’s possible to evaluate untrusted template code if the optional
    sandbox is enabled. This allows Jinja2 to be used as templating language
    for applications where users may modify the template design.