Skip to content

Bump the all-deps group across 1 directory with 5 updates#1321

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/requirements/all-deps-103e945e1e
Open

Bump the all-deps group across 1 directory with 5 updates#1321
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/requirements/all-deps-103e945e1e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-deps group with 5 updates in the /requirements directory:

Package From To
black 26.3.1 26.5.1
faker 40.12.0 40.21.0
syrupy 5.1.0 5.3.1
django-filter 25.1 25.2
django-polymorphic 4.11.2 4.11.5

Updates black from 26.3.1 to 26.5.1

Release notes

Sourced from black's releases.

26.5.1

Stable style

  • Fix unstable formatting of annotated assignments whose subscript annotation contains an inline comment (e.g. x: list[ # pyright: ignore[...]) (#5130)
  • Preserve inline comments (including # type: ignore) immediately before a # fmt: skip line, avoiding AST equivalence failures (#5139)

Packaging

  • Correct the version in the published executables (#5137)

Documentation

  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches (#5124)

26.5.0

Highlights

  • Add support for unpacking in comprehensions (PEP 798) and for lazy imports (PEP 810), both new syntactic features in Python 3.15 (#5048)
  • Python 3.15 is now supported. Compiled wheels are not yet provided for Python 3.15, so performance may be slower than on existing Python versions. Wheels will be provided once Python 3.15 is later in its release cycle. (#5127)

Stable style

  • Fix # fmt: skip being ignored in nested if expressions with parenthesized in clauses (#4903)
  • Add syntactic support for Python 3.15 (#5048)
  • Fix crash when an f-string follows a # fmt: off comment inside brackets (#5097)
  • Preserve multiline compound statement headers when # fmt: skip is placed on the colon line (#5117)

Preview style

  • Improve heuristics around whether blank lines should appear before, within and after groups of same-name decorated functions (such as @overload groups) in .pyi stub files (#5021)
  • Fix blank lines being removed between a function and a decorated class in .pyi stub files (#5092)
  • Prevent string merger from creating unsplittable long lines when a pragma comment (e.g. # type: ignore) follows the closing bracket (#5096)

Packaging

Output

... (truncated)

Changelog

Sourced from black's changelog.

Version 26.5.1

Stable style

  • Fix unstable formatting of annotated assignments whose subscript annotation contains an inline comment (e.g. x: list[ # pyright: ignore[...]) (#5130)
  • Preserve inline comments (including # type: ignore) immediately before a # fmt: skip line, avoiding AST equivalence failures (#5139)

Packaging

  • Correct the version in the published executables (#5137)

Documentation

  • Add Neovim integration guide covering conform.nvim, ALE, and simple command approaches (#5124)

Version 26.5.0

Highlights

  • Add support for unpacking in comprehensions (PEP 798) and for lazy imports (PEP 810), both new syntactic features in Python 3.15 (#5048)
  • Python 3.15 is now supported. Compiled wheels are not yet provided for Python 3.15, so performance may be slower than on existing Python versions. Wheels will be provided once Python 3.15 is later in its release cycle. (#5127)

Stable style

  • Fix # fmt: skip being ignored in nested if expressions with parenthesized in clauses (#4903)
  • Add syntactic support for Python 3.15 (#5048)
  • Fix crash when an f-string follows a # fmt: off comment inside brackets (#5097)
  • Preserve multiline compound statement headers when # fmt: skip is placed on the colon line (#5117)

Preview style

  • Improve heuristics around whether blank lines should appear before, within and after groups of same-name decorated functions (such as @overload groups) in .pyi stub files (#5021)
  • Fix blank lines being removed between a function and a decorated class in .pyi stub files (#5092)
  • Prevent string merger from creating unsplittable long lines when a pragma comment (e.g. # type: ignore) follows the closing bracket (#5096)

Packaging

... (truncated)

Commits

Updates faker from 40.12.0 to 40.21.0

Release notes

Sourced from faker's releases.

Release v40.21.0

See CHANGELOG.md.

Release v40.20.0

See CHANGELOG.md.

Release v40.19.1

See CHANGELOG.md.

Release v40.19.0

See CHANGELOG.md.

Release v40.18.0

See CHANGELOG.md.

Release v40.17.0

See CHANGELOG.md.

Release v40.16.0

See CHANGELOG.md.

Release v40.15.0

See CHANGELOG.md.

Release v40.14.1

See CHANGELOG.md.

Release v40.14.0

See CHANGELOG.md.

Release v40.13.0

See CHANGELOG.md.

Changelog

Sourced from faker's changelog.

v40.21.0 - 2026-06-02

v40.20.0 - 2026-06-01

v40.19.1 - 2026-05-22

v40.19.0 - 2026-05-22

v40.18.0 - 2026-05-14

  • Add automotive providers for ar_DZ and fr_DZ locales. Thanks @​othmane099.
  • Add phone_number provider for ar_DZ and fr_DZ locales. Thanks @​othmane099.

v40.17.0 - 2026-05-14

  • Add am_ET phone_number provider for Ethiopia. Thanks @​jasur-py.

v40.16.0 - 2026-05-14

  • Fix duplicate phone number prefix 145 in zh_CN locale. Thanks @​r266-tec.

v40.15.0 - 2026-04-17

v40.14.1 - 2026-04-17

v40.14.0 - 2026-04-17

  • Fix: update placekitten URL to placekittens (#2364). Thanks @​reory.

v40.13.0 - 2026-04-06

... (truncated)

Commits

Updates syrupy from 5.1.0 to 5.3.1

Release notes

Sourced from syrupy's releases.

v5.3.1

What's Changed

Fixes

  • fix(test): mark pydantic and attrs as dependencies for running internal tests by @​noahnu in syrupy-project/syrupy#1108 -- This only affects users trying to run the syrupy tests themselves, not consumers of syrupy.

Misc

Full Changelog: syrupy-project/syrupy@v5.3.0...v5.3.1

v5.3.0

What's Changed

Features

Misc.

New Contributors

Full Changelog: syrupy-project/syrupy@v5.2.0...v5.3.0

v5.2.0

What's Changed

... (truncated)

Changelog

Sourced from syrupy's changelog.

v5.3.1 (2026-05-31)

What's Changed

Fixes

  • fix(test): mark pydantic and attrs as dependencies for running internal tests by @​noahnu in syrupy-project/syrupy#1108 -- This only affects users trying to run the syrupy tests themselves, not consumers of syrupy.

Misc

Full Changelog: syrupy-project/syrupy@v5.3.0...v5.3.1

v5.3.0 (2026-05-31)

What's Changed

Features

Misc.

New Contributors

Full Changelog: syrupy-project/syrupy@v5.2.0...v5.3.0

v5.2.0 (2026-05-16)

What's Changed

... (truncated)

Commits
  • c528216 fix(test): mark pydantic and attrs as dependencies for running internal tests...
  • 32b9ccb chore(deps): update benchmark-action/github-action-benchmark action to v1.22....
  • 520f813 chore(deps): update python docker tag to v3.14.4 (#1102)
  • 9ad6eb4 chore(deps): update astral-sh/setup-uv action to v8.1.0 (#1103)
  • 06c5ab4 chore(release): 5.3.0 [skip ci]
  • 5887f25 chore: update dev dependencies (#1101)
  • 2daa56e feat: add --snapshot-update-new-only flag (#843) (#1098)
  • 61c4e07 chore: skip benchmark on forks (#1100)
  • a4880a7 fix: include tests in sdist (#1099)
  • 719a71a chore(deps): update dependency pytest to v9.0.3 (#1096)
  • Additional commits viewable in compare view

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 django-polymorphic from 4.11.2 to 4.11.5

Release notes

Sourced from django-polymorphic's releases.

v4.11.5

What's Changed

Full Changelog: django-commons/django-polymorphic@v4.11.4...v4.11.5

v4.11.4

What's Changed

Full Changelog: django-commons/django-polymorphic@v4.11.3...v4.11.4

v4.11.3

What's Changed

New Contributors

Full Changelog: django-commons/django-polymorphic@v4.11.2...v4.11.3

Commits
  • c60b16b Fix concurrency setting on reusable workflows
  • b72b987 add one additional test, update changelog, bump version
  • 5a7fe54 Potential fix for pull request finding
  • ff11ac8 fix: return first PolymorphicParentModelAdmin
  • 5b16d49 revert playwright browser install change, address review findings
  • 47ebd5b fix tests
  • f76dbf6 add remaining tests for coverage
  • 94415bd remove name on code cov upload
  • 75607d5 format all workflows
  • 387a4c1 pin docker images, add zizmor config
  • 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 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 5 updates in the /requirements directory:

| Package | From | To |
| --- | --- | --- |
| [black](https://github.com/psf/black) | `26.3.1` | `26.5.1` |
| [faker](https://github.com/joke2k/faker) | `40.12.0` | `40.21.0` |
| [syrupy](https://github.com/syrupy-project/syrupy) | `5.1.0` | `5.3.1` |
| [django-filter](https://github.com/carltongibson/django-filter) | `25.1` | `25.2` |
| [django-polymorphic](https://github.com/django-commons/django-polymorphic) | `4.11.2` | `4.11.5` |



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

Updates `faker` from 40.12.0 to 40.21.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v40.12.0...v40.21.0)

Updates `syrupy` from 5.1.0 to 5.3.1
- [Release notes](https://github.com/syrupy-project/syrupy/releases)
- [Changelog](https://github.com/syrupy-project/syrupy/blob/main/CHANGELOG.md)
- [Commits](syrupy-project/syrupy@v5.1.0...v5.3.1)

Updates `django-filter` from 25.1 to 25.2
- [Release notes](https://github.com/carltongibson/django-filter/releases)
- [Changelog](https://github.com/carltongibson/django-filter/blob/main/CHANGES.rst)
- [Commits](carltongibson/django-filter@25.1...25.2)

Updates `django-polymorphic` from 4.11.2 to 4.11.5
- [Release notes](https://github.com/django-commons/django-polymorphic/releases)
- [Commits](django-commons/django-polymorphic@v4.11.2...v4.11.5)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 26.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: faker
  dependency-version: 40.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: syrupy
  dependency-version: 5.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: django-filter
  dependency-version: '25.2'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: django-polymorphic
  dependency-version: 4.11.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Jun 3, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants