Skip to content

chore(deps): update strawberry-graphql-django requirement from ~=0.57.0 to ~=0.75.0#230

Open
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/strawberry-graphql-django-approx-eq-0.75.0
Open

chore(deps): update strawberry-graphql-django requirement from ~=0.57.0 to ~=0.75.0#230
dependabot[bot] wants to merge 1 commit intodevelopfrom
dependabot/pip/strawberry-graphql-django-approx-eq-0.75.0

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Feb 2, 2026

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

Release notes

Sourced from strawberry-graphql-django's releases.

0.75.0

Adds support for Django-style relationship traversal in strawberry_django.field(field_name=...) using LOOKUP_SEP (__). You can now flatten related objects or scalar fields without custom resolvers.

Examples:

@strawberry_django.type(User)
class UserType:
    role: RoleType | None = strawberry_django.field(
        field_name="assigned_role__role",
    )
role_name: str | None = strawberry_django.field(
    field_name="assigned_role__role__name",
)

The traversal returns None if an intermediate relationship is None. Documentation and tests cover the new behavior, including optimizer query counts.

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

Changelog

Sourced from strawberry-graphql-django's changelog.

0.75.0 - 2026-01-27

Adds support for Django-style relationship traversal in strawberry_django.field(field_name=...) using LOOKUP_SEP (__). You can now flatten related objects or scalar fields without custom resolvers.

Examples:

@strawberry_django.type(User)
class UserType:
    role: RoleType | None = strawberry_django.field(
        field_name="assigned_role__role",
    )
role_name: str | None = strawberry_django.field(
    field_name="assigned_role__role__name",
)

The traversal returns None if an intermediate relationship is None. Documentation and tests cover the new behavior, including optimizer query counts.

This release was contributed by @​bellini666 in #852

0.74.2 - 2026-01-27

Fix offset pagination extensions so they receive pagination, order, and filter arguments consistently with connection fields. This allows extensions to inspect filters for permission/validation while keeping resolvers tolerant of missing params.

0.74.1 - 2026-01-18

Pagination pageInfo.limit now returns the actual limit applied (after defaults and max caps), not the raw request value.

For example, with PAGINATION_DEFAULT_LIMIT=20, PAGINATION_MAX_LIMIT=50:

{ fruits(pagination: { limit: null }) { pageInfo { limit } } }

Before:

{
  "data": {
    "fruits": {
      "pageInfo": {
        "limit": null
      }
</tr></table> 

... (truncated)

Commits
  • 4f6cf8e chore: adjust release (0.74.3 -> 0.75.0)
  • 4edb880 🤖 Release 0.74.3
  • 74374a6 feat: support deep relationship traversal on field definition and optimizer (...
  • cef2e6c 🤖 Release 0.74.2
  • 3a4186d ci: one more place needing to use BOT_TOKEN
  • 6675aea ci: fix release workflow by using BOT_TOKEN on checkout
  • ab82981 fix: forward args to offset paginated extensions (#854)
  • d316784 [pre-commit.ci] pre-commit autoupdate (#855)
  • 34e68eb ci: skip Check for release for bot users
  • 00ce174 ci: remove some non-required permissions from workflows
  • 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 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...v0.75.0)

---
updated-dependencies:
- dependency-name: strawberry-graphql-django
  dependency-version: 0.75.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 Feb 2, 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