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 37 updates #102

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2024

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

Package From To
ansible-compat 4.1.10 4.1.11
ansible-creator 0.0.1a4 0.1.0
ansible-lint 6.22.1 6.22.2
ansible-navigator 3.5.0 3.6.0
attrs 23.1.0 23.2.0
black 23.12.0 23.12.1
distro 1.8.0 1.9.0
frozenlist 1.4.0 1.4.1
jinja2 3.1.2 3.1.3
jsonschema 4.20.0 4.21.0
jsonschema-specifications 2023.11.2 2023.12.1
molecule 6.0.2 6.0.3
pytest 7.4.3 7.4.4
pytest-ansible 4.1.1 24.1.2
referencing 0.32.0 0.32.1
rpds-py 0.13.2 0.17.1
tox 4.11.4 4.12.1
tox-ansible 2.0.14 2.1.0
types-setuptools 69.0.0.0 69.0.0.20240115
tzdata 2023.3 2023.4
beautifulsoup4 4.12.2 4.12.3
coverage 7.3.2 7.4.0
griffe 0.38.1 0.39.1
markdown 3.5.1 3.5.2
markdown-exec 1.7.0 1.8.0
mkdocs-ansible 0.2.0 0.2.1
mkdocs-material 9.5.2 9.5.4
mkdocs-minify-plugin 0.7.1 0.7.2
mkdocs-monorepo-plugin 1.0.5 1.1.0
mkdocstrings-python 1.7.5 1.8.0
mypy 1.7.1 1.8.0
pillow 10.1.0 10.2.0
pipdeptree 2.13.1 2.13.2
pydoclint 0.3.8 0.3.9
pymdown-extensions 10.5 10.7
regex 2023.10.3 2023.12.25
ruff 0.1.7 0.1.13

Updates ansible-compat from 4.1.10 to 4.1.11

Release notes

Sourced from ansible-compat's releases.

v4.1.11

Bugfixes

Commits

Updates ansible-creator from 0.0.1a4 to 0.1.0

Release notes

Sourced from ansible-creator's releases.

v0.1.0

Minor Changes

Bugfixes

Commits

Updates ansible-lint from 6.22.1 to 6.22.2

Release notes

Sourced from ansible-lint's releases.

v6.22.2

Bugfixes

Commits

Updates ansible-navigator from 3.5.0 to 3.6.0

Release notes

Sourced from ansible-navigator's releases.

v3.6.0

Minor Changes

Bugfixes

Commits

Updates attrs from 23.1.0 to 23.2.0

Commits

Updates black from 23.12.0 to 23.12.1

Release notes

Sourced from black's releases.

23.12.1

Fixed a bug that included dependencies from the d extra by default (#4108)

Changelog

Sourced from black's changelog.

23.12.1

Packaging

  • Fixed a bug that included dependencies from the d extra by default (#4108)
Commits

Updates distro from 1.8.0 to 1.9.0

Release notes

Sourced from distro's releases.

v1.9.0

ENHANCEMENTS:

  • Refactor distro.info() method to return an InfoDict [#360]
  • Ignore the file /etc/board-release [#353]
  • Ignore the file /etc/ec2_version [#359]

RELEASE:

  • Run Python 3.6 on Ubuntu 20.04 for CI and bump isort [#355]

TESTS:

  • Test on modern versions of CPython and PyPy and macOS [#362]
  • Add support for ALT Linux Server 10.1 distribution [#354]
  • Add Debian Testing to the tests [#356]
  • Update ArchLinux resource for tests [#352]
Changelog

Sourced from distro's changelog.

1.9.0 (2023.12.19)

ENHANCEMENTS:

  • Refactor distro.info() method to return an InfoDict [#360]
  • Ignore the file '/etc/board-release' [#353]
  • Ignore the file '/etc/ec2_version' [#359]

RELEASE:

  • Run Python 3.6 on Ubuntu 20.04 for CI and bump isort [#355]

TESTS:

  • Test on modern versions of CPython and PyPy and macOS [#362]
  • Add support for ALT Linux Server 10.1 distribution [#354]
  • Add Debian Testing to the tests [#356]
  • Update archlinux resource for tests [#352]
Commits
  • 8d88a2d Optimize some repo metastuff and prepare v1.9.0 (#364)
  • 95ffcb6 Actions(deps): Bump actions/setup-python from 4 to 5 (#363)
  • 6a487e9 Test on modern versions of CPython and PyPy and macOS (#362)
  • 6ce9eb6 Actions(deps): Bump actions/checkout from 3 to 4 (#361)
  • 2804e55 Refactor distro.info() method to return an InfoDict (#360)
  • c443f12 Ignore the file '/etc/ec2_version'
  • 59e6e07 Add Debian Testing to the tests (#356)
  • 5fc214c Ignore the file '/etc/board-release' (#353)
  • 40ecdd9 Add support for ALT Linux Server 10.1 distribution (#354)
  • 16ae9cb Run Python 3.6 on Ubuntu 20.04 for CI and bump isort (#355)
  • Additional commits viewable in compare view

Updates frozenlist from 1.4.0 to 1.4.1

Release notes

Sourced from frozenlist's releases.

1.4.1

Packaging updates and notes for downstreams

  • Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.

    Related issues and pull requests on GitHub: #553.

  • Replaced the packaging is replaced from an old-fashioned :file:setup.py to an in-tree :pep:517 build backend -- by :user:webknjaz.

    Whenever the end-users or downstream packagers need to build frozenlist from source (a Git checkout or an sdist), they may pass a config_settings flag pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    .. code-block:: console

    $ python3 -m pip install . --config-settings=pure-python=
    

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    .. code-block:: console

    $ python3 -m build --config-setting=pure-python=
    

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it.

    Related issues and pull requests on GitHub: #560.

Contributor-facing changes

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing :pep:517 config setting -- :user:webknjaz.

    This can be used in CI and development environment to measure coverage on Cython modules, but is not normally useful to the end-users or

... (truncated)

Changelog

Sourced from frozenlist's changelog.

1.4.1 (2023-12-15)

Packaging updates and notes for downstreams

  • Declared Python 3.12 and PyPy 3.8-3.10 supported officially in the distribution package metadata.

    Related issues and pull requests on GitHub: :issue:553.

  • Replaced the packaging is replaced from an old-fashioned :file:setup.py to an in-tree :pep:517 build backend -- by :user:webknjaz.

    Whenever the end-users or downstream packagers need to build frozenlist from source (a Git checkout or an sdist), they may pass a config_settings flag pure-python. If this flag is not set, a C-extension will be built and included into the distribution.

    Here is how this can be done with pip:

    .. code-block:: console

    $ python3 -m pip install . --config-settings=pure-python=
    

    This will also work with -e | --editable.

    The same can be achieved via pypa/build:

    .. code-block:: console

    $ python3 -m build --config-setting=pure-python=
    

    Adding -w | --wheel can force pypa/build produce a wheel from source directly, as opposed to building an sdist and then building from it.

    Related issues and pull requests on GitHub: :issue:560.

Contributor-facing changes

  • It is now possible to request line tracing in Cython builds using the with-cython-tracing :pep:517 config setting -- :user:webknjaz.

... (truncated)

Commits
  • 457b28e ⇪📦 Bump to v1.4.1
  • 4998859 📝 Mark "dev" as a known word
  • 3d740da ⇪📦 Bump to v1.4.1.dev0
  • d92751c 🧪 Cache pre-commit.com virtualenvs @ CI
  • 7394415 🧪🐛 List explicit MyPy coverage.xml paths @ CI
  • a26ba84 🧪 Update codecov action input to plural files
  • e12ecf6 🧪 Upload MyPy coverage to Codecov
  • 59b9a74 🐛🧪 Fix the operator in test_lt
  • 01720b2 🧪 Keep building macosx_x86_64 wheels for tests
  • d9f5e0c 🧪💅 Add a reusable project name var to CI/CD
  • Additional commits viewable in compare view

Updates jinja2 from 3.1.2 to 3.1.3

Release notes

Sourced from jinja2's releases.

3.1.3

This is a fix release for the 3.1.x feature branch.

Changelog

Sourced from jinja2's changelog.

Version 3.1.3

Released 2024-01-10

  • Fix compiler error when checking if required blocks in parent templates are empty. :pr:1858
  • xmlattr filter does not allow keys with spaces. GHSA-h5c8-rqwp-cp95
  • Make error messages stemming from invalid nesting of {% trans %} blocks more helpful. :pr:1918
Commits

Updates jsonschema from 4.20.0 to 4.21.0

Release notes

Sourced from jsonschema's releases.

v4.21.0

What's Changed

  • Fix the behavior of enum in the presence of 0 or 1 to properly consider True and False unequal (#1208).
  • Special case the error message for {min,max}{Items,Length,Properties} when they're checking for emptiness rather than true length.

New Contributors

Full Changelog: python-jsonschema/jsonschema@v4.20.0...v4.21.0

Changelog

Sourced from jsonschema's changelog.

v4.21.0

  • Fix the behavior of enum in the presence of 0 or 1 to properly consider True and False unequal (#1208).
  • Special case the error message for {min,max}{Items,Length,Properties} when they're checking for emptiness rather than true length.
Commits
  • 31dec3d Update the CHANGELOG.
  • 8875c2e Also improve min{Length,Properties}'s error message.
  • 74dfd48 Squashed 'json/' changes from 217bf81b..544f7c3d
  • 3e46f22 Merge pull request #1208 from otto-ifak/fix_enum
  • e45be0b Update docs requirements.
  • 6b4441e New ruff fixed some bugs.
  • c7a37f2 Merge pull request #1209 from python-jsonschema/pre-commit-ci-update-config
  • 1b72180 [pre-commit.ci] pre-commit autoupdate
  • 9a3d4a7 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • a9bf13c Use equal for enum validator
  • Additional commits viewable in compare view

Updates jsonschema-specifications from 2023.11.2 to 2023.12.1

Release notes

Sourced from jsonschema-specifications's releases.

v2023.12.1

Full Changelog: python-jsonschema/jsonschema-specifications@v2023.11.2...v2023.12.1

Commits
  • 544e0ff Ignore dotfiles when collecting schemas.
  • 13fd330 Enable the rest of the rulesets we care about.
  • 107d8e3 Update pre-commit hooks.
  • 49a7a22 Merge pull request #34 from python-jsonschema/dependabot/github_actions/actio...
  • 10455c3 Bump actions/setup-python from 4 to 5
  • 9b0e191 Merge pull request #33 from python-jsonschema/pre-commit-ci-update-config
  • c8c308d [pre-commit.ci] pre-commit autoupdate
  • 0977e94 Update pre-commit hooks.
  • See full diff in compare view

Updates molecule from 6.0.2 to 6.0.3

Release notes

Sourced from molecule's releases.

v6.0.3

Bugfixes

Commits

Updates pytest from 7.4.3 to 7.4.4

Release notes

Sourced from pytest's releases.

pytest 7.4.4 (2023-12-31)

Bug Fixes

  • #11140: Fix non-string constants at the top of file being detected as docstrings on Python>=3.8.
  • #11572: Handle an edge case where sys.stderr{.interpreted-text role="data"} and sys.__stderr__{.interpreted-text role="data"} might already be closed when faulthandler{.interpreted-text role="ref"} is tearing down.
  • #11710: Fixed tracebacks from collection errors not getting pruned.
  • #7966: Removed unhelpful error message from assertion rewrite mechanism when exceptions are raised in __iter__ methods. Now they are treated un-iterable instead.

Improved Documentation

  • #11091: Updated documentation to refer to hyphenated options: replaced --junitxml with --junit-xml and --collectonly with --collect-only.
Commits
  • 33f694f Prepare release version 7.4.4
  • 76c107c Merge pull request #11751 from bluetech/backport-11143-to-7.4.x
  • 531d76d [7.4.x] Improve reporting from iter exceptions (#11749)
  • a0f58fa Merge pull request #11143 from tushar-deepsource/patch-1
  • b1f3387 [7.4.x] #11091: documentation should use hypthonated properties (#11750)
  • 2cdd619 Merge pull request #11747 from pytest-dev/backport-11711-to-7.4.x
  • d06c05b [7.4.x] nodes: fix tracebacks from collection errors are not getting pruned
  • 5582bfc [7.4.x] Improves clarity in Sphinx documentation for function signature. (#11...
  • 13024ef [7.4.x] Fix for operation on closed file in faulthandler teardown (#11631)
  • a40dacf [7.4.x] XFAIL TestLocalPath.test_make_numbered_dir_multiprocess_safe (#11616)
  • Additional commits viewable in compare view

Updates pytest-ansible from 4.1.1 to 24.1.2

Release notes

Sourced from pytest-ansible's releases.

v24.1.2

Bugfixes

v24.1.1

Bugfixes

v24.1.0

Minor Changes

Bugfixes

Commits

Updates referencing from 0.32.0 to 0.32.1

Release notes

Sourced from referencing's releases.

v0.32.1

  • Make Specification.detect raise a CannotDetermineSpecification error even if passed a mapping with a $schema key that doesn't match JSON Schema dialect semantics (e.g. a non-string).

Full Changelog: python-jsonschema/referencing@v0.32.0...v0.32.1

Changelog

Sourced from referencing's changelog.

v0.32.1

  • Make Specification.detect raise a CannotDetermineSpecification error even if passed a mapping with a $schema key that doesn't match JSON Schema dialect semantics (e.g. a non-string).
Commits
  • adb7c67 We CannotDetermineSpecification for $schema kyes that aren't strs
  • 80c9781 Merge pull request

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

| Package | From | To |
| --- | --- | --- |
| [ansible-compat](https://github.com/ansible/ansible-compat) | `4.1.10` | `4.1.11` |
| [ansible-creator](https://github.com/ansible-community/ansible-creator) | `0.0.1a4` | `0.1.0` |
| [ansible-lint](https://github.com/ansible/ansible-lint) | `6.22.1` | `6.22.2` |
| [ansible-navigator](https://github.com/ansible/ansible-navigator) | `3.5.0` | `3.6.0` |
| [attrs](https://github.com/sponsors/hynek) | `23.1.0` | `23.2.0` |
| [black](https://github.com/psf/black) | `23.12.0` | `23.12.1` |
| [distro](https://github.com/python-distro/distro) | `1.8.0` | `1.9.0` |
| [frozenlist](https://github.com/aio-libs/frozenlist) | `1.4.0` | `1.4.1` |
| [jinja2](https://github.com/pallets/jinja) | `3.1.2` | `3.1.3` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.20.0` | `4.21.0` |
| [jsonschema-specifications](https://github.com/python-jsonschema/jsonschema-specifications) | `2023.11.2` | `2023.12.1` |
| [molecule](https://github.com/ansible-community/molecule) | `6.0.2` | `6.0.3` |
| [pytest](https://github.com/pytest-dev/pytest) | `7.4.3` | `7.4.4` |
| [pytest-ansible](https://github.com/ansible/pytest-ansible) | `4.1.1` | `24.1.2` |
| [referencing](https://github.com/python-jsonschema/referencing) | `0.32.0` | `0.32.1` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.13.2` | `0.17.1` |
| [tox](https://github.com/tox-dev/tox) | `4.11.4` | `4.12.1` |
| [tox-ansible]() | `2.0.14` | `2.1.0` |
| [types-setuptools](https://github.com/python/typeshed) | `69.0.0.0` | `69.0.0.20240115` |
| [tzdata](https://github.com/python/tzdata) | `2023.3` | `2023.4` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.12.2` | `4.12.3` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.3.2` | `7.4.0` |
| [griffe](https://github.com/mkdocstrings/griffe) | `0.38.1` | `0.39.1` |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.5.1` | `3.5.2` |
| [markdown-exec](https://github.com/pawamoy/markdown-exec) | `1.7.0` | `1.8.0` |
| [mkdocs-ansible](https://github.com/ansible/mkdocs-ansible) | `0.2.0` | `0.2.1` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.2` | `9.5.4` |
| [mkdocs-minify-plugin](https://github.com/byrnereese/mkdocs-minify-plugin) | `0.7.1` | `0.7.2` |
| [mkdocs-monorepo-plugin](https://github.com/backstage/mkdocs-monorepo-plugin) | `1.0.5` | `1.1.0` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.7.5` | `1.8.0` |
| [mypy](https://github.com/python/mypy) | `1.7.1` | `1.8.0` |
| [pillow](https://github.com/python-pillow/Pillow) | `10.1.0` | `10.2.0` |
| [pipdeptree](https://github.com/tox-dev/pipdeptree) | `2.13.1` | `2.13.2` |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.3.8` | `0.3.9` |
| [pymdown-extensions](https://github.com/facelessuser/pymdown-extensions) | `10.5` | `10.7` |
| [regex](https://github.com/mrabarnett/mrab-regex) | `2023.10.3` | `2023.12.25` |
| [ruff](https://github.com/astral-sh/ruff) | `0.1.7` | `0.1.13` |


Updates `ansible-compat` from 4.1.10 to 4.1.11
- [Release notes](https://github.com/ansible/ansible-compat/releases)
- [Commits](ansible/ansible-compat@v4.1.10...v4.1.11)

Updates `ansible-creator` from 0.0.1a4 to 0.1.0
- [Release notes](https://github.com/ansible-community/ansible-creator/releases)
- [Changelog](https://github.com/ansible/ansible-creator/blob/main/CHANGELOG.md)
- [Commits](ansible/ansible-creator@v0.0.1-alpha.4...v0.1.0)

Updates `ansible-lint` from 6.22.1 to 6.22.2
- [Release notes](https://github.com/ansible/ansible-lint/releases)
- [Commits](ansible/ansible-lint@v6.22.1...v6.22.2)

Updates `ansible-navigator` from 3.5.0 to 3.6.0
- [Release notes](https://github.com/ansible/ansible-navigator/releases)
- [Changelog](https://github.com/ansible/ansible-navigator/blob/main/CHANGELOG.md)
- [Commits](ansible/ansible-navigator@v3.5.0...v3.6.0)

Updates `attrs` from 23.1.0 to 23.2.0
- [Commits](https://github.com/sponsors/hynek/commits)

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

Updates `distro` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/python-distro/distro/releases)
- [Changelog](https://github.com/python-distro/distro/blob/master/CHANGELOG.md)
- [Commits](python-distro/distro@v1.8.0...v1.9.0)

Updates `frozenlist` from 1.4.0 to 1.4.1
- [Release notes](https://github.com/aio-libs/frozenlist/releases)
- [Changelog](https://github.com/aio-libs/frozenlist/blob/master/CHANGES.rst)
- [Commits](aio-libs/frozenlist@v1.4.0...v1.4.1)

Updates `jinja2` from 3.1.2 to 3.1.3
- [Release notes](https://github.com/pallets/jinja/releases)
- [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst)
- [Commits](pallets/jinja@3.1.2...3.1.3)

Updates `jsonschema` from 4.20.0 to 4.21.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.20.0...v4.21.0)

Updates `jsonschema-specifications` from 2023.11.2 to 2023.12.1
- [Release notes](https://github.com/python-jsonschema/jsonschema-specifications/releases)
- [Commits](python-jsonschema/jsonschema-specifications@v2023.11.2...v2023.12.1)

Updates `molecule` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/ansible-community/molecule/releases)
- [Commits](ansible/molecule@v6.0.2...v6.0.3)

Updates `pytest` from 7.4.3 to 7.4.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@7.4.3...7.4.4)

Updates `pytest-ansible` from 4.1.1 to 24.1.2
- [Release notes](https://github.com/ansible/pytest-ansible/releases)
- [Changelog](https://github.com/ansible/pytest-ansible/blob/main/HISTORY.md)
- [Commits](ansible/pytest-ansible@v4.1.1...v24.1.2)

Updates `referencing` from 0.32.0 to 0.32.1
- [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.32.0...v0.32.1)

Updates `rpds-py` from 0.13.2 to 0.17.1
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.13.2...v0.17.1)

Updates `tox` from 4.11.4 to 4.12.1
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.11.4...4.12.1)

Updates `tox-ansible` from 2.0.14 to 2.1.0

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

Updates `tzdata` from 2023.3 to 2023.4
- [Release notes](https://github.com/python/tzdata/releases)
- [Changelog](https://github.com/python/tzdata/blob/master/NEWS.md)
- [Commits](python/tzdata@2023.3...2023.4)

Updates `beautifulsoup4` from 4.12.2 to 4.12.3

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

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

Updates `markdown` from 3.5.1 to 3.5.2
- [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.1...3.5.2)

Updates `markdown-exec` from 1.7.0 to 1.8.0
- [Release notes](https://github.com/pawamoy/markdown-exec/releases)
- [Changelog](https://github.com/pawamoy/markdown-exec/blob/main/CHANGELOG.md)
- [Commits](pawamoy/markdown-exec@1.7.0...1.8.0)

Updates `mkdocs-ansible` from 0.2.0 to 0.2.1
- [Release notes](https://github.com/ansible/mkdocs-ansible/releases)
- [Commits](ansible/mkdocs-ansible@v0.2.0...v0.2.1)

Updates `mkdocs-material` from 9.5.2 to 9.5.4
- [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.2...9.5.4)

Updates `mkdocs-minify-plugin` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/byrnereese/mkdocs-minify-plugin/releases)
- [Commits](byrnereese/mkdocs-minify-plugin@0.7.1...0.7.2)

Updates `mkdocs-monorepo-plugin` from 1.0.5 to 1.1.0
- [Changelog](https://github.com/backstage/mkdocs-monorepo-plugin/blob/master/docs/CHANGELOG.md)
- [Commits](https://github.com/backstage/mkdocs-monorepo-plugin/commits)

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

Updates `mypy` from 1.7.1 to 1.8.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.7.1...v1.8.0)

Updates `pillow` from 10.1.0 to 10.2.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@10.1.0...10.2.0)

Updates `pipdeptree` from 2.13.1 to 2.13.2
- [Release notes](https://github.com/tox-dev/pipdeptree/releases)
- [Changelog](https://github.com/tox-dev/pipdeptree/blob/main/CHANGES.md)
- [Commits](tox-dev/pipdeptree@2.13.1...2.13.2)

Updates `pydoclint` from 0.3.8 to 0.3.9
- [Release notes](https://github.com/jsh9/pydoclint/releases)
- [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md)
- [Commits](jsh9/pydoclint@0.3.8...0.3.9)

Updates `pymdown-extensions` from 10.5 to 10.7
- [Release notes](https://github.com/facelessuser/pymdown-extensions/releases)
- [Commits](facelessuser/pymdown-extensions@10.5...10.7)

Updates `regex` from 2023.10.3 to 2023.12.25
- [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt)
- [Commits](mrabarnett/mrab-regex@2023.10.3...2023.12.25)

Updates `ruff` from 0.1.7 to 0.1.13
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@v0.1.7...v0.1.13)

---
updated-dependencies:
- dependency-name: ansible-compat
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansible-creator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ansible-lint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansible-navigator
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: attrs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: distro
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: frozenlist
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jinja2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jsonschema-specifications
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: molecule
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest-ansible
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: referencing
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rpds-py
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tox
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tox-ansible
  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-patch
  dependency-group: dependencies
- dependency-name: tzdata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: beautifulsoup4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: coverage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: griffe
  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-patch
  dependency-group: dependencies
- dependency-name: markdown-exec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mkdocs-ansible
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-minify-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-monorepo-plugin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mkdocstrings-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pipdeptree
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pydoclint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pymdown-extensions
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 21, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jan 21, 2024
@dependabot dependabot bot deleted the dependabot/pip/dot-config/dependencies-b90b1ae7ec branch January 21, 2024 22:58
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.

0 participants