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 nonprod-dependencies group across 1 directory with 6 updates #227

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps the nonprod-dependencies group with 6 updates in the / directory:

Package From To
black 24.4.2 24.8.0
pre-commit 3.7.1 3.8.0
pylint 3.2.3 3.3.0
pytest 8.2.2 8.3.3
antsibull-changelog 0.29.0 0.30.0
antsibull-docs 2.11.0 2.14.0

Updates black from 24.4.2 to 24.8.0

Release notes

Sourced from black's releases.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Changelog

Sourced from black's changelog.

24.8.0

Stable style

  • Fix crash when # fmt: off is used before a closing parenthesis or bracket. (#4363)

Packaging

  • Packaging metadata updated: docs are explictly linked, the issue tracker is now also linked. This improves the PyPI listing for Black. (#4345)

Parser

  • Fix regression where Black failed to parse a multiline f-string containing another multiline string (#4339)
  • Fix regression where Black failed to parse an escaped single quote inside an f-string (#4401)
  • Fix bug with Black incorrectly parsing empty lines with a backslash (#4343)
  • Fix bugs with Black's tokenizer not handling \{ inside f-strings very well (#4422)
  • Fix incorrect line numbers in the tokenizer for certain tokens within f-strings (#4423)

Performance

  • Improve performance when a large directory is listed in .gitignore (#4415)

Blackd

  • Fix blackd (and all extras installs) for docker container (#4357)
Commits
  • b965c2a Prepare release 24.8.0 (#4426)
  • 9ccf279 Document find_project_root ignoring pyproject.toml without [tool.black]...
  • 14b6e61 fix: Enhace black efficiently to skip directories listed in .gitignore (#4415)
  • b1c4dd9 fix: respect braces better in f-string parsing (#4422)
  • 4b4ae43 Fix incorrect linenos on fstring tokens with escaped newlines (#4423)
  • 7fa1faf docs: fix the installation command of extra for blackd (#4413)
  • 8827acc Bump sphinx from 7.3.7 to 7.4.0 in /docs (#4404)
  • b0da11d Bump furo from 2024.5.6 to 2024.7.18 in /docs (#4409)
  • 721dff5 fix: avoid formatting backslash strings inside f-strings (#4401)
  • 7e2afc9 Update actions/checkout to v4 to stop node deprecation warnings (#4379)
  • Additional commits viewable in compare view

Updates pre-commit from 3.7.1 to 3.8.0

Release notes

Sourced from pre-commit's releases.

pre-commit v3.8.0

Features

Changelog

Sourced from pre-commit's changelog.

3.8.0 - 2024-07-28

Features

Commits
  • d46423f v3.8.0
  • 8133abd Merge pull request #3265 from lorenzwalthert/issue-3206
  • da0c1d0 implement health check for language:r
  • f641f6a Merge pull request #3264 from pre-commit/pre-commit-ci-update-config
  • a68a19d fixes for mypy 1.11
  • 88317dd [pre-commit.ci] pre-commit autoupdate
  • faa6f8c Merge pull request #3244 from pre-commit/pre-commit-ci-update-config
  • f632459 [pre-commit.ci] pre-commit autoupdate
  • 0252908 Merge pull request #3240 from pre-commit/pre-commit-ci-update-config
  • 69b5dce [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates pylint from 3.2.3 to 3.3.0

Commits
  • 6350dfa Bump pylint to 3.3.0, update changelog
  • 78f3dfa Bump astroid to 3.3.3 (#9939)
  • b28c1f6 Add check for unnecessary-default-type-args (#9938)
  • bd97b93 [doc framework] Assert that the good and bad example exists in the doc (#9936)
  • 7aa4436 Fix duplicate workflow step ids (#9934)
  • 0950916 [pre-commit] Add codespell, and fix some existing typos (#9912)
  • 3b4a7f9 Add details.rst for c-extension-no-member (#9933)
  • 7d60c27 Explicitly save cache in primer jobs
  • 67acc96 Add additional stdlib deprecations (mostly 3.13) (#9853)
  • 0adf671 Remove old-style classes code, remove check for new-style class (#9925)
  • Additional commits viewable in compare view

Updates pytest from 8.2.2 to 8.3.3

Release notes

Sourced from pytest's releases.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

  • #12667: Fixed a regression where type change in [ExceptionInfo.errisinstance]{.title-ref} caused [mypy]{.title-ref} to fail.

  • #12744: Fixed typing compatibility with Python 3.9 or less -- replaced [typing.Self]{.title-ref} with [typing_extensions.Self]{.title-ref} -- by Avasam{.interpreted-text role="user"}

  • #12745: Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.

  • #6682: Fixed bug where the verbosity levels where not being respected when printing the "msg" part of failed assertion (as in assert condition, msg).

  • #9422: Fix bug where disabling the terminal plugin via -p no:terminal would cause crashes related to missing the verbose option.

    -- by GTowers1{.interpreted-text role="user"}

Improved documentation

  • #12663: Clarify that the [pytest_deselected]{.title-ref} hook should be called from [pytest_collection_modifyitems]{.title-ref} hook implementations when items are deselected.
  • #12678: Remove erroneous quotes from [tmp_path_retention_policy]{.title-ref} example in docs.

Miscellaneous internal changes

  • #12769: Fix typos discovered by codespell and add codespell to pre-commit hooks.

8.3.2

pytest 8.3.2 (2024-07-24)

Bug fixes

  • #12652: Resolve regression [conda]{.title-ref} environments where no longer being automatically detected.

    -- by RonnyPfannschmidt{.interpreted-text role="user"}

8.3.1

pytest 8.3.1 (2024-07-20)

The 8.3.0 release failed to include the change notes and docs for the release. This patch release remedies this. There are no other changes.

... (truncated)

Commits

Updates antsibull-changelog from 0.29.0 to 0.30.0

Release notes

Sourced from antsibull-changelog's releases.

0.30.0

Release Summary

Feature release.

Minor Changes

Changelog

Sourced from antsibull-changelog's changelog.

v0.30.0

Release Summary

Feature release.

Minor Changes

  • Allow to configure the used VCS in changelogs/config.yml. Valid choices are none (default), git, or auto. If set to git, or auto detects that the project is part of a Git repository, only non-ignored files will be copied to a temporary directory when trying to load information on Ansible modules, plugins and roles (ansible-community/antsibull-changelog#172, ansible-community/antsibull-changelog#175).
  • Antsibull-changelog now depends on the new package antsibull-docutils. This should not have any visible impact, expect potentially improved MarkDown output (ansible-community/antsibull-changelog#174).
  • Antsibull-changelog now depends on the new project antsibull-fileutils (ansible-community/antsibull-changelog#176).
  • If you are using argcomplete <https://pypi.org/project/argcomplete/>__ global completion, you can now tab-complete antsibull-changelog command lines. See Activating global completion <https://pypi.org/project/argcomplete/#activating-global-completion>__ in the argcomplete README for how to enable tab completion globally. This will also tab-complete Ansible commands such as ansible-playbook and ansible-test (ansible-community/antsibull-changelog#173).
Commits
  • bb1f78b Release 0.30.0.
  • 23d084f Prepare 0.30.0.
  • 066ef11 Add antsibull-fileutils dependency (#176)
  • c2f962f Docsite: add Community guide (#177)
  • f7fa371 Add VCS support; use to copy only non-ignored files for module/plugin/role de...
  • e7c4682 Use antsibull-docutils and remove code moved there (#174)
  • c15ad61 Make CLI startup faster, support tab completion with argcomplete (#173)
  • 2d34898 Remove pyre and poetry entries from gitignore.
  • d15b39f Remove pyre config files.
  • 1a2be8a Remove pyre (#171)
  • Additional commits viewable in compare view

Updates antsibull-docs from 2.11.0 to 2.14.0

Release notes

Sourced from antsibull-docs's releases.

2.14.0

Release Summary

Feature release.

Minor Changes

2.13.1

Release Summary

Bugfix release.

Bugfixes

2.13.0

Release Summary

Bugfix and feature release.

Minor Changes

Bugfixes

  • Fix RST escaping of the title in the collections per namespace list. This causes a space to vanish between namespace name and the word Namespace with newer versions of antsibull-docs-parser (ansible-community/antsibull-docs#311).

2.12.0

Release Summary

Bugfix and feature release.

Minor Changes

... (truncated)

Changelog

Sourced from antsibull-docs's changelog.

v2.14.0

Release Summary

Feature release.

Minor Changes

v2.13.1

Release Summary

Bugfix release.

Bugfixes

v2.13.0

Release Summary

Bugfix and feature release.

Minor Changes

  • Allow to disable adding the antsibull-docs version to the generated files with the --no-add-antsibull-docs-version command line flag, or the add_antsibull_docs_version = false setting in the antsibull-docs config file (ansible-community/antsibull-docs#304, ansible-community/antsibull-docs#308).
  • Bump minimal required version of dependency antsibull-docs-parser to 1.1.0 This allows to use a new whitespace-removal feature (ansible-community/antsibull-docs#312).
  • If you are using argcomplete <https://pypi.org/project/argcomplete/>, you can now tab-complete antsibull-docs command lines. See Activating global completion <https://pypi.org/project/argcomplete/#activating-global-completion> in the argcomplete README for how to enable tab completion globally. This will also tab-complete Ansible commands such as ansible-playbook and ansible-test (ansible-community/antsibull-docs#302).
  • Most documentation generating subcommands now have a --cleanup parameter which allows to delete files and directories that were not created by antsibull-docs in the destination directory (ansible-community/antsibull-docs#315).
  • No longer use rsync when creating a build script with the sphinx-init subcommand (ansible-community/antsibull-docs#315).
  • Remove superfluous whitespace or escaped spaces from templates (ansible-community/antsibull-docs#313).
  • Remove trailing whitespace and leading and trailing empty lines from rendered templates, and ensure they end with a newline if not empty (ansible-community/antsibull-docs#314).

Bugfixes

... (truncated)

Commits
  • 9694434 Release 2.14.0.
  • 4e417e0 Prepare 2.14.0.
  • d6672f6 Update CI and instructions for antsibull-fileutils; add explicit dependency o...
  • ae85576 Docsite: add Community guide (#323)
  • 49cfcde Remove ansible-project mailing list from ansible.builtin links. (#325)
  • 2130935 Bump postcss from 8.4.41 to 8.4.44 in /src/sphinx_antsibull_ext/css (#324)
  • ae8f0d3 Show deprecation marker in module/plugin/role lists (#320)
  • 18a168d Post-release version bump.
  • e192e0e Release 2.13.1.
  • d1e33ad Prepare 2.13.1.
  • Additional commits viewable in compare view

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 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

Bumps the nonprod-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [black](https://github.com/psf/black) | `24.4.2` | `24.8.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.7.1` | `3.8.0` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.3` | `3.3.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.2.2` | `8.3.3` |
| [antsibull-changelog](https://github.com/ansible-community/antsibull-changelog) | `0.29.0` | `0.30.0` |
| [antsibull-docs](https://github.com/ansible-community/antsibull-docs) | `2.11.0` | `2.14.0` |



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

Updates `pre-commit` from 3.7.1 to 3.8.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.7.1...v3.8.0)

Updates `pylint` from 3.2.3 to 3.3.0
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.3...v3.3.0)

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

Updates `antsibull-changelog` from 0.29.0 to 0.30.0
- [Release notes](https://github.com/ansible-community/antsibull-changelog/releases)
- [Changelog](https://github.com/ansible-community/antsibull-changelog/blob/main/CHANGELOG.rst)
- [Commits](ansible-community/antsibull-changelog@0.29.0...0.30.0)

Updates `antsibull-docs` from 2.11.0 to 2.14.0
- [Release notes](https://github.com/ansible-community/antsibull-docs/releases)
- [Changelog](https://github.com/ansible-community/antsibull-docs/blob/main/CHANGELOG.rst)
- [Commits](ansible-community/antsibull-docs@2.11.0...2.14.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nonprod-dependencies
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nonprod-dependencies
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nonprod-dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nonprod-dependencies
- dependency-name: antsibull-changelog
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nonprod-dependencies
- dependency-name: antsibull-docs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: nonprod-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependabot PR generated by Dependabot label Sep 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependabot PR generated by Dependabot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants