Bumps the all-deps group with 9 updates in the /requirements directory:
Updates django-filter from 25.1 to 25.2
Changelog
Sourced from django-filter's changelog.
Version 25.2 (2025年10月05日)
-
Added testing for Django 6.0.
-
Dropped support for Django <5.2 LTS
-
Dropped support for Python 3.9.
Commits
17ec565 Bumped version for 25.2 release.
9b4b8fd Updated testing for Django 6.0. (#1730)
1b07b3e Bump actions/setup-python from 5 to 6 in the github-actions group (#1726)
27a1168 Bump the github-actions group with 2 updates (#1722)
7f59b6f Add drf as optional dependencies (#1724)
635343e Add reference anchors to filter types to facilitate intersphinx refs (#1706)
7b3176e Document steps for postgres full text search (#1704)
- See full diff in compare view
Updates sphinx from 8.1.3 to 9.0.1
Release notes
Sourced from sphinx's releases.
Sphinx 9.0.1
Changelog: https://www.sphinx-doc.org/en/master/changes.html
Bugs fixed
- #13942: autodoc: Restore the mapping interface for options objects.
Patch by Adam Turner.
- #13942: autodoc: Deprecate the mapping interface for options objects.
Patch by Adam Turner.
- #13387: Update translations.
Sphinx 9.0.0
Changelog: https://www.sphinx-doc.org/en/master/changes.html
Dependencies
Incompatible changes
- #13639:
SphinxComponentRegistry.create_source_parser no longer
has an app parameter, instead taking config and env.
Patch by Adam Turner.
- #13679: Non-decodable characters in source files now raise an error.
Such bytes have been replaced with '?' along with logging a warning
since Sphinx 2.0.
Patch by Adam Turner.
- #13751, #14089:
sphinx.ext.autodoc has been substantially rewritten,
and there may be some incompatible changes in edge cases, especially when
extensions interact with autodoc internals.
The autodoc_use_legacy_class_based option has been added to
use the legacy (pre-9.0) implementation of autodoc.
Patches by Adam Turner.
- #13355: Don't include escaped title content in the search index.
Patch by Will Lachance.
Deprecated
- 13627: Deprecate remaining public
app attributes,
including builder.app, env.app, events.app,
and SphinxTransform.app.
Patch by Adam Turner.
- #13637: Deprecate the
set_application method
of Parser objects.
Patch by Adam Turner.
... (truncated)
Changelog
Sourced from sphinx's changelog.
Release 9.0.1 (released Dec 01, 2025)
Bugs fixed
- #13942: autodoc: Restore the mapping interface for options objects.
Patch by Adam Turner.
- #13942: autodoc: Deprecate the mapping interface for options objects.
Patch by Adam Turner.
- #13387: Update translations.
Release 9.0.0 (released Nov 30, 2025)
Dependencies
Incompatible changes
- #13639: :py:meth:
!SphinxComponentRegistry.create_source_parser no longer
has an app parameter, instead taking config and env.
Patch by Adam Turner.
- #13679: Non-decodable characters in source files now raise an error.
Such bytes have been replaced with '?' along with logging a warning
since Sphinx 2.0.
Patch by Adam Turner.
- #13751, #14089: :mod:
sphinx.ext.autodoc has been substantially rewritten,
and there may be some incompatible changes in edge cases, especially when
extensions interact with autodoc internals.
The :confval:autodoc_use_legacy_class_based option has been added to
use the legacy (pre-9.0) implementation of autodoc.
Patches by Adam Turner.
- #13355: Don't include escaped title content in the search index.
Patch by Will Lachance.
Deprecated
- 13627: Deprecate remaining public :py:attr:
!.app attributes,
including builder.app, env.app, events.app,
and SphinxTransform.app.
Patch by Adam Turner.
- #13637: Deprecate the :py:meth:
!set_application method
of :py:class:~sphinx.parsers.Parser objects.
... (truncated)
Commits
Updates black from 25.9.0 to 25.11.0
Release notes
Sourced from black's releases.
25.11.0
Highlights
- Enable base 3.14 support (#4804)
- Add support for the new Python 3.14 t-string syntax introduced by PEP 750 (#4805)
Stable style
- Fix bug where comments between
# fmt: off and # fmt: on were reformatted (#4811)
- Comments containing fmt directives now preserve their exact formatting instead of
being normalized (#4811)
Preview style
- Move
multiline_string_handling from --unstable to --preview (#4760)
- Fix bug where module docstrings would be treated as normal strings if preceded by
comments (#4764)
- Fix bug where python 3.12 generics syntax split line happens weirdly (#4777)
- Standardize type comments to form
# type: <value> (#4645)
- Fix
fix_fmt_skip_in_one_liners preview feature to respect # fmt: skip for compound
statements with semicolon-separated bodies (#4800)
Configuration
- Add
no_cache option to control caching behavior. (#4803)
Packaging
- Releases now include arm64 Linux binaries (#4773)
Output
- Write unchanged content to stdout when excluding formatting from stdin using pipes
(#4610)
Blackd
- Implemented BlackDClient. This simple python client allows to easily send formatting
requests to blackd (#4774)
Integrations
- Enable 3.14 base CI (#4804)
- Enhance GitHub Action
psf/black to support the required-version major-version-only
"stability" format when using pyproject.toml (#4770)
- Improve error message for vim plugin users. It now handles independently vim version
- Vim: Warn on unsupported Vim and Python versions independently (#4772)
- Vim: Print the import paths when importing black fails (#4675)
- Vim: Fix handling of virtualenvs that have a different Python version (#4675)
Changelog
Sourced from black's changelog.
25.11.0
Highlights
- Enable base 3.14 support (#4804)
- Add support for the new Python 3.14 t-string syntax introduced by PEP 750 (#4805)
Stable style
- Fix bug where comments between
# fmt: off and # fmt: on were reformatted (#4811)
- Comments containing fmt directives now preserve their exact formatting instead of
being normalized (#4811)
Preview style
- Move
multiline_string_handling from --unstable to --preview (#4760)
- Fix bug where module docstrings would be treated as normal strings if preceded by
comments (#4764)
- Fix bug where python 3.12 generics syntax split line happens weirdly (#4777)
- Standardize type comments to form
# type: <value> (#4645)
- Fix
fix_fmt_skip_in_one_liners preview feature to respect # fmt: skip for compound
statements with semicolon-separated bodies (#4800)
Configuration
- Add
no_cache option to control caching behavior. (#4803)
Packaging
- Releases now include arm64 Linux binaries (#4773)
- Releases now include arm64 Windows binaries and wheels (#4814)
Output
- Write unchanged content to stdout when excluding formatting from stdin using pipes
(#4610)
Blackd
- Implemented BlackDClient. This simple python client allows to easily send formatting
requests to blackd (#4774)
Integrations
- Enable 3.14 base CI (#4804)
- Enhance GitHub Action
psf/black to support the required-version major-version-only
"stability" format when using pyproject.toml (#4770)
- Add
output-file input to GitHub Action psf/black to write formatter output to a
file for artifact capture and log cleanliness (#4824)
- Improve error message for vim plugin users. It now handles independently vim version
... (truncated)
Commits
Updates flake8-bugbear from 24.12.12 to 25.11.29
Release notes
Sourced from flake8-bugbear's releases.
25.11.29
- B043: Add new check to state don't call delattr with constant (#514)
- B042: ignore overloaded init, ignore if str+pickle dunder, improve README
25.10.21
- B042: New check for reminding to call super().init in custom exceptions
- B028: Skip if skip_file_prefixes is used (#503)
- B912: New check for
map() without an explicit strict= parameter. (#516)
- Add python3.14 Support / CI
- Remove python3.9 support / CI
- flake8-bugbear now requires at least Python 3.10, like the next release of flake8
Commits
a5ace0a Update CHANGES + move to version 25.11.29 to release
0afdcce b042: ignore overloaded init, ignore if str+pickle dunder, improve README (#531)
2d2fd4d Add B043: Do not call delattr with constant (#514)
9677fa8 Bump actions/checkout from 5 to 6 (#530)
ad43575 [pre-commit.ci] pre-commit autoupdate (#529)
cdd75f1 Update CHANGES + move to version 25.10.21 to release
4601fe6 Drop 3.9 support + add 3.14 CI (#524)
3969961 [pre-commit.ci] pre-commit autoupdate (#523)
6276149 [pre-commit.ci] pre-commit autoupdate (#522)
d264420 [pre-commit.ci] pre-commit autoupdate (#520)
- Additional commits viewable in compare view
Updates flake8-isort from 6.1.2 to 7.0.0
Changelog
Sourced from flake8-isort's changelog.
7.0.0 (2025年10月25日)
-
Add support for isort 7.0.0.
[gforcada]
-
Drop python 3.9 support and add Python 3.14 support.
[gforcada]
-
Bump pypy minimum version to 3.10.
Commits
Updates isort from 6.1.0 to 7.0.0
Release notes
Sourced from isort's releases.
7.0.0
Changes
💥 Breaking Changes
🚀 Features
🪲 Fixes
👷 Continuous Integration
📦 Dependencies
Changelog
Sourced from isort's changelog.
Changelog
NOTE: isort follows the semver versioning standard.
Find out more about isort's release policy here.
Unreleased
- Removed
--old-finders and --magic-placement flags and old_finders configuration option. The legacy finder logic that relied on environment introspection has been removed (#2445) @joao-faria-dev
Commits
0a09c78 Merge pull request #2433 from DanielNoord/python-314
0fee794 Add 3.14 to stdlibds
332a1ad Bump zstandard for 3.14 compat
f756e56 Merge pull request #2432 from DanielNoord/ruff-it-up
52f5134 Format with ruff instead of black
012aa69 Merge pull request #2431 from DanielNoord/ruff-it-up
89773db Target 3.10 with ruff
933e382 Merge pull request #2430 from DanielNoord/drop-39
8b6e00c Remove support for Python 3.9
b5f9f29 Bump profile plugin to 3.10+ and re-lock
- Additional commits viewable in compare view
Updates faker from 37.8.0 to 38.2.0
Release notes
Sourced from faker's releases.
Release v38.2.0
See CHANGELOG.md.
Release v38.1.0
See CHANGELOG.md.
Release v38.0.0
See CHANGELOG.md.
Release v37.12.0
See CHANGELOG.md.
Release v37.11.0
See CHANGELOG.md.
Release v37.10.0
See CHANGELOG.md.
Release v37.9.0
See CHANGELOG.md.
Changelog
Sourced from faker's changelog.
- Add localized UniqueProxy. Thanks
@azmeuk
- Add
person provider for ar_DZ locale. Thanks @othmane099.
- Add
person, phone_number, date_time for fr_DZ locale. Thanks @othmane099.
- Drop support for Python 3.9
- Add support for Python 3.14
- Add names generation to
en_KE locale. Thanks @titustum.
Commits
Updates pytest from 8.4.2 to 9.0.1
Release notes
Sourced from pytest's releases.
9.0.1
pytest 9.0.1 (2025年11月12日)
Bug fixes
- #13895: Restore support for skipping tests via
raise unittest.SkipTest.
- #13896: The terminal progress plugin added in pytest 9.0 is now automatically disabled when iTerm2 is detected, it generated desktop notifications instead of the desired functionality.
- #13904: Fixed the TOML type of the verbosity settings in the API reference from number to string.
- #13910: Fixed UserWarning: Do not expect file_or_dir on some earlier Python 3.12 and 3.13 point versions.
Packaging updates and notes for downstreams
- #13933: The tox configuration has been adjusted to make sure the desired
version string can be passed into its
package_env through
the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment
variable as a part of the release process -- by webknjaz.
Contributor-facing changes
- #13891, #13942: The CI/CD part of the release automation is now capable of
creating GitHub Releases without having a Git checkout on
disk -- by
bluetech and webknjaz.
- #13933: The tox configuration has been adjusted to make sure the desired
version string can be passed into its
package_env through
the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment
variable as a part of the release process -- by webknjaz.
9.0.0
pytest 9.0.0 (2025年11月05日)
New features
-
#1367: Support for subtests has been added.
subtests <subtests> are an alternative to parametrization, useful in situations where the parametrization values are not all known at collection time.
Example:
def contains_docstring(p: Path) -> bool:
"""Return True if the given Python file contains a top-level docstring."""
...
def test_py_files_contain_docstring(subtests: pytest.Subtests) -> None:
for path in Path.cwd().glob("*.py"):
with subtests.test(path=str(path)):
assert contains_docstring(path)
... (truncated)
Commits
d1b64aa Prepare release version 9.0.1
0a497c7 regendoc: remove CI environment variables (#13950) (#13951)
a9f7e6e 🧪 Run gh release w/o Git in CI/CD (#13942) (#13947)
2682a66 Merge pull request #13944 from pytest-dev/patchback/backports/9.0.x/bef7d34f1...
a999997 Merge pull request #13941 from nicoddemus/min-pre-commit-version
4bd63a0 Merge pull request #13935 from pytest-dev/patchback/backports/9.0.x/ce8b8a7b4...
15f93b3 Merge pull request #13933 from webknjaz/maintenance/tox-pep517-env-setuptools...
0fa11ae Merge pull request #13927 from pytest-dev/patchback/backports/9.0.x/3d8075743...
fa45470 Merge pull request #13926 from pytest-dev/patchback/backports/9.0.x/d587e0cf8...
b4e3973 Merge pull request #13922 from bluetech/fix-argparse-userwarning
- Additional commits viewable in compare view
Updates syrupy from 4.9.1 to 5.0.0
Release notes
Sourced from syrupy's releases.
v5.0.0
Syrupy 5.0.0
(2025年09月28日)
This release introduces new features, bug fixes, and a major license change. It also includes several breaking changes, so please review those carefully before upgrading.
New Features ✨
- Add
--snapshot-dirname option: A new option, --snapshot-dirname, is now available to change the default directory snapshots are stored in. ([#810](syrupy-project/syrupy#810))
- Remove private underscore prefix: The unnecessary underscore prefixes have been removed from public methods for better code clarity. ([8cfc905](syrupy-project/syrupy@8cfc905))
Bug Fixes 🐛
- Fix terminal summary for
xdist workers: Resolves an issue where the terminal summary was not displayed correctly with xdist workers. ([#978](syrupy-project/syrupy#978))
- Ensure
pytest_assertrepr_compare hook is called first: This change ensures that Syrupy's assertion hook takes precedence, improving compatibility with other plugins. ([#984](syrupy-project/syrupy#984))
Breaking Changes ⚠️
-
License change: The project has switched to the more permissive MIT license. This change applies to all versions from 5.0.0 and beyond. If you need to use the previous Apache 2.0 license, you must continue to use Syrupy versions 4.x or earlier. ([#945](syrupy-project/syrupy#945))
-
Python and pytest version requirements: Syrupy now requires Python 3.10 or higher. Support for Python 3.8 has been dropped as it reached its end of life in October 2024. The minimum required version of pytest is v8. ([#904](syrupy-project/syrupy#904), [#1024](syrupy-project/syrupy#1024))
-
Method and constant name changes: Several methods and constants have been renamed for improved clarity and to align with public API standards.
New Contributors
Full Changelog: syrupy-project/syrupy@v4.9.1...v5.0.0
Changelog
Sourced from syrupy's changelog.
5.0.0 (2025年09月28日)
Bug Fixes
- Block terminal summary for xdist workers. (#978) (33a848d)
- ensure syrupy's pytest_assertrepr_compare hook is called first. (#984) (eb0024d)
Code Refactoring
- remove incorrect private underscore prefix from public methods (8cfc905)
Features
BREAKING CHANGES
- The following methods have been renamed:
SnapshotCollectionStorage
- _read_snapshot_collection -> read_snapshot_collection
- _read_snapshot_data_from_location -> read_snapshot_data_from_location
- _write_snapshot_collection -> write_snapshot_collection
- _get_file_basename -> get_file_basename
- _file_extension -> file_extension
AmberDataSerializer
- _snapshot_sort_key -> snapshot_sort_key
Renamed constants to improve clarity:
constants
- SNAPSHOT_EMPTY_FOSSIL_KEY -> SNAPSHOT_EMPTY_COLLECTION_KEY
- SNAPSHOT_UNKNOWN_FOSSIL_KEY -> SNAPSHOT_UNKNOWN_COLLECTION_KEY
- Min. python version is now 3.10.
- The Syrupy project is switching from Apache 2.0 to a more permissive MIT license. By using Syrupy >=5, you agree to abide by this new license. You can continue to use Syrupy v1 through v4 under Apache 2.0.
- Drops support for Python 3.8 which is end of life as of October 2024. Raises the minimum version of pytest to v8.
Commits
9b4cc82 chore(release): 5.0.0 [skip ci]
af15385 Merge pull request #1027 from syrupy-project/test_py_3_14
461ad22 chore: test against py3.14
95ffbcb Merge pull request #1026 from syrupy-project/rename_methods
27135c7 feat: add --snapshot-dirname option, close #810
8cfc905 refactor: remove incorrect private underscore prefix from public methods
e1dbf5d chore(deps): update python docker tag to v3.13.7 (#1025)
16b4113 feat: update min. python version to 3.10 (#1024)
434c63f chore(deps): update codecov/codecov-action action to v5.5.1 (#1021)
b2e49ba chore(deps): update dependency pytest to v8.4.2 (#1022)
- 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 all-deps group with 9 updates in the /requirements directory:
25.125.28.1.39.0.125.9.025.11.024.12.1225.11.296.1.27.0.06.1.07.0.037.8.038.2.08.4.29.0.14.9.15.0.0Updates
django-filterfrom 25.1 to 25.2Changelog
Sourced from django-filter's changelog.
Commits
17ec565Bumped version for 25.2 release.9b4b8fdUpdated testing for Django 6.0. (#1730)1b07b3eBump actions/setup-python from 5 to 6 in the github-actions group (#1726)27a1168Bump the github-actions group with 2 updates (#1722)7f59b6fAdd drf as optional dependencies (#1724)635343eAdd reference anchors to filter types to facilitate intersphinx refs (#1706)7b3176eDocument steps for postgres full text search (#1704)Updates
sphinxfrom 8.1.3 to 9.0.1Release notes
Sourced from sphinx's releases.
... (truncated)
Changelog
Sourced from sphinx's changelog.
... (truncated)
Commits
a837378Bump to 9.0.1 final48840e6Note updated message catalogues in CHANGES5931339[bot]: Update message catalogues (#13387)baffcf0autodoc: Deprecate mapping interface for options (#14140)61f9b70Bump mypy to 1.19.0 (#14135)ded587eShrink mypy whitelist fortests.test_directives.test_directive_patch(#14...a03556fShrink mypy whitelist fortests.test_builders.test_build_latex(#14138)0204145linkcheck: Reduce test duration on Windows (#14133)4e902a4Bump Ruff to 0.14.7 (#14134)9a11033Bump versionUpdates
blackfrom 25.9.0 to 25.11.0Release notes
Sourced from black's releases.
Changelog
Sourced from black's changelog.
... (truncated)
Commits
05f0a8cPrepare for 25.11.0 release (#4825)ae17c61Fix tests on pytest 9 (#4835)138745eInclude Windows and Python 3.14 in PR wheel build matrix, fix Windows build (...18170d6ci: add label for running all builds on a pull request (#4833)0e793e3fix windows wheels (#4830)b71f36cUse build[uv] as cibuildwheel frontend (#4831)a7bd594Skip free threaded builds in cibuildwheel (#4829)862dee9Update cibuildwheel (#4828)b5f354cbuild: restrict to pytest 9.0 due to breakage in custom pytest_configure (#4827)f705197t-string support (#4805)Updates
flake8-bugbearfrom 24.12.12 to 25.11.29Release notes
Sourced from flake8-bugbear's releases.
Commits
a5ace0aUpdate CHANGES + move to version 25.11.29 to release0afdcceb042: ignore overloaded init, ignore if str+pickle dunder, improve README (#531)2d2fd4dAdd B043: Do not call delattr with constant (#514)9677fa8Bump actions/checkout from 5 to 6 (#530)ad43575[pre-commit.ci] pre-commit autoupdate (#529)cdd75f1Update CHANGES + move to version 25.10.21 to release4601fe6Drop 3.9 support + add 3.14 CI (#524)3969961[pre-commit.ci] pre-commit autoupdate (#523)6276149[pre-commit.ci] pre-commit autoupdate (#522)d264420[pre-commit.ci] pre-commit autoupdate (#520)Updates
flake8-isortfrom 6.1.2 to 7.0.0Changelog
Sourced from flake8-isort's changelog.
Commits
a34569aPreparing release 7.0.0c5c3e7eMerge pull request #158 from gforcada/py3147d2b96cUpdate CHANGES4aa848cchore(ci): bump python version for lintingb80c95afix(ci): bump pypy version4e5c91echore: add Python 3.14, drop 3.9074d53aMerge pull request #157 from gforcada/gforcada-patch-134059b4Update CHANGES915547fUpdate pyproject.toml353f45aMerge pull request #155 from gforcada/maintenanceUpdates
isortfrom 6.1.0 to 7.0.0Release notes
Sourced from isort's releases.
Changelog
Sourced from isort's changelog.
Commits
0a09c78Merge pull request #2433 from DanielNoord/python-3140fee794Add 3.14 tostdlibds332a1adBumpzstandardfor 3.14 compatf756e56Merge pull request #2432 from DanielNoord/ruff-it-up52f5134Format withruffinstead ofblack012aa69Merge pull request #2431 from DanielNoord/ruff-it-up89773dbTarget 3.10 withruff933e382Merge pull request #2430 from DanielNoord/drop-398b6e00cRemove support for Python 3.9b5f9f29Bump profile plugin to 3.10+ and re-lockUpdates
fakerfrom 37.8.0 to 38.2.0Release notes
Sourced from faker's releases.
Changelog
Sourced from faker's changelog.
Commits
337f8faBump version: 38.1.0 → 38.2.0d8fb7f2📝 Update CHANGELOG.md243e317lint docse398287📝 Update docs3cc7f77feat: localized UniqueProxy (#2279)8ba30daBump version: 38.0.0 → 38.1.0921bde1📝 Update CHANGELOG.md702e23bfix newlined5051a9add_faker_pk_pypi_link (#2281)050de37Addpersonprovider forar_DZlocale (#2271)Updates
pytestfrom 8.4.2 to 9.0.1Release notes
Sourced from pytest's releases.
... (truncated)
Commits
d1b64aaPrepare release version 9.0.10a497c7regendoc: remove CI environment variables (#13950) (#13951)a9f7e6e🧪 Rungh releasew/o Git in CI/CD (#13942) (#13947)2682a66Merge pull request #13944 from pytest-dev/patchback/backports/9.0.x/bef7d34f1...a999997Merge pull request #13941 from nicoddemus/min-pre-commit-version4bd63a0Merge pull request #13935 from pytest-dev/patchback/backports/9.0.x/ce8b8a7b4...15f93b3Merge pull request #13933 from webknjaz/maintenance/tox-pep517-env-setuptools...0fa11aeMerge pull request #13927 from pytest-dev/patchback/backports/9.0.x/3d8075743...fa45470Merge pull request #13926 from pytest-dev/patchback/backports/9.0.x/d587e0cf8...b4e3973Merge pull request #13922 from bluetech/fix-argparse-userwarningUpdates
syrupyfrom 4.9.1 to 5.0.0Release notes
Sourced from syrupy's releases.
Changelog
Sourced from syrupy's changelog.
Commits
9b4cc82chore(release): 5.0.0 [skip ci]af15385Merge pull request #1027 from syrupy-project/test_py_3_14461ad22chore: test against py3.1495ffbcbMerge pull request #1026 from syrupy-project/rename_methods27135c7feat: add --snapshot-dirname option, close #8108cfc905refactor: remove incorrect private underscore prefix from public methodse1dbf5dchore(deps): update python docker tag to v3.13.7 (#1025)16b4113feat: update min. python version to 3.10 (#1024)434c63fchore(deps): update codecov/codecov-action action to v5.5.1 (#1021)b2e49bachore(deps): update dependency pytest to v8.4.2 (#1022)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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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