Commit b3deb38
authored
Bump the minor group with 3 updates (#172)
Bumps the minor group with 3 updates:
[markdown](https://github.com/Python-Markdown/markdown),
[types-markdown](https://github.com/typeshed-internal/stub_uploader) and
[setuptools-scm[toml]](https://github.com/pypa/setuptools-scm).
Updates `markdown` from 3.7 to 3.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Python-Markdown/markdown/releases">markdown's
releases</a>.</em></p>
<blockquote>
<h2>Release 3.8</h2>
<h3>Changed</h3>
<ul>
<li>DRY fix in <code>abbr</code> extension by introducing method
<code>create_element</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1483">#1483</a>).</li>
<li>Clean up test directory by removing some redundant tests and port
non-redundant cases to the newer test framework.</li>
<li>Improved performance of the raw HTML post-processor (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1510">#1510</a>).</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Backslash Unescape IDs set via <code>attr_list</code> on
<code>toc</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1493">#1493</a>).</li>
<li>Ensure <code>md_in_html</code> processes content inside
"markdown" blocks as they are
parsed outside of "markdown" blocks to keep things more
consistent for
third-party extensions (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1503">#1503</a>).</li>
<li><code>md_in_html</code> handle tags within inline code blocks better
(<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1075">#1075</a>).</li>
<li><code>md_in_html</code> fix handling of one-liner block HTML
handling (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1074">#1074</a>).</li>
<li>Ensure <code><center></code> is treated like a block-level
element (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1481">#1481</a>).</li>
<li>Ensure that <code>abbr</code> extension respects
<code>AtomicString</code> and does not process
perceived abbreviations in these strings (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1512">#1512</a>).</li>
<li>Ensure <code>smarty</code> extension correctly renders nested
closing quotes (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1514">#1514</a>).</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md">markdown's
changelog</a>.</em></p>
<blockquote>
<p>title: Changelog
toc_depth: 2</p>
<h1>Python-Markdown Changelog</h1>
<p>All notable changes to this project will be documented in this
file.</p>
<p>The format is based on <a
href="https://keepachangelog.com/en/1.1.0/">Keep a Changelog</a>,
and this project adheres to <a
href="https://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.
See the <a
href="https://github.com/Python-Markdown/markdown/blob/master/docs/contributing.md">Contributing
Guide</a> for details.</p>
<h2>[Unreleased]</h2>
<h3>Fixed</h3>
<ul>
<li>Fixed dropped content in <code>md_in_html</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1526">#1526</a>).</li>
<li>Fixed HTML handling corner case that prevented some content from not
being rendered (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1528">#1528</a>).</li>
</ul>
<h2>[3.8.0] - 2025-04-09</h2>
<h3>Changed</h3>
<ul>
<li>DRY fix in <code>abbr</code> extension by introducing method
<code>create_element</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1483">#1483</a>).</li>
<li>Clean up test directory by removing some redundant tests and port
non-redundant cases to the newer test framework.</li>
<li>Improved performance of the raw HTML post-processor (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1510">#1510</a>).</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Backslash Unescape IDs set via <code>attr_list</code> on
<code>toc</code> (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1493">#1493</a>).</li>
<li>Ensure <code>md_in_html</code> processes content inside
"markdown" blocks as they are
parsed outside of "markdown" blocks to keep things more
consistent for
third-party extensions (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1503">#1503</a>).</li>
<li><code>md_in_html</code> handle tags within inline code blocks better
(<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1075">#1075</a>).</li>
<li><code>md_in_html</code> fix handling of one-liner block HTML
handling (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1074">#1074</a>).</li>
<li>Ensure <code><center></code> is treated like a block-level
element (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1481">#1481</a>).</li>
<li>Ensure that <code>abbr</code> extension respects
<code>AtomicString</code> and does not process
perceived abbreviations in these strings (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1512">#1512</a>).</li>
<li>Ensure <code>smarty</code> extension correctly renders nested
closing quotes (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1514">#1514</a>).</li>
</ul>
<h2>[3.7.0] - 2024-08-16</h2>
<h3>Changed</h3>
<ul>
<li>
<p>Refactor <code>abbr</code> Extension</p>
<p>A new <code>AbbrTreeprocessor</code> has been introduced, which
replaces the now deprecated
<code>AbbrInlineProcessor</code>. Abbreviation processing now happens
after Attribute Lists,
avoiding a conflict between the two extensions (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1460">#1460</a>).</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/b34e1d03387be771aa626241fe56f8f0c34243f2"><code>b34e1d0</code></a>
Bump version to 3.8</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/e6b71632726c049ab9a7a1b42e816a67f422064b"><code>e6b7163</code></a>
Update deploy workflow to normalize version</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/bd67d4862b388c7c2dd1ae90635c633472c2c77c"><code>bd67d48</code></a>
Improve changelog validation</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/e912575a903215ebafaeb0fecbdad079d998b9ba"><code>e912575</code></a>
Fix incorrect TOC list structure in docs</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/42d4b4336e97485b96c1e4e9fcdb4e8df2501217"><code>42d4b43</code></a>
Fix CI badge in README</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/1caf02892487cead069cb0c4bcdd1e876ca6b590"><code>1caf028</code></a>
Optimize raw HTML post-processor (<a
href="https://redirect.github.com/Python-Markdown/markdown/issues/1510">#1510</a>)</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/f6cfc5cca3dd2c313d2fa547b7c88dac656ae506"><code>f6cfc5c</code></a>
Use PEP 639 license expressions in project metadata</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/9c6e39ace5e928f37854b3bf1010b209a79e2d63"><code>9c6e39a</code></a>
Add Python 3.13 and drop Python 3.8</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/7aae61bea185a4a5c0c48be2619ccc1d294aa381"><code>7aae61b</code></a>
Add special case for closing nested quotes</li>
<li><a
href="https://github.com/Python-Markdown/markdown/commit/0ad5b0abf9560255cf9d24234f7de64c0411ab98"><code>0ad5b0a</code></a>
Abbr should respect AtomicStrings</li>
<li>Additional commits viewable in <a
href="https://github.com/Python-Markdown/markdown/compare/3.7...3.8">compare
view</a></li>
</ul>
</details>
<br />
Updates `types-markdown` from 3.7.0.20250322 to 3.8.0.20250415
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/typeshed-internal/stub_uploader/commits">compare
view</a></li>
</ul>
</details>
<br />
Updates `setuptools-scm[toml]` from 8.2.0 to 8.3.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/setuptools-scm/releases">setuptools-scm[toml]'s
releases</a>.</em></p>
<blockquote>
<h2>v8.3.1</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1131">#1131</a>:
allow self-build without importlib_metadata by <a
href="https://github.com/RonnyPfannschmidt"><code>@RonnyPfannschmidt</code></a>
in <a
href="https://redirect.github.com/pypa/setuptools-scm/pull/1132">pypa/setuptools-scm#1132</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/pypa/setuptools-scm/compare/v8.3.0...v8.3.1">https://github.com/pypa/setuptools-scm/compare/v8.3.0...v8.3.1</a></p>
<h2>v8.3.0</h2>
<!-- raw HTML omitted -->
<h2>What's Changed</h2>
<ul>
<li>use importlib_metadata on python <3.10 by <a
href="https://github.com/RonnyPfannschmidt"><code>@RonnyPfannschmidt</code></a>
in <a
href="https://redirect.github.com/pypa/setuptools-scm/pull/1130">pypa/setuptools-scm#1130</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/radarhere"><code>@radarhere</code></a>
made their first contribution in <a
href="https://redirect.github.com/pypa/setuptools-scm/pull/1128">pypa/setuptools-scm#1128</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/pypa/setuptools-scm/compare/v8.2.1...v8.3.0">https://github.com/pypa/setuptools-scm/compare/v8.2.1...v8.3.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pypa/setuptools-scm/blob/main/CHANGELOG.md">setuptools-scm[toml]'s
changelog</a>.</em></p>
<blockquote>
<h2>v8.3.1</h2>
<h3>Fixed</h3>
<ul>
<li>fixed <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1131">#1131</a>:
allow self-build without importlib_metadata avaliable on python3.9</li>
</ul>
<h2>v8.3.0</h2>
<h3>Fixed</h3>
<ul>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1013">#1013</a>:
use modern importlib_metadata in all cases to dedup distribution objects
that must shadow based on pythonpath priority
starting with python 3.10 this is part of python itself</li>
</ul>
<h2>v8.2.1 (yanked due to legacy python issues)</h2>
<h3>Fixed</h3>
<ul>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1119">#1119</a>:
also include pre/post release details in version_tuple</li>
<li>fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1112">#1112</a>:
unpin setuptools for own dependencies due to ubuntu lts bugs</li>
<li>add python 3.13 to the support matrix</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/b6a20226f0d54442a3e5bd95eec0aefdc21e4a0d"><code>b6a2022</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1132">#1132</a>
from RonnyPfannschmidt/self-build-no-importlib</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/15dca67c876d457631673bcfcdaf0357c85ee8a7"><code>15dca67</code></a>
fix <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1131">#1131</a>:
allow self-build without importlib_metadata</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/cd5c8a0b4a878662226ee0598cdacab795572260"><code>cd5c8a0</code></a>
Merge pull request <a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1130">#1130</a>
from RonnyPfannschmidt/fix-1013-importlib-dedup</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/0a07be85bfe0c08f0ee46bdb3aa09f69dd5b8b66"><code>0a07be8</code></a>
changelog</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/1f7abeab064da3784c1107ca02707a1b1686a283"><code>1f7abea</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1129">#1129</a>)</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/e79a57a8d2302aa1ceb4a237f768d971796ec03f"><code>e79a57a</code></a>
migrate to selectable entrypoints</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/9fcaffa84de3d749c78b6091724ee7f16e5795dd"><code>9fcaffa</code></a>
remove setuptools pin again - needs a breaking release</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/fc2d84179c4e8bc7123ba0b34f692dd029e3d4bd"><code>fc2d841</code></a>
use importlib_metadata on python <3.10</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/1bd767db3246e81acb4300008832b4f68578c4e5"><code>1bd767d</code></a>
Fixed typo (<a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1128">#1128</a>)</li>
<li><a
href="https://github.com/pypa/setuptools-scm/commit/bce5cfc46f9975bfc253f87b49a6dc7b3488520e"><code>bce5cfc</code></a>
[pre-commit.ci] pre-commit autoupdate (<a
href="https://redirect.github.com/pypa/setuptools-scm/issues/1126">#1126</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/pypa/setuptools-scm/compare/v8.2.0...v8.3.1">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>1 file changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
57 | | - | |
| 57 | + | |
58 | 58 | | |
59 | 59 | | |
60 | 60 | | |
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
0 commit comments