Skip to content

chore(deps): update strawberry-graphql-django requirement from ~=0.57.0 to >=0.57,<0.87#258

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/pip/strawberry-graphql-django-gte-0.57-and-lt-0.87
Open

chore(deps): update strawberry-graphql-django requirement from ~=0.57.0 to >=0.57,<0.87#258
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/pip/strawberry-graphql-django-gte-0.57-and-lt-0.87

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github May 25, 2026

Updates the requirements on strawberry-graphql-django to permit the latest version.

Release notes

Sourced from strawberry-graphql-django's releases.

0.86.0

DateFilterLookup, TimeFilterLookup and DatetimeFilterLookup no longer require a type parameter, matching StrFilterLookup. The generated GraphQL input names also lose their type prefix (e.g. DateDateFilterLookup becomes DateFilterLookup).

@strawberry_django.filter_type(models.Project)
class ProjectFilter:
    due_date: strawberry_django.DateFilterLookup | None

Migrating:

  • Drop the type argument from StrFilterLookup[str], DateFilterLookup[datetime.date], etc. The bare lookup now works; the bracket form still resolves to the same class but emits a DeprecationWarning.
  • DatetimeFilterLookup.date and .time now accept Date / Time values (previously typed as Int, which never matched Django's __date / __time transforms).
  • TimeFilterLookup.date and .time were removed. Django's __date / __time transforms don't apply to TimeField.

This release was contributed by @​bellini666 in strawberry-graphql/strawberry-django#910

Changelog

Sourced from strawberry-graphql-django's changelog.

0.86.0 - 2026-05-23

DateFilterLookup, TimeFilterLookup and DatetimeFilterLookup no longer require a type parameter, matching StrFilterLookup. The generated GraphQL input names also lose their type prefix (e.g. DateDateFilterLookup becomes DateFilterLookup).

@strawberry_django.filter_type(models.Project)
class ProjectFilter:
    due_date: strawberry_django.DateFilterLookup | None

Migrating:

  • Drop the type argument from StrFilterLookup[str], DateFilterLookup[datetime.date], etc. The bare lookup now works; the bracket form still resolves to the same class but emits a DeprecationWarning.
  • DatetimeFilterLookup.date and .time now accept Date / Time values (previously typed as Int, which never matched Django's __date / __time transforms).
  • TimeFilterLookup.date and .time were removed. Django's __date / __time transforms don't apply to TimeField.

This release was contributed by @​bellini666 in #910

0.85.0 - 2026-05-23

Breaking change: PAGINATION_MAX_LIMIT now defaults to 100 instead of None, so clients can no longer request more than 100 rows in a single page by default.

Previously, the cap was off and PAGINATION_DEFAULT_LIMIT only applied when the client omitted the limit, which let any client send limit: 9999999 and receive the full table in one response.

To restore the old behavior, set PAGINATION_MAX_LIMIT to None in STRAWBERRY_DJANGO (not recommended for production).

This release was contributed by @​bellini666 in #909

Additional contributors: @​Copilot

0.84.0 - 2026-05-03

Propagate child-type only= hints through method resolvers that declare the relation via select_related. Previously they were silently dropped, causing deferred loads or KeyErrors on descriptors without a deferred-load fallback (e.g. djmoney.MoneyField) once the parent's select_related reached past a single hop.

@strawberry_django.type(Child)
class ChildType:
    @strawberry_django.field(only=["extra_data"])
    def extra(self) -> str:
        return self.extra_data
</tr></table> 

... (truncated)

Commits
  • d5bd8ea fix: Date/Time/Datetime filter lookups without type parameter (#910)
  • 02b1639 🤖 Release 0.85.0
  • 17b4217 feat: cap pagination at 1000 rows by default (#909)
  • 7aae9ed docs: warn about ReDoS exposure on regex/iRegex filter lookups (#908)
  • b748b6c [pre-commit.ci] pre-commit autoupdate (#906)
  • a33ef2f 🤖 Release 0.84.0
  • a6655e7 feat: propagate child only= hints through method resolvers (#905)
  • ef0e3ff 🤖 Release 0.83.0
  • 092b181 Drop support for Django 4.2, Django 5.0, Django 5.1 (#897)
  • 99d84b5 [pre-commit.ci] pre-commit autoupdate (#903)
  • 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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [strawberry-graphql-django](https://github.com/strawberry-graphql/strawberry-django) to permit the latest version.
- [Release notes](https://github.com/strawberry-graphql/strawberry-django/releases)
- [Changelog](https://github.com/strawberry-graphql/strawberry-django/blob/main/CHANGELOG.md)
- [Commits](strawberry-graphql/strawberry-django@v0.57.0...0.86.0)

---
updated-dependencies:
- dependency-name: strawberry-graphql-django
  dependency-version: 0.86.0
  dependency-type: direct:production
...

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 May 25, 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