Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Molecule failes when use ansible vault. #3492

Closed
linuxpld opened this issue Mar 31, 2022 · 1 comment
Closed

Molecule failes when use ansible vault. #3492

linuxpld opened this issue Mar 31, 2022 · 1 comment
Labels

Comments

@linuxpld
Copy link

Issue Type

  • Bug report

Molecule and Ansible details

ansible --version && molecule --version                                                                                                                                                     
ansible [core 2.12.4]
  config file = None
  configured module search path = ['/Users/user/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
  ansible python module location = /Users/user/Git/python-ansible/lib/python3.9/site-packages/ansible
  ansible collection location = /Users/user/.ansible/collections:/usr/share/ansible/collections
  executable location = /Users/user/Git/python-ansible/bin/ansible
  python version = 3.9.12 (main, Mar 30 2022, 14:33:51) [Clang 13.1.6 (clang-1316.0.21.2)]
  jinja version = 3.0.3
  libyaml = True

molecule 3.5.1 using python 3.9 
    ansible:2.12.4
    delegated:3.5.1 from molecule
    docker:1.1.0 from molecule_docker requiring collections: community.docker>=1.9.1
    vagrant:1.0.0 from molecule_vagrant

Molecule installation method (one of):

  • pip

Ansible installation method (one of):

  • pip

Detail any linters or test runners used:

In molecule.yml file, I have.

lint: |
  set -e
  yamllint .
  ansible-lint .

It behaves the same if no linter

Desired Behavior

According to this closed issue #1286 , I should be able to define variables in the molecule.yml and give the path to the vault file it should work but It seems it doesn't work.

Actual Behaviour

In molecule.yml file, I have

provisioner:
  name: ansible
  config_options:
    defaults:
      vault_password_file: "~/.ansible/vault/vault.pw"
  inventory:
    group_vars:
     password:
        device_key: !vault |
          $ANSIBLE_VAULT;1.1;AES256
          38343932366663626637313537663530343735363335303131306661393037383731646133393866
          6361353536623536653966376361373732353933613934610a353532356530633032636361386165
          62353464366462653039326565393335393236663233623833306266373566363738373035306439
          6633323637313037340a653963636633373433653930666532663636643563343566336262636532
          6637

Molecule fails to execute with the following error:

molecule --debug test                                                                                                                                                                              
Traceback (most recent call last):
  File "/Users/user/Git/python-ansible/bin/molecule", line 8, in <module>
    sys.exit(main())
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/click/core.py", line 1128, in __call__
    return self.main(*args, **kwargs)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/click/core.py", line 1053, in main
    rv = self.invoke(ctx)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/click/core.py", line 1659, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/click/core.py", line 1395, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/click/core.py", line 754, in invoke
    return __callback(*args, **kwargs)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/click/decorators.py", line 26, in new_func
    return f(get_current_context(), *args, **kwargs)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/command/test.py", line 159, in test
    base.execute_cmdline_scenarios(scenario_name, args, command_args, ansible_args)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/command/base.py", line 97, in execute_cmdline_scenarios
    get_configs(args, command_args, ansible_args, glob_str), scenario_name
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/command/base.py", line 184, in get_configs
    configs = [
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/command/base.py", line 185, in <listcomp>
    config.Config(
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/config.py", line 63, in __call__
    obj = type.__call__(cls, *args, **kwargs)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/config.py", line 105, in __init__
    self.config = self._get_config()
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/config.py", line 258, in _get_config
    return self._combine(keep_string=MOLECULE_KEEP_STRING)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/config.py", line 302, in _combine
    self._preflight(s)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/config.py", line 418, in _preflight
    errors, data = schema_v3.pre_validate(data, env, MOLECULE_KEEP_STRING)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/model/schema_v3.py", line 372, in pre_validate
    data = util.safe_load(stream)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/molecule/util.py", line 245, in safe_load
    return yaml.safe_load(string) or {}
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/__init__.py", line 162, in safe_load
    return load(stream, SafeLoader)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/__init__.py", line 114, in load
    return loader.get_single_data()
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 51, in get_single_data
    return self.construct_document(node)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 60, in construct_document
    for dummy in generator:
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 413, in construct_yaml_map
    value = self.construct_mapping(node)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 218, in construct_mapping
    return super().construct_mapping(node, deep=deep)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 143, in construct_mapping
    value = self.construct_object(value_node, deep=deep)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 100, in construct_object
    data = constructor(self, node)
  File "/Users/user/Git/python-ansible/lib/python3.9/site-packages/yaml/constructor.py", line 427, in construct_undefined
    raise ConstructorError(None, None,
yaml.constructor.ConstructorError: could not determine a constructor for the tag '!vault'
  in "<unicode string>", line 34, column 21:
            device_key: !vault |
                        ^
@linuxpld linuxpld added the bug label Mar 31, 2022
@ssbarnea
Copy link
Member

ssbarnea commented Jun 1, 2022

That was never supported by molecule, you cannot use !vault constructs in molecule.yml file, but you can use them in ansible playbooks.

@ssbarnea ssbarnea closed this as not planned Won't fix, can't repro, duplicate, stale Jun 1, 2022
ansibuddy pushed a commit that referenced this issue Dec 29, 2024
Bumps the dependencies group in /.config with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.13` | `0.5.14` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.2` | `3.3.3` |
| [astroid](https://github.com/pylint-dev/astroid) | `3.3.7` | `3.3.8` |
| [charset-normalizer](https://github.com/jawah/charset_normalizer) |
`3.4.0` | `3.4.1` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.9` | `7.6.10`
|
| [griffe](https://github.com/mkdocstrings/griffe) | `1.5.1` | `1.5.4` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) |
`1.12.2` | `1.13.0` |
|
[pymdown-extensions](https://github.com/facelessuser/pymdown-extensions)
| `10.12` | `10.13` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.2.3` | `2.3.0` |

Updates `pydoclint` from 0.5.13 to 0.5.14
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/releases">pydoclint's
releases</a>.</em></p>
<blockquote>
<h2>0.5.14</h2>
<h2>What's Changed</h2>
<ul>
<li>Make pydoclint not crash on syntax erros (including invisible chars)
by <a href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/194">jsh9/pydoclint#194</a></li>
<li>Fix a bug with ast.assign by <a
href="https://github.com/jsh9"><code>@​jsh9</code></a> in <a
href="https://redirect.github.com/jsh9/pydoclint/pull/195">jsh9/pydoclint#195</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14">https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md">pydoclint's
changelog</a>.</em></p>
<blockquote>
<h2>[0.5.14] - 2024-12-26</h2>
<ul>
<li>
<p>Changed</p>
<ul>
<li>Added <code>DOC002</code> (syntax error) to handle cases where there
are syntax errors
in the Python file</li>
<li>Replaced invisible and zero-width characters with empty strings so
that
Python's AST can correctly parse the files</li>
<li>Added end-to-end test (essentially an integration test)</li>
</ul>
</li>
<li>
<p>Fixed</p>
<ul>
<li>A bug in ast.assign</li>
</ul>
</li>
<li>
<p>Full diff</p>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14">https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/jsh9/pydoclint/commit/46c5cb78a36446feed5bee30ab763d0f157a21b3"><code>46c5cb7</code></a>
Fix a bug with ast.assign (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/195">#195</a>)</li>
<li><a
href="https://github.com/jsh9/pydoclint/commit/f141b716d5b764e25edf591c9808d740245b6eda"><code>f141b71</code></a>
Make pydoclint not crash on syntax erros (including invisible chars) (<a
href="https://redirect.github.com/jsh9/pydoclint/issues/194">#194</a>)</li>
<li>See full diff in <a
href="https://github.com/jsh9/pydoclint/compare/0.5.13...0.5.14">compare
view</a></li>
</ul>
</details>
<br />

Updates `pylint` from 3.3.2 to 3.3.3
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pylint-dev/pylint/commit/c28580be76fe1ec55a6cac41833c0bd68070d2f7"><code>c28580b</code></a>
Bump pylint to 3.3.3, update changelog</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/1f9b947768ca8dc15deaf1b70e102ccb27621c08"><code>1f9b947</code></a>
Bump astroid from 3.3.5 to 3.3.8 (<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10125">#10125</a>)
(<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10155">#10155</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/96d13034cfcd021f73572115781f4eaa55257ff3"><code>96d1303</code></a>
Bump actions/cache from 4.1.2 to 4.2.0 (<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10123">#10123</a>)
(<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10154">#10154</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/a7202b145b81e86bed9ddcddf54439cccc73d4f3"><code>a7202b1</code></a>
Fix Python 3.12 generic type syntax (<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10135">#10135</a>)
(<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10146">#10146</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/90cb29df77bf8abde79671dd59e740eeaf063deb"><code>90cb29d</code></a>
[mypy] Use type-setuptools instead of types-pkg-resources (<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10120">#10120</a>)</li>
<li><a
href="https://github.com/pylint-dev/pylint/commit/995570109a3edaa76606558df8758451ec2d85c8"><code>9955701</code></a>
Fix 'use-implicit-booleaness' wrongly emitted for generators. (<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10107">#10107</a>)
(<a
href="https://redirect.github.com/pylint-dev/pylint/issues/10109">#10109</a>)</li>
<li>See full diff in <a
href="https://github.com/pylint-dev/pylint/compare/v3.3.2...v3.3.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `astroid` from 3.3.7 to 3.3.8
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/pylint-dev/astroid/blob/main/ChangeLog">astroid's
changelog</a>.</em></p>
<blockquote>
<h1>What's New in astroid 3.3.8?</h1>
<p>Release date: 2024-12-23</p>
<ul>
<li>
<p>Fix inability to import <code>collections.abc</code> in python
3.13.1. The reported fixes in astroid 3.3.6
and 3.3.7 did not actually fix this issue.</p>
<p>Closes <a
href="https://redirect.github.com/pylint-dev/pylint/issues/10112">pylint-dev/pylint#10112</a></p>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/pylint-dev/astroid/commit/d52799b6e8359d89f20f020d77e98a71d2cde20f"><code>d52799b</code></a>
Bump astroid to 3.3.8, update changelog</li>
<li><a
href="https://github.com/pylint-dev/astroid/commit/68714dfe0bce926f5783212d9a2a5cdaedbc8264"><code>68714df</code></a>
[Backport maintenance/3.3.x] Another attempt at fixing the
<code>collections.abc</code> ...</li>
<li><a
href="https://github.com/pylint-dev/astroid/commit/7cfbad135cbfea51cf8298cd506c0ee03bd42d8a"><code>7cfbad1</code></a>
Skip flaky recursion test on PyPy (<a
href="https://redirect.github.com/pylint-dev/astroid/issues/2661">#2661</a>)
(<a
href="https://redirect.github.com/pylint-dev/astroid/issues/2663">#2663</a>)</li>
<li>See full diff in <a
href="https://github.com/pylint-dev/astroid/compare/v3.3.7...v3.3.8">compare
view</a></li>
</ul>
</details>
<br />

Updates `charset-normalizer` from 3.4.0 to 3.4.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jawah/charset_normalizer/releases">charset-normalizer's
releases</a>.</em></p>
<blockquote>
<h2>Version 3.4.1</h2>
<h2>🚀 We're still raising awareness around HTTP/2, and HTTP/3!</h2>
<p>Did you know that Internet Explorer 11 shipped with an optional
HTTP/2 support back in 2013? also libcurl did ship it in 2014[...]
Using Requests today is the rough equivalent of using EOL Windows 8! We
promptly invite Python developers to look at the first drop-in
replacement for Requests, <a
href="https://github.com/jawah/niquests">namely Niquests</a>. Ship with
native WebSocket, SSE, Happy Eyeballs, DNS over HTTPS, and so on[...]
All of this while remaining compatible with all Requests prior plug-ins
/ add-ons.</p>
<p>It leverages charset-normalizer in a better way! Check it out, you
will gain up to being 3X faster and get a real/respectable support with
it.</p>
<h2><a
href="https://github.com/Ousret/charset_normalizer/compare/3.4.0...3.4.1">3.4.1</a>
(2024-12-24)</h2>
<h3>Changed</h3>
<ul>
<li>Project metadata are now stored using <code>pyproject.toml</code>
instead of <code>setup.cfg</code> using setuptools as the build
backend.</li>
<li>Enforce annotation delayed loading for a simpler and consistent
types in the project.</li>
<li>Optional mypyc compilation upgraded to version 1.14 for Python &gt;=
3.8</li>
</ul>
<h3>Added</h3>
<ul>
<li>pre-commit configuration.</li>
<li>noxfile.</li>
</ul>
<h3>Removed</h3>
<ul>
<li><code>build-requirements.txt</code> as per using
<code>pyproject.toml</code> native build configuration.</li>
<li><code>bin/integration.py</code> and <code>bin/serve.py</code> in
favor of downstream integration test (see noxfile).</li>
<li><code>setup.cfg</code> in favor of <code>pyproject.toml</code>
metadata configuration.</li>
<li>Unused <code>utils.range_scan</code> function.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Converting content to Unicode bytes may insert <code>utf_8</code>
instead of preferred <code>utf-8</code>. (<a
href="https://redirect.github.com/jawah/charset_normalizer/issues/572">#572</a>)</li>
<li>Deprecation warning &quot;'count' is passed as positional
argument&quot; when converting to Unicode bytes on Python 3.13+</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md">charset-normalizer's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/Ousret/charset_normalizer/compare/3.4.0...3.4.1">3.4.1</a>
(2024-12-24)</h2>
<h3>Changed</h3>
<ul>
<li>Project metadata are now stored using <code>pyproject.toml</code>
instead of <code>setup.cfg</code> using setuptools as the build
backend.</li>
<li>Enforce annotation delayed loading for a simpler and consistent
types in the project.</li>
<li>Optional mypyc compilation upgraded to version 1.14 for Python &gt;=
3.8</li>
</ul>
<h3>Added</h3>
<ul>
<li>pre-commit configuration.</li>
<li>noxfile.</li>
</ul>
<h3>Removed</h3>
<ul>
<li><code>build-requirements.txt</code> as per using
<code>pyproject.toml</code> native build configuration.</li>
<li><code>bin/integration.py</code> and <code>bin/serve.py</code> in
favor of downstream integration test (see noxfile).</li>
<li><code>setup.cfg</code> in favor of <code>pyproject.toml</code>
metadata configuration.</li>
<li>Unused <code>utils.range_scan</code> function.</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>Converting content to Unicode bytes may insert <code>utf_8</code>
instead of preferred <code>utf-8</code>. (<a
href="https://redirect.github.com/jawah/charset_normalizer/issues/572">#572</a>)</li>
<li>Deprecation warning &quot;'count' is passed as positional
argument&quot; when converting to Unicode bytes on Python 3.13+</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/ffdf7f5f08beb0ceb92dc0637e97382ba27cecfa"><code>ffdf7f5</code></a>
:wrench: fix long description content-type inferred as rst instead of
md</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/c7197b7b425835dd7abf028f45e6b533060886e3"><code>c7197b7</code></a>
:pencil: fix changelog entries (<a
href="https://redirect.github.com/jawah/charset_normalizer/issues/582">#582</a>)</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/c390e1f231473f2766dd860dc70a1ee1ae5609e6"><code>c390e1f</code></a>
Merge pull request <a
href="https://redirect.github.com/jawah/charset_normalizer/issues/581">#581</a>
from jawah/refresh-part-2</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/f9d6b8cf32c36cbeefcd42f585bf57bfc39cee11"><code>f9d6b8c</code></a>
:lock: add CODEOWNERS</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/7ce1ef1de3148d18eb6a01448c9a15bf5324a9cf"><code>7ce1ef1</code></a>
:wrench: use ubuntu-22.04 for cibuildwheel in continuous deployment
workflow</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/deed20577ba5358bb9624c17e6c8aa6ab26f6e08"><code>deed205</code></a>
:wrench: update LICENSE copyright</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/f11f5710799db58947a6fb61c20dbb75e57e3b5d"><code>f11f571</code></a>
:wrench: include noxfile in sdist</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/1ec7c0632f15324afd769208553bf603be5f917e"><code>1ec7c06</code></a>
:wrench: update changelog</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/14b4649fa24ee0d58e351c106011fb1bace4a9bc"><code>14b4649</code></a>
:bug: output(...) replace declarative mark using non iana compliant
encoding ...</li>
<li><a
href="https://github.com/jawah/charset_normalizer/commit/1b06bc0407dc0f47e9629cbc802977711d0ffc7b"><code>1b06bc0</code></a>
Merge branch 'refresh-part-2' of github.com:jawah/charset_normalizer
into ref...</li>
<li>Additional commits viewable in <a
href="https://github.com/jawah/charset_normalizer/compare/3.4.0...3.4.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `coverage` from 7.6.9 to 7.6.10
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst">coverage's
changelog</a>.</em></p>
<blockquote>
<h2>Version 7.6.10 — 2024-12-26</h2>
<ul>
<li>
<p>Fix: some descriptions of missing branches in HTML and LCOV reports
were
incorrect when multi-line statements were involved (<code>issue
1874</code>_ and <code>issue 1875</code>_). These are now fixed.</p>
</li>
<li>
<p>Fix: Python 3.14 <code>defers evaluation of annotations
&lt;pep649_&gt;</code>_ by moving them
into separate code objects. That code is rarely executed, so coverage.py
would mark them as missing, as reported in <code>issue 1908</code>_. Now
they are
ignored by coverage automatically.</p>
</li>
<li>
<p>Fixed an obscure and mysterious problem on PyPy 3.10 seemingly
involving
mocks, imports, and trace functions: <code>issue 1902</code>_. To be
honest, I don't
understand the problem or the solution, but <code>git bisect</code>
helped find it,
and now it's fixed.</p>
</li>
<li>
<p>Docs: re-wrote the :ref:<code>subprocess</code> page to put
multiprocessing first and to
highlight the correct use of :class:<code>multiprocessing.Pool
&lt;python:multiprocessing.pool.Pool&gt;</code>.</p>
</li>
</ul>
<p>.. _issue 1874: <a
href="https://redirect.github.com/nedbat/coveragepy/issues/1874">nedbat/coveragepy#1874</a>
.. _issue 1875: <a
href="https://redirect.github.com/nedbat/coveragepy/issues/1875">nedbat/coveragepy#1875</a>
.. _issue 1902: <a
href="https://redirect.github.com/nedbat/coveragepy/issues/1902">nedbat/coveragepy#1902</a>
.. _issue 1908: <a
href="https://redirect.github.com/nedbat/coveragepy/issues/1908">nedbat/coveragepy#1908</a>
.. _pep649: <a
href="https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations">https://docs.python.org/3.14/whatsnew/3.14.html#pep-649-deferred-evaluation-of-annotations</a></p>
<p>.. _changes_7-6-9:</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nedbat/coveragepy/commit/f0dcf65f47120d9f74f6777134d3b8e92515ce6f"><code>f0dcf65</code></a>
docs: sample HTML for 7.6.10</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/0f26f35863781bb5736301e5b9c6ce8ea7d5d0f7"><code>0f26f35</code></a>
docs: prep for 7.6.10</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/81c5e4311171f1db78b75a126608763a3964e98d"><code>81c5e43</code></a>
docs: rewrite the subprocess page</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/878410caf5a026773769fe68a43705dcc48ddfc3"><code>878410c</code></a>
chore: make doc_upgrade</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/f1d320d08b0180e58ec4fbbb4b5a93575e7d1b74"><code>f1d320d</code></a>
chore: make upgrade</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/67f1440e0a384000e337ab54bd9cc01804aec201"><code>67f1440</code></a>
debug: this condition is never true. really?</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/c85eaba206e1bf98302e0997e32c079e2c231f4b"><code>c85eaba</code></a>
fix: multi-line statements no longer confuse branch target descriptions.
<a
href="https://redirect.github.com/nedbat/coveragepy/issues/187">#187</a>...</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/73e58fa9dd361b6496f2aa42ede490118ec0429c"><code>73e58fa</code></a>
refactor: clarify the code that fixes with-statement exits</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/e16c9cc8c86edea415695ebd34ccad43b1b84a69"><code>e16c9cc</code></a>
typo: backslask</li>
<li><a
href="https://github.com/nedbat/coveragepy/commit/865fd7fca4ed2e05f91f74c4c8809ca78adae229"><code>865fd7f</code></a>
chore: bump the action-dependencies group with 4 updates (<a
href="https://redirect.github.com/nedbat/coveragepy/issues/1909">#1909</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/nedbat/coveragepy/compare/7.6.9...7.6.10">compare
view</a></li>
</ul>
</details>
<br />

Updates `griffe` from 1.5.1 to 1.5.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/griffe/releases">griffe's
releases</a>.</em></p>
<blockquote>
<h2>1.5.4</h2>
<h2><a
href="https://github.com/mkdocstrings/griffe/releases/tag/1.5.4">1.5.4</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/griffe/compare/1.5.3...1.5.4">Compare
with 1.5.3</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Append trailing comma to length-1 tuples (<a
href="https://github.com/mkdocstrings/griffe/commit/4fccca7dd8d8a3dd31ccc88930ca89f4f26d26b0">4fccca7</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe/issues/343">Issue-343</a></li>
</ul>
<h3>Performance Improvements</h3>
<ul>
<li>Avoid dictionary creation when accessing members of non-classes with
subscript syntax (<a
href="https://github.com/mkdocstrings/griffe/commit/027999881415bea9e890493d3ef20b96b8749c4a">0279998</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2>1.5.3</h2>
<h2><a
href="https://github.com/mkdocstrings/griffe/releases/tag/1.5.3">1.5.3</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/griffe/compare/1.5.2...1.5.3">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Stop caching objects' inherited members, aliases' members and
inherited members, classes' resolved bases (<a
href="https://github.com/mkdocstrings/griffe/commit/e8db3a2d6c5c2a19a1fa3fc924f11c57d8e86a8e">e8db3a2</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe/issues/346">Issue-346</a></li>
</ul>
<h2>1.5.2</h2>
<h2><a
href="https://github.com/mkdocstrings/griffe/releases/tag/1.5.2">1.5.2</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/griffe/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Always resolve aliases when checking APIs (<a
href="https://github.com/mkdocstrings/griffe/commit/0b4f0da1658a3c4877a2519447288c1247694a0d">0b4f0da</a>
by Timothée Mazzucotelli).</li>
<li>Don't use same branch name when creating a worktree (<a
href="https://github.com/mkdocstrings/griffe/commit/6d6c99679976a18233ccda5e5cbfb4eb176312fd">6d6c996</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe/issues/337">Issue-337</a></li>
<li>Fetch attribute annotations from inherited members too when parsing
docstrings (<a
href="https://github.com/mkdocstrings/griffe/commit/88fb6b6abd286b5552887023faa1a22f30cb11e7">88fb6b6</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/175">Issue-mkdocstrings/python#175</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/griffe/blob/main/CHANGELOG.md">griffe's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/mkdocstrings/griffe/releases/tag/1.5.4">1.5.4</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/griffe/compare/1.5.3...1.5.4">Compare
with 1.5.3</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Append trailing comma to length-1 tuples (<a
href="https://github.com/mkdocstrings/griffe/commit/4fccca7dd8d8a3dd31ccc88930ca89f4f26d26b0">4fccca7</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe/issues/343">Issue-343</a></li>
</ul>
<h3>Performance Improvements</h3>
<ul>
<li>Avoid dictionary creation when accessing members of non-classes with
subscript syntax (<a
href="https://github.com/mkdocstrings/griffe/commit/027999881415bea9e890493d3ef20b96b8749c4a">0279998</a>
by Timothée Mazzucotelli).</li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/griffe/releases/tag/1.5.3">1.5.3</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/griffe/compare/1.5.2...1.5.3">Compare
with 1.5.2</a><!-- raw HTML omitted --></p>
<h3>Code Refactoring</h3>
<ul>
<li>Stop caching objects' inherited members, aliases' members and
inherited members, classes' resolved bases (<a
href="https://github.com/mkdocstrings/griffe/commit/e8db3a2d6c5c2a19a1fa3fc924f11c57d8e86a8e">e8db3a2</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe/issues/346">Issue-346</a></li>
</ul>
<h2><a
href="https://github.com/mkdocstrings/griffe/releases/tag/1.5.2">1.5.2</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/griffe/compare/1.5.1...1.5.2">Compare
with 1.5.1</a><!-- raw HTML omitted --></p>
<h3>Bug Fixes</h3>
<ul>
<li>Always resolve aliases when checking APIs (<a
href="https://github.com/mkdocstrings/griffe/commit/0b4f0da1658a3c4877a2519447288c1247694a0d">0b4f0da</a>
by Timothée Mazzucotelli).</li>
<li>Don't use same branch name when creating a worktree (<a
href="https://github.com/mkdocstrings/griffe/commit/6d6c99679976a18233ccda5e5cbfb4eb176312fd">6d6c996</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe/issues/337">Issue-337</a></li>
<li>Fetch attribute annotations from inherited members too when parsing
docstrings (<a
href="https://github.com/mkdocstrings/griffe/commit/88fb6b6abd286b5552887023faa1a22f30cb11e7">88fb6b6</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/175">Issue-mkdocstrings/python#175</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/a2f320fd4138a0a6697376509d625b9ec6e0797b"><code>a2f320f</code></a>
chore: Prepare release 1.5.4</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/4fccca7dd8d8a3dd31ccc88930ca89f4f26d26b0"><code>4fccca7</code></a>
fix: Append trailing comma to length-1 tuples</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/410a3928947191bdcf5fb6667c7f5ff32dcf0489"><code>410a392</code></a>
chore: Allow perf sections in changelog</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/eea0af1034184e901a495f001933a8b0845cf0e4"><code>eea0af1</code></a>
chore: Update comment</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/027999881415bea9e890493d3ef20b96b8749c4a"><code>0279998</code></a>
perf: Avoid dictionary creation when accessing members of non-classes
with su...</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/8dd57493f3c850e351e5bb70151cf62c622ffe04"><code>8dd5749</code></a>
chore: Prepare release 1.5.3</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/e8db3a2d6c5c2a19a1fa3fc924f11c57d8e86a8e"><code>e8db3a2</code></a>
refactor: Stop caching objects' inherited members, aliases' members and
inher...</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/daadc604729230504f91d7e5f83159fecd2b2d26"><code>daadc60</code></a>
chore: Prepare release 1.5.2</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/53b4db1f9e466d028029290094bf154f0c918f3f"><code>53b4db1</code></a>
docs: Add &quot;see also&quot; sections to docstrings</li>
<li><a
href="https://github.com/mkdocstrings/griffe/commit/e2e0983edff41c8b5d3166a7729e19f0f29fa3b5"><code>e2e0983</code></a>
ci: Remove annotation from enum values to satisfy mypy</li>
<li>Additional commits viewable in <a
href="https://github.com/mkdocstrings/griffe/compare/1.5.1...1.5.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `mkdocstrings-python` from 1.12.2 to 1.13.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/releases">mkdocstrings-python's
releases</a>.</em></p>
<blockquote>
<h2>1.13.0</h2>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.13.0">1.13.0</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.12.2...1.13.0">Compare
with 1.12.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Allow using Ruff to format signatures and attribute values (<a
href="https://github.com/mkdocstrings/python/commit/d67215c976938ef1e169f16dd0b6166067ebd7bc">d67215c</a>
by dm). <a
href="https://redirect.github.com/mkdocstrings/python/pull/216">PR-216</a></li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Respect <code>show_signature_annotations</code> option for attribute
signatures in headings (<a
href="https://github.com/mkdocstrings/python/commit/e93d166a14d0944d30ff2f28f21f2262ac396bff">e93d166</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe-pydantic/issues/9">Issue-griffe-pydantic#9</a></li>
<li>Handle <code>__init__</code> overloads when merging into class (<a
href="https://github.com/mkdocstrings/python/commit/af6fab31142204872ace716392dcb314b2cb5d0f">af6fab3</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/212">Issue-212</a></li>
<li>Actually check if a module is public when rendering auto-generated
summary table for modules (<a
href="https://github.com/mkdocstrings/python/commit/3bf55b22ce9a841242c55b2efcedbd8f3a99ccc9">3bf55b2</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/203">Issue-203</a></li>
<li>Never render line numbers for signatures and attribute values (<a
href="https://github.com/mkdocstrings/python/commit/a669f1caefbd54305cc4610bdd57a529aa1208cf">a669f1c</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/192">Issue-192</a></li>
<li>Respect highlight's <code>linenums</code> config for
<code>pycon</code> examples in docstrings (<a
href="https://github.com/mkdocstrings/python/commit/53eb82a21bbcaa959306e909bf0d4ac468f87580">53eb82a</a>
by Timothée Mazzucotelli). [Related-to-<a
href="https://redirect.github.com/mkdocstrings/python/issues/192">#192</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/192">mkdocstrings/python#192</a>)</li>
<li>Fix normalization of extension paths on the annoying operating
system and Python 3.13 (<a
href="https://github.com/mkdocstrings/python/commit/101a6dc428da59a512da617a0a2453f2b6ef4387">101a6dc</a>
by Timothée Mazzucotelli).</li>
<li>Don't merge parent <code>__init__</code> docstring into class
docstring if such inherited method wasn't selected through the
<code>inherited_members</code> configuration option (<a
href="https://github.com/mkdocstrings/python/commit/6c5b5c341940af9425b3de0672ac400794b3f6e5">6c5b5c3</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/189">Issue-189</a></li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Render <code>*</code> and <code>**</code> outside of
cross-references in signatures (<a
href="https://github.com/mkdocstrings/python/commit/c4506f080e0c75cd32d6512c80f5016e82fc12bc">c4506f0</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/pull/216">Needed-for-PR-216</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md">mkdocstrings-python's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/mkdocstrings/python/releases/tag/1.13.0">1.13.0</a>
- 2024-12-26</h2>
<p><!-- raw HTML omitted --><a
href="https://github.com/mkdocstrings/python/compare/1.12.2...1.13.0">Compare
with 1.12.2</a><!-- raw HTML omitted --></p>
<h3>Features</h3>
<ul>
<li>Allow using Ruff to format signatures and attribute values (<a
href="https://github.com/mkdocstrings/python/commit/d67215c976938ef1e169f16dd0b6166067ebd7bc">d67215c</a>
by dm). <a
href="https://redirect.github.com/mkdocstrings/python/pull/216">PR-216</a></li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li>Respect <code>show_signature_annotations</code> option for attribute
signatures in headings (<a
href="https://github.com/mkdocstrings/python/commit/e93d166a14d0944d30ff2f28f21f2262ac396bff">e93d166</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/griffe-pydantic/issues/9">Issue-griffe-pydantic#9</a></li>
<li>Handle <code>__init__</code> overloads when merging into class (<a
href="https://github.com/mkdocstrings/python/commit/af6fab31142204872ace716392dcb314b2cb5d0f">af6fab3</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/212">Issue-212</a></li>
<li>Actually check if a module is public when rendering auto-generated
summary table for modules (<a
href="https://github.com/mkdocstrings/python/commit/3bf55b22ce9a841242c55b2efcedbd8f3a99ccc9">3bf55b2</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/203">Issue-203</a></li>
<li>Never render line numbers for signatures and attribute values (<a
href="https://github.com/mkdocstrings/python/commit/a669f1caefbd54305cc4610bdd57a529aa1208cf">a669f1c</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/192">Issue-192</a></li>
<li>Respect highlight's <code>linenums</code> config for
<code>pycon</code> examples in docstrings (<a
href="https://github.com/mkdocstrings/python/commit/53eb82a21bbcaa959306e909bf0d4ac468f87580">53eb82a</a>
by Timothée Mazzucotelli). [Related-to-<a
href="https://redirect.github.com/mkdocstrings/python/issues/192">#192</a>](<a
href="https://redirect.github.com/mkdocstrings/python/issues/192">mkdocstrings/python#192</a>)</li>
<li>Fix normalization of extension paths on the annoying operating
system and Python 3.13 (<a
href="https://github.com/mkdocstrings/python/commit/101a6dc428da59a512da617a0a2453f2b6ef4387">101a6dc</a>
by Timothée Mazzucotelli).</li>
<li>Don't merge parent <code>__init__</code> docstring into class
docstring if such inherited method wasn't selected through the
<code>inherited_members</code> configuration option (<a
href="https://github.com/mkdocstrings/python/commit/6c5b5c341940af9425b3de0672ac400794b3f6e5">6c5b5c3</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/issues/189">Issue-189</a></li>
</ul>
<h3>Code Refactoring</h3>
<ul>
<li>Render <code>*</code> and <code>**</code> outside of
cross-references in signatures (<a
href="https://github.com/mkdocstrings/python/commit/c4506f080e0c75cd32d6512c80f5016e82fc12bc">c4506f0</a>
by Timothée Mazzucotelli). <a
href="https://redirect.github.com/mkdocstrings/python/pull/216">Needed-for-PR-216</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mkdocstrings/python/commit/941d0e5fa02038bf4c7ef61633aa8288dc59d1da"><code>941d0e5</code></a>
chore: Prepare release 1.13.0</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/c8f1a77dc5150e0dec0f43649c2b04e422028f37"><code>c8f1a77</code></a>
tests: Add templates rendenring tests using inline-snapshot</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/e4936638b9d80ed1bc918e545f65b0b46b9a91d9"><code>e493663</code></a>
tests: Refactor fixtures and helpers</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/0d953e384fac3f4439933daa0bd7022c7baea5a3"><code>0d953e3</code></a>
chore: Template upgrade</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/ec4d2cc392a33f42033fe0ea44dc9eef55e335c3"><code>ec4d2cc</code></a>
chore: Template upgrade</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/d67215c976938ef1e169f16dd0b6166067ebd7bc"><code>d67215c</code></a>
feat: Allow using Ruff to format signatures and attribute values</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/c4506f080e0c75cd32d6512c80f5016e82fc12bc"><code>c4506f0</code></a>
refactor: Render <code>*</code> and <code>**</code> outside of
cross-references in signatures</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/cea49964ac8364e2087f3016baa88168e67dec7f"><code>cea4996</code></a>
docs: Mention mkdocstrings-python-xref</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/e93d166a14d0944d30ff2f28f21f2262ac396bff"><code>e93d166</code></a>
fix: Respect <code>show_signature_annotations</code> option for
attribute signatures in ...</li>
<li><a
href="https://github.com/mkdocstrings/python/commit/af6fab31142204872ace716392dcb314b2cb5d0f"><code>af6fab3</code></a>
fix: Handle <code>__init__</code> overloads when merging into class</li>
<li>Additional commits viewable in <a
href="https://github.com/mkdocstrings/python/compare/1.12.2...1.13.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `pymdown-extensions` from 10.12 to 10.13
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/facelessuser/pymdown-extensions/releases">pymdown-extensions's
releases</a>.</em></p>
<blockquote>
<h2>10.13</h2>
<ul>
<li><strong>NEW</strong>: Snippets: Allow multiple line numbers or line
number blocks separated by <code>,</code>.</li>
<li><strong>NEW</strong>: Snippets: Allow using a negative index for
number start indexes and end indexes. Negative indexes are converted to
positive indexes based on the number of lines in the snippet.</li>
<li><strong>FIX</strong>: Snippets: Properly capture empty newline at
end of file.</li>
<li><strong>FIX</strong>: Snippets: Fix issue where when non sections of
files are included, section labels are not stripped.</li>
<li><strong>FIX</strong>: BetterEm: Fixes for complex cases.</li>
<li><strong>FIX</strong>: Blocks: More consistent handling of empty
newlines in block processor extensions.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/36858c6b850476893252546c79d328f54cb7b87b"><code>36858c6</code></a>
Mention negative indexing in Snippets documentation</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/271950fb0da52b844574a2a3087e895d789e8ab6"><code>271950f</code></a>
More consistent newline handling in blocks extensions (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2553">#2553</a>)</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/9e26f64ee58d072745af553f5376bfa3bfa53e15"><code>9e26f64</code></a>
Allow negative indexes (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2552">#2552</a>)</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/1789d6094eac87e6c68ea7558898f02d5414aafc"><code>1789d60</code></a>
Docs: Update JS deps</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/55ccf795df8ce33e469df9d969e6105eb0fcde54"><code>55ccf79</code></a>
Allow specifying multiple line selection blocks (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2551">#2551</a>)</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/f6102ac0dca1756a1bd052277c44af29887edace"><code>f6102ac</code></a>
Fix some complex cases in BetterEm (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2547">#2547</a>)</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/9df48dbc8426804c5848f6e7ddc2067d12f5e020"><code>9df48db</code></a>
Strip sections from included file (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2541">#2541</a>)</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/377e8ff46dbe2f1ca9d1135b55dfdedd8032d1be"><code>377e8ff</code></a>
Correctly document StripHTML defaults (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2535">#2535</a>)</li>
<li><a
href="https://github.com/facelessuser/pymdown-extensions/commit/68c70f9d12f2fba8c661054053b6773096fd1064"><code>68c70f9</code></a>
Fix broken link to options in block-caption plugin page (<a
href="https://redirect.github.com/facelessuser/pymdown-extensions/issues/2533">#2533</a>)</li>
<li>See full diff in <a
href="https://github.com/facelessuser/pymdown-extensions/compare/10.12...10.13">compare
view</a></li>
</ul>
</details>
<br />

Updates `urllib3` from 2.2.3 to 2.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/urllib3/urllib3/releases">urllib3's
releases</a>.</em></p>
<blockquote>
<h2>2.3.0</h2>
<h2>🚀 urllib3 is fundraising for HTTP/2 support</h2>
<p><a
href="https://sethmlarson.dev/urllib3-is-fundraising-for-http2-support">urllib3
is raising ~$40,000 USD</a> to release HTTP/2 support and ensure
long-term sustainable maintenance of the project after a sharp decline
in financial support for 2023. If your company or organization uses
Python and would benefit from HTTP/2 support in Requests, pip, cloud
SDKs, and thousands of other projects <a
href="https://opencollective.com/urllib3">please consider contributing
financially</a> to ensure HTTP/2 support is developed sustainably and
maintained for the long-haul.</p>
<p>Thank you for your support.</p>
<h2>Features</h2>
<ul>
<li>Added <code>HTTPResponse.shutdown()</code> to stop any ongoing or
future reads for a specific response. It calls
<code>shutdown(SHUT_RD)</code> on the underlying socket. This feature
was <a
href="https://opencollective.com/urllib3/contributions/815307">sponsored
by LaunchDarkly</a>. (<a
href="https://redirect.github.com/urllib3/urllib3/issues/2868">urllib3/urllib3#2868</a>)</li>
<li>Added support for JavaScript Promise Integration on Emscripten. This
enables more efficient WebAssembly requests and streaming, and makes it
possible to use in Node.js if you launch it as node
<code>--experimental-wasm-stack-switching</code>. (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3400">urllib3/urllib3#3400</a>)</li>
<li>Added the <code>proxy_is_tunneling</code> property to
<code>HTTPConnection</code> and <code>HTTPSConnection</code>. (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3285">urllib3/urllib3#3285</a>)</li>
<li>Added pickling support to <code>NewConnectionError</code> and
<code>NameResolutionError</code>. (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3480">urllib3/urllib3#3480</a>)</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Fixed an issue in debug logs where the HTTP version was rendering as
&quot;HTTP/11&quot; instead of &quot;HTTP/1.1&quot;. (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3489">urllib3/urllib3#3489</a>)</li>
</ul>
<h2>Deprecations and Removals</h2>
<ul>
<li>Removed support for Python 3.8. (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3492">urllib3/urllib3#3492</a>)</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/urllib3/urllib3/compare/2.2.3...2.3.0">https://github.com/urllib3/urllib3/compare/2.2.3...2.3.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/urllib3/urllib3/blob/main/CHANGES.rst">urllib3's
changelog</a>.</em></p>
<blockquote>
<h1>2.3.0 (2024-12-22)</h1>
<h2>Features</h2>
<ul>
<li>Added <code>HTTPResponse.shutdown()</code> to stop any ongoing or
future reads for a specific response. It calls
<code>shutdown(SHUT_RD)</code> on the underlying socket. This feature
was <code>sponsored by LaunchDarkly
&lt;https://opencollective.com/urllib3/contributions/815307&gt;</code><strong>.
(<code>[#2868](urllib3/urllib3#2868)
&lt;https://github.com/urllib3/urllib3/issues/2868&gt;</code></strong>)</li>
<li>Added support for JavaScript Promise Integration on Emscripten. This
enables more efficient WebAssembly
requests and streaming, and makes it possible to use in Node.js if you
launch it as <code>node --experimental-wasm-stack-switching</code>.
(<code>[#3400](urllib3/urllib3#3400)
&lt;https://github.com/urllib3/urllib3/issues/3400&gt;</code>__)</li>
<li>Added the <code>proxy_is_tunneling</code> property to
<code>HTTPConnection</code> and <code>HTTPSConnection</code>.
(<code>[#3285](urllib3/urllib3#3285)
&lt;https://github.com/urllib3/urllib3/issues/3285&gt;</code>__)</li>
<li>Added pickling support to <code>NewConnectionError</code> and
<code>NameResolutionError</code>.
(<code>[#3480](urllib3/urllib3#3480)
&lt;https://github.com/urllib3/urllib3/issues/3480&gt;</code>__)</li>
</ul>
<h2>Bugfixes</h2>
<ul>
<li>Fixed an issue in debug logs where the HTTP version was rendering as
&quot;HTTP/11&quot; instead of &quot;HTTP/1.1&quot;.
(<code>[#3489](urllib3/urllib3#3489)
&lt;https://github.com/urllib3/urllib3/issues/3489&gt;</code>__)</li>
</ul>
<h2>Deprecations and Removals</h2>
<ul>
<li>Removed support for Python 3.8.
(<code>[#3492](urllib3/urllib3#3492)
&lt;https://github.com/urllib3/urllib3/issues/3492&gt;</code>__)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/urllib3/urllib3/commit/2f68c5363ef632d73dd4d9300289d7ce5ff275b4"><code>2f68c53</code></a>
Release 2.3.0</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/f7bcf6986fa9c43fc7884b648f66688db593b491"><code>f7bcf69</code></a>
Add HTTPResponse.shutdown() to stop blocking reads (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3527">#3527</a>)</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/e94224931feddf9e12bb25452bf0d0c21da8a7e0"><code>e942249</code></a>
Update .readthedocs.yml addressing a deprecation (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3534">#3534</a>)</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/905549d64a948abd4b6962edecb8dd5569166275"><code>905549d</code></a>
Upgrade Python pre-commit tools (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3529">#3529</a>)</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/716d8340b89f7d8ec549579d14e3c0a7e5f859a5"><code>716d834</code></a>
Fix PyPI publish with Core metadata 2.4 (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3531">#3531</a>)</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/7ab935c6ddd546c7d57b03c0269685c61c8e60c6"><code>7ab935c</code></a>
Address zizmor issues</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/181357ed2aecf9c523f2664c05f176cde9692994"><code>181357e</code></a>
Bump Quart to fix CI (<a
href="https://redirect.github.com/urllib3/urllib3/issues/3524">#3524</a>)</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/0e7e0df0586573d51c78076d4871050783bec7c8"><code>0e7e0df</code></a>
Start testing with Python 3.14</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/d67d09bfd04ecdae1280a563d06b32949befaf71"><code>d67d09b</code></a>
Bump mypy version</li>
<li><a
href="https://github.com/urllib3/urllib3/commit/20032ec38a09680bcfb6d97b4c43b276af43cc64"><code>20032ec</code></a>
Drop unneeded dependency pins and a warning filter</li>
<li>Additional commits viewable in <a
href="https://github.com/urllib3/urllib3/compare/2.2.3...2.3.0">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>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants