kislyuk/argcomplete (argcomplete)
### [`v3.5.0`](https://redirect.github.com/kislyuk/argcomplete/blob/HEAD/Changes.rst#Changes-for-v350-2024-08-06)
[Compare Source](https://redirect.github.com/kislyuk/argcomplete/compare/v3.4.0...v3.5.0)
\===============================
- Use project.scripts instead of setuptools scripts ([#498](https://redirect.github.com/kislyuk/argcomplete/issues/498))
- Test infrastructure improvements
tox-dev/py-filelock (filelock)
### [`v3.16.0`](https://redirect.github.com/tox-dev/filelock/releases/tag/3.16.0)
[Compare Source](https://redirect.github.com/tox-dev/py-filelock/compare/3.15.4...3.16.0)
#### What's Changed
- Test Python 3.13 by [@hugovk](https://redirect.github.com/hugovk) in [https://github.com/tox-dev/filelock/pull/352](https://redirect.github.com/tox-dev/filelock/pull/352)
- Add 3.13 to CI by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/tox-dev/filelock/pull/359](https://redirect.github.com/tox-dev/filelock/pull/359)
**Full Changelog**: https://github.com/tox-dev/filelock/compare/3.15.4...3.16.0
platformdirs/platformdirs (platformdirs)
### [`v4.3.2`](https://redirect.github.com/tox-dev/platformdirs/releases/tag/4.3.2)
[Compare Source](https://redirect.github.com/platformdirs/platformdirs/compare/4.3.1...4.3.2)
#### What's Changed
- Use uv as installer by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/tox-dev/platformdirs/pull/300](https://redirect.github.com/tox-dev/platformdirs/pull/300)
- Fix multi-path returned from `_path` methods on MacOS by [@matthewhughes934](https://redirect.github.com/matthewhughes934) in [https://github.com/tox-dev/platformdirs/pull/299](https://redirect.github.com/tox-dev/platformdirs/pull/299)
#### New Contributors
- [@matthewhughes934](https://redirect.github.com/matthewhughes934) made their first contribution in [https://github.com/tox-dev/platformdirs/pull/299](https://redirect.github.com/tox-dev/platformdirs/pull/299)
**Full Changelog**: https://github.com/tox-dev/platformdirs/compare/4.3.1...4.3.2
### [`v4.3.1`](https://redirect.github.com/tox-dev/platformdirs/releases/tag/4.3.1)
[Compare Source](https://redirect.github.com/platformdirs/platformdirs/compare/4.3.0...4.3.1)
**Full Changelog**: https://github.com/tox-dev/platformdirs/compare/4.3.0...4.3.1
### [`v4.3.0`](https://redirect.github.com/tox-dev/platformdirs/releases/tag/4.3.0)
[Compare Source](https://redirect.github.com/platformdirs/platformdirs/compare/4.2.2...4.3.0)
#### What's Changed
- Speed up Hatch installation by [@ofek](https://redirect.github.com/ofek) in [https://github.com/tox-dev/platformdirs/pull/282](https://redirect.github.com/tox-dev/platformdirs/pull/282)
- Test with Python 3.13 by [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) in [https://github.com/tox-dev/platformdirs/pull/289](https://redirect.github.com/tox-dev/platformdirs/pull/289)
- Test with latest PyPy by [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) in [https://github.com/tox-dev/platformdirs/pull/290](https://redirect.github.com/tox-dev/platformdirs/pull/290)
- Use `include-hidden-files: true` to upload coverage artifacts by [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) in [https://github.com/tox-dev/platformdirs/pull/298](https://redirect.github.com/tox-dev/platformdirs/pull/298)
- Ensure PlatformDirs is valid superclass type for mypy AND not an abstract class for other checkers by [@Avasam](https://redirect.github.com/Avasam) in [https://github.com/tox-dev/platformdirs/pull/295](https://redirect.github.com/tox-dev/platformdirs/pull/295)
#### New Contributors
- [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) made their first contribution in [https://github.com/tox-dev/platformdirs/pull/289](https://redirect.github.com/tox-dev/platformdirs/pull/289)
- [@Avasam](https://redirect.github.com/Avasam) made their first contribution in [https://github.com/tox-dev/platformdirs/pull/295](https://redirect.github.com/tox-dev/platformdirs/pull/295)
**Full Changelog**: https://github.com/tox-dev/platformdirs/compare/4.2.2...4.3.0
pytest-dev/pytest (pytest)
### [`v8.3.3`](https://redirect.github.com/pytest-dev/pytest/releases/tag/8.3.3)
[Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/8.3.2...8.3.3)
# pytest 8.3.3 (2024-09-09)
## Bug fixes
- [#12446](https://redirect.github.com/pytest-dev/pytest/issues/12446): Avoid calling `@property` (and other instance descriptors) during fixture discovery -- by `asottile`{.interpreted-text role="user"}
- [#12659](https://redirect.github.com/pytest-dev/pytest/issues/12659): Fixed the issue of not displaying assertion failure differences when using the parameter `--import-mode=importlib` in pytest>=8.1.
- [#12667](https://redirect.github.com/pytest-dev/pytest/issues/12667): Fixed a regression where type change in \[ExceptionInfo.errisinstance]{.title-ref} caused \[mypy]{.title-ref} to fail.
- [#12744](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/12745): Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments.
- [#6682](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/12678): Remove erroneous quotes from \[tmp_path_retention_policy]{.title-ref} example in docs.
## Miscellaneous internal changes
- [#12769](https://redirect.github.com/pytest-dev/pytest/issues/12769): Fix typos discovered by codespell and add codespell to pre-commit hooks.
pypa/virtualenv (virtualenv)
### [`v20.26.4`](https://redirect.github.com/pypa/virtualenv/releases/tag/20.26.4)
[Compare Source](https://redirect.github.com/pypa/virtualenv/compare/20.26.3...20.26.4)
#### What's Changed
- release 20.26.3 by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/pypa/virtualenv/pull/2742](https://redirect.github.com/pypa/virtualenv/pull/2742)
- Fix whitespace around backticks in changelog by [@edmorley](https://redirect.github.com/edmorley) in [https://github.com/pypa/virtualenv/pull/2751](https://redirect.github.com/pypa/virtualenv/pull/2751)
- Test latest Python 3.13 by [@hugovk](https://redirect.github.com/hugovk) in [https://github.com/pypa/virtualenv/pull/2752](https://redirect.github.com/pypa/virtualenv/pull/2752)
- Fix typo in Nushell activation script by [@edmorley](https://redirect.github.com/edmorley) in [https://github.com/pypa/virtualenv/pull/2754](https://redirect.github.com/pypa/virtualenv/pull/2754)
- GitHub Actions: Replace deprecated macos-12 with macos-13 by [@hugovk](https://redirect.github.com/hugovk) in [https://github.com/pypa/virtualenv/pull/2756](https://redirect.github.com/pypa/virtualenv/pull/2756)
- Fix [#2728](https://redirect.github.com/pypa/virtualenv/issues/2728): Activating venv create unwanted console output by [@ShootGan](https://redirect.github.com/ShootGan) in [https://github.com/pypa/virtualenv/pull/2748](https://redirect.github.com/pypa/virtualenv/pull/2748)
- Upgrade bundled wheels by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/pypa/virtualenv/pull/2760](https://redirect.github.com/pypa/virtualenv/pull/2760)
#### New Contributors
- [@ShootGan](https://redirect.github.com/ShootGan) made their first contribution in [https://github.com/pypa/virtualenv/pull/2748](https://redirect.github.com/pypa/virtualenv/pull/2748)
**Full Changelog**: https://github.com/pypa/virtualenv/compare/20.26.3...20.26.4
Configuration
š Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
š¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
ā» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
š» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
==3.4.0
->==3.5.0
==3.15.4
->==3.16.0
==4.2.2
->==4.3.2
==8.3.2
->==8.3.3
==20.26.3
->==20.26.4
Release Notes
kislyuk/argcomplete (argcomplete)
### [`v3.5.0`](https://redirect.github.com/kislyuk/argcomplete/blob/HEAD/Changes.rst#Changes-for-v350-2024-08-06) [Compare Source](https://redirect.github.com/kislyuk/argcomplete/compare/v3.4.0...v3.5.0) \=============================== - Use project.scripts instead of setuptools scripts ([#498](https://redirect.github.com/kislyuk/argcomplete/issues/498)) - Test infrastructure improvementstox-dev/py-filelock (filelock)
### [`v3.16.0`](https://redirect.github.com/tox-dev/filelock/releases/tag/3.16.0) [Compare Source](https://redirect.github.com/tox-dev/py-filelock/compare/3.15.4...3.16.0) #### What's Changed - Test Python 3.13 by [@hugovk](https://redirect.github.com/hugovk) in [https://github.com/tox-dev/filelock/pull/352](https://redirect.github.com/tox-dev/filelock/pull/352) - Add 3.13 to CI by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/tox-dev/filelock/pull/359](https://redirect.github.com/tox-dev/filelock/pull/359) **Full Changelog**: https://github.com/tox-dev/filelock/compare/3.15.4...3.16.0platformdirs/platformdirs (platformdirs)
### [`v4.3.2`](https://redirect.github.com/tox-dev/platformdirs/releases/tag/4.3.2) [Compare Source](https://redirect.github.com/platformdirs/platformdirs/compare/4.3.1...4.3.2) #### What's Changed - Use uv as installer by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/tox-dev/platformdirs/pull/300](https://redirect.github.com/tox-dev/platformdirs/pull/300) - Fix multi-path returned from `_path` methods on MacOS by [@matthewhughes934](https://redirect.github.com/matthewhughes934) in [https://github.com/tox-dev/platformdirs/pull/299](https://redirect.github.com/tox-dev/platformdirs/pull/299) #### New Contributors - [@matthewhughes934](https://redirect.github.com/matthewhughes934) made their first contribution in [https://github.com/tox-dev/platformdirs/pull/299](https://redirect.github.com/tox-dev/platformdirs/pull/299) **Full Changelog**: https://github.com/tox-dev/platformdirs/compare/4.3.1...4.3.2 ### [`v4.3.1`](https://redirect.github.com/tox-dev/platformdirs/releases/tag/4.3.1) [Compare Source](https://redirect.github.com/platformdirs/platformdirs/compare/4.3.0...4.3.1) **Full Changelog**: https://github.com/tox-dev/platformdirs/compare/4.3.0...4.3.1 ### [`v4.3.0`](https://redirect.github.com/tox-dev/platformdirs/releases/tag/4.3.0) [Compare Source](https://redirect.github.com/platformdirs/platformdirs/compare/4.2.2...4.3.0) #### What's Changed - Speed up Hatch installation by [@ofek](https://redirect.github.com/ofek) in [https://github.com/tox-dev/platformdirs/pull/282](https://redirect.github.com/tox-dev/platformdirs/pull/282) - Test with Python 3.13 by [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) in [https://github.com/tox-dev/platformdirs/pull/289](https://redirect.github.com/tox-dev/platformdirs/pull/289) - Test with latest PyPy by [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) in [https://github.com/tox-dev/platformdirs/pull/290](https://redirect.github.com/tox-dev/platformdirs/pull/290) - Use `include-hidden-files: true` to upload coverage artifacts by [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) in [https://github.com/tox-dev/platformdirs/pull/298](https://redirect.github.com/tox-dev/platformdirs/pull/298) - Ensure PlatformDirs is valid superclass type for mypy AND not an abstract class for other checkers by [@Avasam](https://redirect.github.com/Avasam) in [https://github.com/tox-dev/platformdirs/pull/295](https://redirect.github.com/tox-dev/platformdirs/pull/295) #### New Contributors - [@edgarrmondragon](https://redirect.github.com/edgarrmondragon) made their first contribution in [https://github.com/tox-dev/platformdirs/pull/289](https://redirect.github.com/tox-dev/platformdirs/pull/289) - [@Avasam](https://redirect.github.com/Avasam) made their first contribution in [https://github.com/tox-dev/platformdirs/pull/295](https://redirect.github.com/tox-dev/platformdirs/pull/295) **Full Changelog**: https://github.com/tox-dev/platformdirs/compare/4.2.2...4.3.0pytest-dev/pytest (pytest)
### [`v8.3.3`](https://redirect.github.com/pytest-dev/pytest/releases/tag/8.3.3) [Compare Source](https://redirect.github.com/pytest-dev/pytest/compare/8.3.2...8.3.3) # pytest 8.3.3 (2024-09-09) ## Bug fixes - [#12446](https://redirect.github.com/pytest-dev/pytest/issues/12446): Avoid calling `@property` (and other instance descriptors) during fixture discovery -- by `asottile`{.interpreted-text role="user"} - [#12659](https://redirect.github.com/pytest-dev/pytest/issues/12659): Fixed the issue of not displaying assertion failure differences when using the parameter `--import-mode=importlib` in pytest>=8.1. - [#12667](https://redirect.github.com/pytest-dev/pytest/issues/12667): Fixed a regression where type change in \[ExceptionInfo.errisinstance]{.title-ref} caused \[mypy]{.title-ref} to fail. - [#12744](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/12745): Fixed an issue with backslashes being incorrectly converted in nodeid paths on Windows, ensuring consistent path handling across environments. - [#6682](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/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](https://redirect.github.com/pytest-dev/pytest/issues/12678): Remove erroneous quotes from \[tmp_path_retention_policy]{.title-ref} example in docs. ## Miscellaneous internal changes - [#12769](https://redirect.github.com/pytest-dev/pytest/issues/12769): Fix typos discovered by codespell and add codespell to pre-commit hooks.pypa/virtualenv (virtualenv)
### [`v20.26.4`](https://redirect.github.com/pypa/virtualenv/releases/tag/20.26.4) [Compare Source](https://redirect.github.com/pypa/virtualenv/compare/20.26.3...20.26.4) #### What's Changed - release 20.26.3 by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/pypa/virtualenv/pull/2742](https://redirect.github.com/pypa/virtualenv/pull/2742) - Fix whitespace around backticks in changelog by [@edmorley](https://redirect.github.com/edmorley) in [https://github.com/pypa/virtualenv/pull/2751](https://redirect.github.com/pypa/virtualenv/pull/2751) - Test latest Python 3.13 by [@hugovk](https://redirect.github.com/hugovk) in [https://github.com/pypa/virtualenv/pull/2752](https://redirect.github.com/pypa/virtualenv/pull/2752) - Fix typo in Nushell activation script by [@edmorley](https://redirect.github.com/edmorley) in [https://github.com/pypa/virtualenv/pull/2754](https://redirect.github.com/pypa/virtualenv/pull/2754) - GitHub Actions: Replace deprecated macos-12 with macos-13 by [@hugovk](https://redirect.github.com/hugovk) in [https://github.com/pypa/virtualenv/pull/2756](https://redirect.github.com/pypa/virtualenv/pull/2756) - Fix [#2728](https://redirect.github.com/pypa/virtualenv/issues/2728): Activating venv create unwanted console output by [@ShootGan](https://redirect.github.com/ShootGan) in [https://github.com/pypa/virtualenv/pull/2748](https://redirect.github.com/pypa/virtualenv/pull/2748) - Upgrade bundled wheels by [@gaborbernat](https://redirect.github.com/gaborbernat) in [https://github.com/pypa/virtualenv/pull/2760](https://redirect.github.com/pypa/virtualenv/pull/2760) #### New Contributors - [@ShootGan](https://redirect.github.com/ShootGan) made their first contribution in [https://github.com/pypa/virtualenv/pull/2748](https://redirect.github.com/pypa/virtualenv/pull/2748) **Full Changelog**: https://github.com/pypa/virtualenv/compare/20.26.3...20.26.4Configuration
š Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
š¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.
ā» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
š» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.