Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-Jinja2-3.1.5-1.1 RPM for aarch64

From OpenSuSE Ports Tumbleweed for aarch64

Name: python311-Jinja2 Distribution: openSUSE Tumbleweed
Version: 3.1.5 Vendor: openSUSE
Release: 1.1 Build date: Fri Dec 27 10:16:40 2024
Group: Unspecified Build host: reproducible
Size: 504156 Source RPM: python-Jinja2-3.1.5-1.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://jinja.palletsprojects.com
Summary: A template engine written in pure Python
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.

Provides

Requires

License

BSD-3-Clause

Changelog

* Fri Dec 27 2024 Nico Krapp <[email protected]>
  - Update to 3.1.5:
    * The sandboxed environment handles indirect calls to str.format,
      such as by passing a stored reference to a filter that calls
      its argument. GHSA-q2x7-8rv6-6q7h
    * Escape template name before formatting it into error messages,
      to avoid issues with names that contain f-string syntax. #1792,
      GHSA-gmj6-6f8f-6699
    * Sandbox does not allow clear and pop on known mutable sequence
      types. #2032
    * Calling sync render for an async template uses asyncio.run. #1952
    * Avoid unclosed auto_aiter warnings. #1960
    * Return an aclose-able AsyncGenerator from
      Template.generate_async. #1960
    * Avoid leaving root_render_func() unclosed in
      Template.generate_async. #1960
    * Avoid leaving async generators unclosed in blocks, includes and
      extends. #1960
    * The runtime uses the correct concat function for the current
      environment when calling block references. #1701
    * Make |unique async-aware, allowing it to be used after another
      async-aware filter. #1781
    * |int filter handles OverflowError from scientific notation. #1921
    * Make compiling deterministic for tuple unpacking in a {% set ... %}
      call. #2021
    * Fix dunder protocol (copy/pickle/etc) interaction with Undefined
      objects. #2025
    * Fix copy/pickle support for the internal missing object. #2027
    * Environment.overlay(enable_async) is applied correctly. #2061
    * The error message from FileSystemLoader includes the paths that
      were searched. #1661
    * PackageLoader shows a clearer error message when the package does
      not contain the templates directory. #1705
    * Improve annotations for methods returning copies. #1880
    * urlize does not add mailto: to values like @a@b. #1870
    * Tests decorated with @pass_context can be used with the
      |select filter. #1624
    * Using set for multiple assignment (a, b = 1, 2) does not fail when
      the target is a namespace attribute. #1413
    * Using set in all branches of {% if %}{% elif %}{% else %} blocks does
      not cause the variable to be considered initially undefined. #1253
  - drop fix-ftbfs-with-python313.patch, merged upstream
* Tue Sep 24 2024 ecsos <[email protected]>
  - Fix build error under Leap.
* Tue Jul 30 2024 John Paul Adrian Glaubitz <[email protected]>
  - Cherry-pick patch from Fedora to fix FTBFS with Python 3.13
    * fix-ftbfs-with-python313.patch
  - Add new build dependency python-trio to BuildRequires
* Mon May 06 2024 Dirk Müller <[email protected]>
  - update to 3.1.4 (bsc#1223980, CVE-2024-34064):
    * The xmlattr filter does not allow keys with / solidus, >
      greater-than sign, or = equals sign, in addition to disallowing
      spaces. Regardless of any validation done by Jinja, user input
      should never be used as keys to this filter, or must be separately
      validated first.
* Mon Jan 29 2024 Daniel Garcia <[email protected]>
  - Disable broken test with latest version of MarkupSafe (2.1.4)
    (gh#pallets/jinja#1930, gh#pallets/markupsafe#417)
* Fri Jan 12 2024 Dirk Müller <[email protected]>
  - update to 3.1.3 (bsc#1218722, CVE-2024-22195):
    * Fix compiler error when checking if required blocks in parent
      templates are xmlattr filter does not allow keys with spaces.
    * Make error messages stemming from invalid nesting of {% trans
      %} blocks more helpful. :pr:`1916`
* Fri Apr 21 2023 Dirk Müller <[email protected]>
  - add sle15_python_module_pythons (jsc#PED-68)
* Thu Apr 13 2023 Matej Cepl <[email protected]>
  - Make calling of %{sle15modernpython} optional.
* Fri Dec 02 2022 Johannes Kastl <[email protected]>
  - ignore 'pytest.PytestRemovedIn8Warning: Support for nose tests is
    deprecated and will be removed in a future release.' error from
    pytest 7.2
* Sat Jun 04 2022 Dirk Müller <[email protected]>
  - update to 3.1.2:
    * Add parameters to ``Environment.overlay`` to match ``__init__``.
    * Handle race condition in ``FileSystemBytecodeCache``. :issue:`1654`
* Sun Mar 27 2022 Arun Persaud <[email protected]>
  - specfile:
    * update copyright year
    * require python-base >= 3.7
  - update to version 3.1.1:
    * The template filename on Windows uses the primary path separator.
      :issue:`1637`
  - changes from version 3.1.0:
    * Drop support for Python 3.6. :pr:`1534`
    * Remove previously deprecated code. :pr:`1544`
      + "WithExtension" and "AutoEscapeExtension" are built-in now.
      + "contextfilter" and "contextfunction" are replaced by
      "pass_context". "evalcontextfilter" and "evalcontextfunction"
      are replaced by "pass_eval_context".  "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.
      + Legacy resolve mode for "Context" subclasses is no longer
      supported. Override "resolve_or_missing" instead of "resolve".
      + "unicode_urlencode" is renamed to "url_quote".
    * Add support for native types in macros. :issue:`1510`
    * The "{% trans %}" tag can use "pgettext" and "npgettext" by
      passing a context string as the first token in the tag, like "{%
      trans "title" %}". :issue:`1430`
    * Update valid identifier characters from Python 3.6 to 3.7.
      :pr:`1571`
    * Filters and tests decorated with "@async_variant" are pickleable.
      :pr:`1612`
    * Add "items" filter. :issue:`1561`
    * Subscriptions ("[0]", etc.) can be used after filters, tests, and
      calls when the environment is in async mode. :issue:`1573`
    * The "groupby" filter is case-insensitive by default, matching
      other comparison filters. Added the "case_sensitive" parameter
      to control this. :issue:`1463`
    * Windows drive-relative path segments in template names will not
      result in "FileSystemLoader" and "PackageLoader" loading from
      drive-relative paths. :pr:`1621`
* Sun Nov 14 2021 Michael Ströder <[email protected]>
  - update to 3.0.3
    * Fix traceback rewriting internals for Python 3.10 and 3.11. (#1535)
    * Fix how the native environment treats leading and trailing spaces
      when parsing values on Python 3.10. (PR#1537)
    * Improve async performance by avoiding checks for common types. (#1514)
    * Revert change to ``hash(Node)`` behavior. Nodes are hashed by id again (#1521)
    * ``PackageLoader`` works when the package is a single module file. (#1512)
* Sun Oct 10 2021 Michael Ströder <[email protected]>
  - dropped obsolete no-warnings-as-errors.patch
  - update to 3.0.2
    * Fix a loop scoping bug that caused assignments in nested loops to still
      be referenced outside of it. #1427
    * Make compile_templates deterministic for filter and import names. #1452, #1453
    * Revert an unintended change that caused Undefined to act like
      StrictUndefined for the in operator. #1448
    * Imported macros have access to the current template globals in async
      environments. #1494
    * PackageLoader will not include a current directory (.) path segment.
      This allows loading templates from the root of a zip import. #1467
* Fri Sep 10 2021 Steve Kowalik <[email protected]>
  - Add no-warnings-as-errors.patch:
    * Do not treat warnings as errors until upstream fix using async loops.
* Fri Aug 06 2021 Markéta Machová <[email protected]>
  - Babel is not required
* Fri Jul 09 2021 Ben Greiner <[email protected]>
  - clean up single-spec: Remove python2 remnants
* Sat Jun 19 2021 Michael Ströder <[email protected]>
  - updated upstream project URL
* Sun Jun 13 2021 Michael Ströder <[email protected]>
  - skip building for Python 2.x
* Mon May 31 2021 Adrian Schröter <[email protected]>
  - update to 3.0.1
    Read the announcement:
      https://palletsprojects.com/blog/flask-2-0-released/
    Read the full list of changes:
      https://jinja.palletsprojects.com/changes/#version-3-0-0
  - python-Jinja2-vim subpackage dropped
    vim highlight rule files do not exist anymore
* Tue Feb 09 2021 Alexandros Toptsoglou <[email protected]>
  - update to 2.11.3
    * Improve the speed of the urlize filter by reducing regex backtracking.
      Email matching requires a word character at the start of the domain part
      and only word characters in the TLD (CVE-2020-28493 bsc#1181944).
  - drops CVE-2020-28493.patch in older dists

Files

/usr/lib/python3.11/site-packages/jinja2
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/INSTALLER
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/LICENSE.txt
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/METADATA
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/RECORD
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/REQUESTED
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/WHEEL
/usr/lib/python3.11/site-packages/jinja2-3.1.5.dist-info/entry_points.txt
/usr/lib/python3.11/site-packages/jinja2/__init__.py
/usr/lib/python3.11/site-packages/jinja2/__pycache__
/usr/lib/python3.11/site-packages/jinja2/_identifier.py
/usr/lib/python3.11/site-packages/jinja2/async_utils.py
/usr/lib/python3.11/site-packages/jinja2/bccache.py
/usr/lib/python3.11/site-packages/jinja2/compiler.py
/usr/lib/python3.11/site-packages/jinja2/constants.py
/usr/lib/python3.11/site-packages/jinja2/debug.py
/usr/lib/python3.11/site-packages/jinja2/defaults.py
/usr/lib/python3.11/site-packages/jinja2/environment.py
/usr/lib/python3.11/site-packages/jinja2/exceptions.py
/usr/lib/python3.11/site-packages/jinja2/ext.py
/usr/lib/python3.11/site-packages/jinja2/filters.py
/usr/lib/python3.11/site-packages/jinja2/idtracking.py
/usr/lib/python3.11/site-packages/jinja2/lexer.py
/usr/lib/python3.11/site-packages/jinja2/loaders.py
/usr/lib/python3.11/site-packages/jinja2/meta.py
/usr/lib/python3.11/site-packages/jinja2/nativetypes.py
/usr/lib/python3.11/site-packages/jinja2/nodes.py
/usr/lib/python3.11/site-packages/jinja2/optimizer.py
/usr/lib/python3.11/site-packages/jinja2/parser.py
/usr/lib/python3.11/site-packages/jinja2/py.typed
/usr/lib/python3.11/site-packages/jinja2/runtime.py
/usr/lib/python3.11/site-packages/jinja2/sandbox.py
/usr/lib/python3.11/site-packages/jinja2/tests.py
/usr/lib/python3.11/site-packages/jinja2/utils.py
/usr/lib/python3.11/site-packages/jinja2/visitor.py
/usr/share/doc/packages/python311-Jinja2
/usr/share/doc/packages/python311-Jinja2/README.md
/usr/share/doc/packages/python311-Jinja2/changes.rst
/usr/share/doc/packages/python311-Jinja2/examples
/usr/share/doc/packages/python311-Jinja2/examples/cache_extension.py
/usr/share/doc/packages/python311-Jinja2/examples/inline_gettext_extension.py
/usr/share/licenses/python311-Jinja2
/usr/share/licenses/python311-Jinja2/LICENSE.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Wed Jan 8 00:44:43 2025