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

Bump the dependencies group in /.config with 12 updates #1721

Merged
merged 4 commits into from
Mar 25, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 24, 2024

Bumps the dependencies group in /.config with 12 updates:

Package From To
ansible-lint 24.2.0 24.2.1
ansible-runner 2.3.5 2.3.6
black 24.2.0 24.3.0
coverage 7.4.3 7.4.4
griffe 0.41.3 0.42.1
libtmux 0.16.1 0.35.1
markdown 3.5.2 3.6
mkdocs-material 9.5.13 9.5.15
mkdocstrings-python 1.8.0 1.9.0
pytest-mock 3.12.0 3.14.0
referencing 0.33.0 0.34.0
types-setuptools 69.1.0.20240310 69.2.0.20240317

Updates ansible-lint from 24.2.0 to 24.2.1

Release notes

Sourced from ansible-lint's releases.

v24.2.1

Bugfixes

Commits

Updates ansible-runner from 2.3.5 to 2.3.6

Release notes

Sourced from ansible-runner's releases.

2.3.6

What's Changed

  • Untag instead of force remove image for podman. This makes the worker cleanup subcommand behave similarly with either docker or podman. (#1342)

Full Changelog: ansible/ansible-runner@2.3.5...2.3.6

Commits

Updates black from 24.2.0 to 24.3.0

Release notes

Sourced from black's releases.

24.3.0

Highlights

This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black on untrusted input, or if you habitually put thousands of leading tab characters in your docstrings, you are strongly encouraged to upgrade immediately to fix CVE-2024-21503.

This release also fixes a bug in Black's AST safety check that allowed Black to make incorrect changes to certain f-strings that are valid in Python 3.12 and higher.

Stable style

  • Don't move comments along with delimiters, which could cause crashes (#4248)
  • Strengthen AST safety check to catch more unsafe changes to strings. Previous versions of Black would incorrectly format the contents of certain unusual f-strings containing nested strings with the same quote type. Now, Black will crash on such strings until support for the new f-string syntax is implemented. (#4270)
  • Fix a bug where line-ranges exceeding the last code line would not work as expected (#4273)

Performance

  • Fix catastrophic performance on docstrings that contain large numbers of leading tab characters. This fixes CVE-2024-21503. (#4278)

Documentation

  • Note what happens when --check is used with --quiet (#4236)
Changelog

Sourced from black's changelog.

24.3.0

Highlights

This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black on untrusted input, or if you habitually put thousands of leading tab characters in your docstrings, you are strongly encouraged to upgrade immediately to fix CVE-2024-21503.

This release also fixes a bug in Black's AST safety check that allowed Black to make incorrect changes to certain f-strings that are valid in Python 3.12 and higher.

Stable style

  • Don't move comments along with delimiters, which could cause crashes (#4248)
  • Strengthen AST safety check to catch more unsafe changes to strings. Previous versions of Black would incorrectly format the contents of certain unusual f-strings containing nested strings with the same quote type. Now, Black will crash on such strings until support for the new f-string syntax is implemented. (#4270)
  • Fix a bug where line-ranges exceeding the last code line would not work as expected (#4273)

Performance

  • Fix catastrophic performance on docstrings that contain large numbers of leading tab characters. This fixes CVE-2024-21503. (#4278)

Documentation

  • Note what happens when --check is used with --quiet (#4236)
Commits

Updates coverage from 7.4.3 to 7.4.4

Changelog

Sourced from coverage's changelog.

Version 7.4.4 — 2024-03-14

  • Fix: in some cases, even with [run] relative_files=True, a data file could be created with absolute path names. When combined with other relative data files, it was random whether the absolute file names would be made relative or not. If they weren't, then a file would be listed twice in reports, as detailed in issue 1752_. This is now fixed: absolute file names are always made relative when combining. Thanks to Bruno Rodrigues dos Santos for support.

  • Fix: the last case of a match/case statement had an incorrect message if the branch was missed. It said the pattern never matched, when actually the branch is missed if the last case always matched.

  • Fix: clicking a line number in the HTML report now positions more accurately.

  • Fix: the report:format setting was defined as a boolean, but should be a string. Thanks, Tanaydin Sirin <pull 1754_>_. It is also now documented on the :ref:configuration page <config_report_format>.

.. _issue 1752: nedbat/coveragepy#1752 .. _pull 1754: nedbat/coveragepy#1754

.. _changes_7-4-3:

Commits
  • bc5e2d7 docs: sample HTML for 7.4.4
  • 9b0008b docs: prep for 7.4.4
  • a536161 docs: thanks, Bruno Rodrigues dos Santos
  • e06e4f9 chore: make doc_upgrade
  • f30818e chore: make upgrade
  • 1b19799 fix: ensure absolute paths are relative when combined #1752
  • 1ef020d build: more cheats for convenient URLs
  • 3d57a07 docs: document the report:format setting
  • 8e30221 fix: correct the type of report:format in config.py (#1754)
  • 6289be8 refactor: use dataclasses, no namedtuple
  • Additional commits viewable in compare view

Updates griffe from 0.41.3 to 0.42.1

Release notes

Sourced from griffe's releases.

0.42.1

0.42.1 - 2024-03-19

Compare with 0.42.0

Bug Fixes

  • Don't return class variables as parameters of dataclasses (2729c22 by Hassan Kibirige). PR-253
  • Don't turn items annotated as InitVar into dataclass members (6835ea3 by Hassan Kibirige). PR-252

0.42.0

0.42.0 - 2024-03-11

Compare with 0.41.3

Features

Bug Fixes

  • Don't return properties as parameters of dataclasses (again) (8c48397 by Hassan Kibirige). Issue-232, PR-248
  • Fix getting return type from parent property when parsing Sphinx docstrings (f314957 by Timothée Mazzucotelli). Issue-125

Code Refactoring

  • Warn (debug) when a submodule shadows a member with the same name (cdc9e1c by Timothée Mazzucotelli). Issue-124
Changelog

Sourced from griffe's changelog.

0.42.1 - 2024-03-19

Compare with 0.42.0

Bug Fixes

  • Don't return class variables as parameters of dataclasses (2729c22 by Hassan Kibirige). PR-253
  • Don't turn items annotated as InitVar into dataclass members (6835ea3 by Hassan Kibirige). PR-252

0.42.0 - 2024-03-11

Compare with 0.41.3

Features

Bug Fixes

  • Don't return properties as parameters of dataclasses (again) (8c48397 by Hassan Kibirige). Issue-232, PR-248
  • Fix getting return type from parent property when parsing Sphinx docstrings (f314957 by Timothée Mazzucotelli). Issue-125

Code Refactoring

  • Warn (debug) when a submodule shadows a member with the same name (cdc9e1c by Timothée Mazzucotelli). Issue-124
Commits
  • 01da648 chore: Prepare release 0.42.1
  • 4d31eff style: Format
  • c29585a chore: Switch to Copier UV template
  • e1216aa chore: Template upgrade
  • 2729c22 fix: Don't return class variables as parameters of dataclasses
  • 6835ea3 fix: Don't turn items annotated as InitVar into dataclass members
  • c88b484 chore: Prepare release 0.42.0
  • a265a9d docs: Rework sections in docstrings docs
  • cdc9e1c refactor: Warn (debug) when a submodule shadows a member with the same name
  • 781437e docs: Document best practices
  • Additional commits viewable in compare view

Updates libtmux from 0.16.1 to 0.35.1

Release notes

Sourced from libtmux's releases.

v0.35.0 - Simplify targets

Breaking changes

Full Changelog: tmux-python/libtmux@v0.34.0...v0.35.0

v0.34.0 - Command overhaul

Breaking

Command target change (#535)

Commands: All cmd() methods using custom or overridden targets must use the keyword argument target. This avoids entanglement with inner shell values that include -t for other purposes. These methods include:

Full Changelog: tmux-python/libtmux@v0.33.0...v0.34.0

v0.33.0 - Split and new window improvements

Breaking changes

Improved new sessions (#532)

  • Session.new_window():

  • Added {meth}Window.new_window() shorthand to create window based on that window's position.

Improved window splitting (#532)

... (truncated)

Changelog

Sourced from libtmux's changelog.

libtmux 0.35.1 (2024-03-23)

Bug fix

  • {attr}Server.attached_sessions fix for when multiple clients attached, thank you @​patrislav1 (#537)

    • #538 fix to QueryList.

libtmux 0.35.0 (2024-03-17)

Breaking changes

  • Eliminate redundant targets / window_index's across codebase (#536).

libtmux 0.34.0 (2024-03-17)

Breaking changes

Command target change (#535)

Commands: All cmd() methods using custom or overridden targets must use the keyword argument target. This avoids entanglement with inner shell values that include -t for other purposes. These methods include:

  • {meth}Server.cmd()
  • {meth}Session.cmd()
  • {meth}Window.cmd()
  • {meth}Pane.cmd()

libtmux 0.33.0 (2024-03-17)

Breaking changes

Improved new sessions (#532)

  • Session.new_window():

    • Learned direction, via {class}~libtmux.constants.WindowDirection).
    • PEP 3102 keyword-only arguments after window name (#534).
  • Added {meth}Window.new_window() shorthand to create window based on that window's position.

Improved window splitting (#532)

  • Window.split_window() to {meth}Window.split()

    • Deprecate Window.split_window()

... (truncated)

Commits
  • 3eb0599 Tag v0.35.1 (Server.attached_sessions fix)
  • 99a46c8 chore(Server.attached_sessions): Use .filter() (#538)
  • c5f1665 docs(CHANGES): Note Server.attached_sessions improvement
  • 3e1a9dc chore(Server.attached_sessions): Use .filter()
  • 45cce80 fix: server.attached_sessions
  • 8b9ce04 build(deps): Bump packages
  • 9a1c08b docs(conf[api]): Settings API recommendation from furo API documentation tips
  • c4f6426 Tag v0.35.0 (#536, simplify targets)
  • c1d7e8a refactor: Remove reundant targets (#536)
  • 22b51e8 docs(CHANGES): Note target simplification
  • Additional commits viewable in compare view

Updates markdown from 3.5.2 to 3.6

Release notes

Sourced from markdown's releases.

Release 3.6

Changed

Refactor TOC Sanitation

  • All postprocessors are now run on heading content.
  • Footnote references are now stripped from heading content. Fixes #660.
  • A more robust striptags is provided to convert headings to plain text. Unlike, the markupsafe implementation, HTML entities are not unescaped.
  • The plain text name, rich html, and unescaped raw data-toc-label are saved to toc_tokens, allowing users to access the full rich text content of the headings directly from toc_tokens.
  • The value of data-toc-label is sanitized separate from heading content before being written to name. This fixes a bug which allowed markup through in certain circumstances. To access the raw unsanitized data, retrieve the value from token['data-toc-label'] directly.
  • An html.unescape call is made just prior to calling slugify so that slugify only operates on Unicode characters. Note that html.unescape is not run on name, html, or data-toc-label.
  • The functions get_name and stashedHTML2text defined in the toc extension are both deprecated. Instead, third party extensions should use some combination of the new functions run_postprocessors, render_inner_html and striptags.

Fixed

  • Include scripts/*.py in the generated source tarballs (#1430).
  • Ensure lines after heading in loose list are properly detabbed (#1443).
  • Give smarty tree processor higher priority than toc (#1440).
  • Permit carets (^) and square brackets (]) but explicitly exclude backslashes (\) from abbreviations (#1444).
  • In attribute lists (attr_list, fenced_code), quoted attribute values are now allowed to contain curly braces (}) (#1414).
Changelog

Sourced from markdown's changelog.

[3.6] -- 2024-03-14

Changed

Refactor TOC Sanitation

  • All postprocessors are now run on heading content.
  • Footnote references are now stripped from heading content. Fixes #660.
  • A more robust striptags is provided to convert headings to plain text. Unlike, the markupsafe implementation, HTML entities are not unescaped.
  • The plain text name, rich html, and unescaped raw data-toc-label are saved to toc_tokens, allowing users to access the full rich text content of the headings directly from toc_tokens.
  • The value of data-toc-label is sanitized separate from heading content before being written to name. This fixes a bug which allowed markup through in certain circumstances. To access the raw unsanitized data, retrieve the value from token['data-toc-label'] directly.
  • An html.unescape call is made just prior to calling slugify so that slugify only operates on Unicode characters. Note that html.unescape is not run on name, html, or data-toc-label.
  • The functions get_name and stashedHTML2text defined in the toc extension are both deprecated. Instead, third party extensions should use some combination of the new functions run_postprocessors, render_inner_html and striptags.

Fixed

  • Include scripts/*.py in the generated source tarballs (#1430).
  • Ensure lines after heading in loose list are properly detabbed (#1443).
  • Give smarty tree processor higher priority than toc (#1440).
  • Permit carets (^) and square brackets (]) but explicitly exclude backslashes (\) from abbreviations (#1444).
  • In attribute lists (attr_list, fenced_code), quoted attribute values are now allowed to contain curly braces (}) (#1414).
Commits
  • e524b8f Bump version to 3.6
  • 3d8afc6 Allow attr_list quoted values to contain curly braces
  • 9edba85 Refactor abbr escaping
  • e4ab4a6 Refactor TOC sanitation
  • a18765c Explicitly omit carot and backslash from abbr
  • 421f1e8 Give smarty tree processor higher priority than toc
  • c334a3e Ensure lines after heading in loose list are properly detabbed
  • ea92856 Update the license template so GitHub can detect it
  • a2effd6 Disable mkdocstrings show_symbol_type_toc option to work around searching iss...
  • 91f9a12 Restore Attribute symbol type in mkdocstrings template
  • Additional commits viewable in compare view

Updates mkdocs-material from 9.5.13 to 9.5.15

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.5.15

  • Reverted fix for transparent iframes (9.5.14)
  • Fixed #6929: Interference of social plugin and auto dark mode
  • Fixed #6938: Giscus shows dark background in light mode (9.5.14 regression)

mkdocs-material-9.5.14

  • Added support for hiding versions from selector when using mike
  • Added init system to improve signal handling in Docker image
  • Fixed edge cases in exclusion logic of info plugin
  • Fixed inability to reset pipeline in search plugin
  • Fixed syntax error in Finnish translations
  • Fixed #6917: UTF-8 encoding problems in blog plugin on Windows
  • Fixed #6889: Transparent iframes get background color

Thanks to @​kamilkrzyskow, @​yubiuser and @​todeveni for their contributions

Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.5.15+insiders-4.53.3 (2024-03-23)

  • Added support for font variants in social plugin
  • Improved resilience of font resolution in social plugin
  • Fixed tag listing sometimes not being auto-populated
  • Fixed tag listing scope not being correctly resolved
  • Fixed #6941: Meta plugin adding duplicate entries
  • Fixed #6928: Social plugin crashes for some fonts

mkdocs-material-9.5.15 (2024-03-23)

  • Reverted fix for transparent iframes (9.5.14)
  • Fixed #6929: Interference of social plugin and auto dark mode
  • Fixed #6938: Giscus shows dark background in light mode (9.5.14 regression)

mkdocs-material-9.5.14+insiders-4.53.2 (2024-03-18)

  • Fixed abort on first non-matching configuration in preview extension
  • Fixed #6914: Meta files take precedence over front matter

mkdocs-material-9.5.14 (2024-03-18)

  • Added support for hiding versions from selector when using mike
  • Added init system to improve signal handling in Docker image
  • Fixed edge cases in exclusion logic of info plugin
  • Fixed inability to reset pipeline in search plugin
  • Fixed syntax error in Finnish translations
  • Fixed #6917: UTF-8 encoding problems in blog plugin on Windows
  • Fixed #6889: Transparent iframes get background color

mkdocs-material-9.5.13+insiders-4.53.1 (2024-03-06)

  • Fixed #6877: Projects plugin computes incorrect path to assets
  • Fixed #6869: Blog plugin should emit warning on invalid related link

mkdocs-material-9.5.13 (2024-03-06)

  • Updated Slovak translations
  • Improved info plugin interop with projects plugin
  • Improved info plugin inclusion/exclusion logic
  • Fixed info plugin not gathering files recursively
  • Fixed #6750: Ensure info plugin packs up all necessary files

mkdocs-material-9.5.12 (2024-02-29)

  • Fixed #6846: Some meta tags removed on instant navigation (9.4.2 regression)
  • Fixed #6823: KaTex not rendering on instant navigation (9.5.5 regression)
  • Fixed #6821: Privacy plugin doesn't handle URLs with encoded characters

mkdocs-material-9.5.11+insiders-4.53.0 (2024-02-24)

... (truncated)

Commits

Updates mkdocstrings-python from 1.8.0 to 1.9.0

Release notes

Sourced from mkdocstrings-python's releases.

1.9.0

1.9.0 - 2024-03-13

Compare with 1.8.0

Dependencies

  • Add upper bound on Python-Markdown 3.6 to temporarily prevent breaking changes (cd93ee3 by Timothée Mazzucotelli).

Features

Code Refactoring

  • Mark all Jinja blocks as scoped (548bdad by Timothée Mazzucotelli).
Changelog

Sourced from mkdocstrings-python's changelog.

1.9.0 - 2024-03-13

Compare with 1.8.0

Dependencies

  • Add upper bound on Python-Markdown 3.6 to temporarily prevent breaking changes (cd93ee3 by Timothée Mazzucotelli).

Features

Code Refactoring

  • Mark all Jinja blocks as scoped (548bdad by Timothée Mazzucotelli).
Commits
  • e639c8b chore: Prepare release 1.9.0
  • fad391f Merge branch 'main' of github.com:mkdocstrings/python
  • ddf32c6 docs: Enable inline syntax highlight
  • cd93ee3 deps: Add upper bound on Python-Markdown 3.6 to temporarily prevent breaking ...
  • 2062325 chore: Template upgrade
  • 0dd0b79 chore: Use mkdocstrings' handler-template
  • 6364fbc chore: Template upgrade
  • eaf9b82 feat: Add show_labels option to show/hide labels
  • 8e86778 docs: Add default value for find_stubs_package docs
  • 0c6aa32 feat: Add option to search for stubs packages
  • Additional commits viewable in compare view

Updates pytest-mock from 3.12.0 to 3.14.0

Release notes

Sourced from pytest-mock's releases.

v3.14.0

  • #415: MockType and AsyncMockType can be imported from pytest_mock for type annotation purposes.
  • #420: Fixed a regression which would cause mocker.patch.object to not being properly cleared between tests.

v3.13.0

  • #417: spy now has spy_return_list, which is a list containing all the values returned by the spied function.
  • pytest-mock now requires pytest>=6.2.5.
  • #410: pytest-mock's setup.py file is removed. If you relied on this file, e.g. to install pytest using setup.py install, please see Why you shouldn't invoke setup.py directly for alternatives.
Changelog

Sourced from pytest-mock's changelog.

3.14.0 (2024-03-21)

  • [#415](https://github.com/pytest-dev/pytest-mock/issues/415) <https://github.com/pytest-dev/pytest-mock/pull/415>_: MockType and AsyncMockType can be imported from pytest_mock for type annotation purposes.

  • [#420](https://github.com/pytest-dev/pytest-mock/issues/420) <https://github.com/pytest-dev/pytest-mock/issues/420>_: Fixed a regression which would cause mocker.patch.object to not being properly cleared between tests.

3.13.0 (2024-03-21)

  • [#417](https://github.com/pytest-dev/pytest-mock/issues/417) <https://github.com/pytest-dev/pytest-mock/pull/417>_: spy now has spy_return_list, which is a list containing all the values returned by the spied function.
  • pytest-mock now requires pytest>=6.2.5.
  • [#410](https://github.com/pytest-dev/pytest-mock/issues/410) <https://github.com/pytest-dev/pytest-mock/pull/410>: pytest-mock's setup.py file is removed. If you relied on this file, e.g. to install pytest using setup.py install, please see Why you shouldn't invoke setup.py directly <https://blog.ganssle.io/articles/2021/10/setup-py-deprecated.html#summary> for alternatives.
Commits
  • 8733134 Update CHANGELOG for 3.14.0
  • 5257e3c Refactor MockCache to have a narrow interface
  • 4faf92a Fix regression with mocker.patch not being undone correctly
  • 6bd8712 Drop pre-Python 3.8 support code
  • 366966b Export MockType/AsyncMockType for type annotations (#415)
  • 852116b Merge pull request #418 from pytest-dev/release-3.13.0
  • ef9461b Add instructions on how to start deploy from command-line
  • 5b9d285 Release 3.13.0
  • 6d5d6dc Implement spy_return_list (#417)
  • dc28a0e [pre-commit.ci] pre-commit autoupdate (#416)
  • Additional commits viewable in compare view

Updates referencing from 0.33.0 to 0.34.0

Release notes

Sourced from referencing's releases.

v0.34.0

What's Changed

New Contributors

Full Changelog: python-jsonschema/referencing@v0.33.0...v0.34.0

Changelog

Sourced from referencing's changelog.

v0.34.0

  • Also look inside definitions keywords even on newer dialects. The specification recommends doing so regardless of the rename to $defs.
Commits
  • 499e67e Update pre-commit hooks.
  • 022d43a Disallow pyright==1.1.354 until microsoft/pyright#7489 is fixed.
  • 685e34c Look for subschemas in definitions, even in newer dialects.
  • 55a1ccf Mark the normalization tests xfailed so we can update the suite.
  • 320e852 Merge pull request #135 from python-jsonschema/dependabot/github_actions/soft...
  • dbb9a6f Merge pull request #136 from python-jsonschema/pre-commit-ci-update-config
  • 23e2a7e [pre-commit.ci] pre-commit autoupdate
  • 51858ea Bump softprops/action-gh-release from 1 to 2
  • 542e4d3 Minor workflow tweak, enabling caching and saving a double build.
  • ce1fb3f Merge pull request #132 from python-jsonschema/dependabot/github_actions/wntr...
  • Additional commits viewable in compare view

Updates types-setuptools from 69.1.0.20240310 to 69.2.0.20240317

Commits

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 commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this...

Description has been truncated

Bumps the dependencies group in /.config with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [ansible-lint](https://github.com/ansible/ansible-lint) | `24.2.0` | `24.2.1` |
| [ansible-runner](https://github.com/ansible/ansible-runner) | `2.3.5` | `2.3.6` |
| [black](https://github.com/psf/black) | `24.2.0` | `24.3.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.4.3` | `7.4.4` |
| [griffe](https://github.com/mkdocstrings/griffe) | `0.41.3` | `0.42.1` |
| [libtmux](https://github.com/tmux-python/libtmux) | `0.16.1` | `0.35.1` |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.5.2` | `3.6` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.13` | `9.5.15` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.8.0` | `1.9.0` |
| [pytest-mock](https://github.com/pytest-dev/pytest-mock) | `3.12.0` | `3.14.0` |
| [referencing](https://github.com/python-jsonschema/referencing) | `0.33.0` | `0.34.0` |
| [types-setuptools](https://github.com/python/typeshed) | `69.1.0.20240310` | `69.2.0.20240317` |


Updates `ansible-lint` from 24.2.0 to 24.2.1
- [Release notes](https://github.com/ansible/ansible-lint/releases)
- [Commits](ansible/ansible-lint@v24.2.0...v24.2.1)

Updates `ansible-runner` from 2.3.5 to 2.3.6
- [Release notes](https://github.com/ansible/ansible-runner/releases)
- [Commits](ansible/ansible-runner@2.3.5...2.3.6)

Updates `black` from 24.2.0 to 24.3.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.2.0...24.3.0)

Updates `coverage` from 7.4.3 to 7.4.4
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.4.3...7.4.4)

Updates `griffe` from 0.41.3 to 0.42.1
- [Release notes](https://github.com/mkdocstrings/griffe/releases)
- [Changelog](https://github.com/mkdocstrings/griffe/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/griffe@0.41.3...0.42.1)

Updates `libtmux` from 0.16.1 to 0.35.1
- [Release notes](https://github.com/tmux-python/libtmux/releases)
- [Changelog](https://github.com/tmux-python/libtmux/blob/master/CHANGES)
- [Commits](tmux-python/libtmux@v0.16.1...v0.35.1)

Updates `markdown` from 3.5.2 to 3.6
- [Release notes](https://github.com/Python-Markdown/markdown/releases)
- [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md)
- [Commits](Python-Markdown/markdown@3.5.2...3.6)

Updates `mkdocs-material` from 9.5.13 to 9.5.15
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.5.13...9.5.15)

Updates `mkdocstrings-python` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/mkdocstrings/python/releases)
- [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python@1.8.0...1.9.0)

Updates `pytest-mock` from 3.12.0 to 3.14.0
- [Release notes](https://github.com/pytest-dev/pytest-mock/releases)
- [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-mock@v3.12.0...v3.14.0)

Updates `referencing` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/python-jsonschema/referencing/releases)
- [Changelog](https://github.com/python-jsonschema/referencing/blob/main/docs/changes.rst)
- [Commits](python-jsonschema/referencing@v0.33.0...v0.34.0)

Updates `types-setuptools` from 69.1.0.20240310 to 69.2.0.20240317
- [Commits](https://github.com/python/typeshed/commits)

---
updated-dependencies:
- dependency-name: ansible-lint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansible-runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: coverage
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: griffe
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: libtmux
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocstrings-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pytest-mock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: referencing
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: types-setuptools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
ansibuddy
ansibuddy previously approved these changes Mar 24, 2024
@ssbarnea ssbarnea self-assigned this Mar 25, 2024
@ssbarnea
Copy link
Member

Currently affected by mkdocstrings/python#143

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Archived in project
Development

Successfully merging this pull request may close these issues.

None yet

2 participants