Changelog for
python310-Markdown-3.4.3-97.5.noarch.rpm :
* Fri Mar 24 2023 Benoît Monin
- update to version 3.4.3: bug-fix release
* Restore console script (#1327).- additional changes from version 3.4.2: bug-fix release
* Improve standalone
* and _ parsing (#1300).
* Consider HTML tag a block-level element (#1309).
* Officially support Python 3.11.
* Switch from setup.py to pyproject.toml.- drop macros in spec file: already provided by python-rpm-macros
* Sun Jul 17 2022 Benoît Monin - update to version 3.4.1: bug-fix release
* Fix an import issue with importlib.util (#1274).- additional changes from version 3.4.0:
* see https://python-markdown.github.io/change_log/release-3.4/ for details- drop requirement of python-xml, not needed by upstream- set the minimum python version to 3.7- require importlib-metadata only for python version < 3.10
* Thu May 05 2022 Matej Cepl - Clean up the SPEC file.
* Thu May 05 2022 Benoît Monin - update to version 3.3.7: bug-fix release
* Disallow square brackets in reference link ids (#1209)
* Retain configured pygments_style after first code block (#1240)
* Ensure fenced code attributes are properly escaped (#1247)
* Wed Nov 24 2021 Dirk Müller - update to 3.3.6:
* Fix a dependency issue
* Tue Nov 16 2021 Benoît Monin - update to version 3.3.5: bug-fix release
* Make the slugify_unicode function not remove diacritical marks (#1118).
* Fix [toc] detection when used with nl2br extension (#1160).
* Re-use compiled regex for block level checks (#1169).
* Don\'t process shebangs in fenced code blocks when using CodeHilite (#1156).
* Improve email address validation for Automatic Links (#1165).
* Ensure tags are parsed correctly (#1079).
* Support Python 3.10 (#1124).
* Thu Feb 25 2021 Benoît Monin - update to version 3.3.4: bug-fix release
* Properly parse unclosed tags in code spans (#1066)
* Properly parse processing instructions in md_in_html (#1070)
* Properly parse code spans in md_in_html (#1069)
* Preserve text immediately before an admonition (#1092)
* Simplified regex for HTML placeholders (#928) addressing (#932)
* Ensure permalinks and anchorlinks are not restricted by toc_depth (#1107)
* Sun Oct 25 2020 Benoît Monin - update to version 3.3.3: bug-fix release
* Unify all block-level tags (#1047).
* Fix issue where some empty elements would have text rendered as None when using md_in_html (#1049).
* Avoid catastrophic backtracking in hr regex (#1055).
* Fix hr HTML handling (#1053).
* Tue Oct 20 2020 Benoît Monin - update to version 3.3.2: bug-fix release
* Properly parse inline HTML in md_in_html (#1040 & #1045).
* Avoid crashing when md_in_html fails (#1040).
* Tue Oct 13 2020 Benoît Monin - update to version 3.3.1: bug-fix release
* Correctly parse raw script and style tags (#1036).
* Ensure consistent class handling by fenced_code and codehilite (#1032).
* Wed Oct 07 2020 Benoît Monin - update to version 3.3: major release see https://python-markdown.github.io/change_log/release-3.3/ for details
* Sat May 09 2020 Benoît Monin - update to version 3.2.2:
* Add checklinks tox environment to ensure all links in documentation are good.
* Refactor extension API documentation (#729).
* Load entry_points (for extensions) only once using importlib.metadata.
* Do not double escape entities in TOC.
* Correctly report if an extension raises a TypeError (#939).
* Raise a KeyError when attempting to delete a nonexistent key from the extension registry (#939).
* Remove import of packaging (or pkg_resources fallback) entirely
* Remove setuptools as a run-time dependency (install_required).- add new requirement importlib-metadata for python < 3.8- remove setuptools from Requires: dependency dropped by upstream
* Thu Feb 13 2020 Benoît Monin - update to version 3.2.1: bugfix release
* The name property in toc_tokens from the TOC extension now escapes HTML special characters (<, >, and &).- additional changes from version 3.2: major release
* Backwards-incompatible changes: + Drop support for Python 2.7 + em and strong inline processor changes + CodeHilite now always wraps with tags + markdown.util.etree deprecated
* New features: + Some new configuration options have been added to the toc extension + Document thread safety (#812). + Markdown parsing in HTML has been exposed via a separate extension called md_in_html. + Add support for Python 3.8.
* Bug fixes: + HTML tag placeholders are no longer included in .toc_tokens (#899). + Unescape backslash-escaped characters in TOC ids (#864). + Refactor bold and italic logic in order to solve complex nesting issues (#792). + Always wrap CodeHilite code in tags (#862).- disable python2 build: Markdown is python 3 only now