Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/pip/strawberry-graphql-django-approx-eq-0.74.1
Closed

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

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Jan 19, 2026

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

Release notes

Sourced from strawberry-graphql-django's releases.

0.74.1

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
      }
    }
  }
}

After:

{
  "data": {
    "fruits": {
      "pageInfo": {
        "limit": 20
      }
    }
  }
}

Also fixes limit: null to use PAGINATION_DEFAULT_LIMIT instead of PAGINATION_MAX_LIMIT.

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

Changelog

Sourced from strawberry-graphql-django's changelog.

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
      }
    }
  }
}

After:

{
  "data": {
    "fruits": {
      "pageInfo": {
        "limit": 20
      }
    }
  }
}

Also fixes limit: null to use PAGINATION_DEFAULT_LIMIT instead of PAGINATION_MAX_LIMIT.

This release was contributed by @​bellini666 in #848

0.74.0 - 2026-01-17

Add configurable PAGINATION_MAX_LIMIT setting to cap pagination requests, preventing clients from requesting unlimited data via limit: null or excessive limits.

This addresses security and performance concerns by allowing projects to enforce a maximum number of records that can be requested through pagination.

Configuration:

... (truncated)

Commits
  • fd45081 fix: sync pageInfo.limit with effective pagination limit (#848)
  • 455019f ci: bump autopub and set git user/email for releases
  • e6a2ea9 chore: fix user/PRs/issues links on CHANGELOG.md
  • 6446aa9 chore: add a CHANGELOG header on CHANGELOG.md
  • 554d6bd chore: add stripped CHANGELOG again
  • bc2c6f9 🤖 Release 0.74.0
  • e9f51a3 feat: implement pagination max limit setting (#847)
  • 45d176b [pre-commit.ci] pre-commit autoupdate (#843)
  • 558e3f5 chore: update autopub to 1.0.0a53
  • 92a0f83 chore: make PR link clickable in CHANGELOG.md
  • 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...0.74.1)

---
updated-dependencies:
- dependency-name: strawberry-graphql-django
  dependency-version: 0.74.1
  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 Jan 19, 2026
@dependabot @github
Copy link
Copy Markdown
Author

dependabot Bot commented on behalf of github Feb 2, 2026

Superseded by #64.

@dependabot dependabot Bot closed this Feb 2, 2026
@dependabot dependabot Bot deleted the dependabot/pip/strawberry-graphql-django-approx-eq-0.74.1 branch February 2, 2026 00:31
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