Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Sep 8, 2025

Bumps strawberry-graphql from 0.257.0 to 0.282.0.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.282.0

This release fixes mask errors to support strawberry execution results.

Releases contributed by @​aryaniyaps via #3987

🍓 0.281.0

In this release we removed the --log-operations option from the strawberry server command. The option only worked for WebSocket connections to the debug server, and had limited utility.

Removing this option allowed us to remove the undocumented debug option from all HTTP view integrations and WebSocket protocol implementation, simplifying the codebase.

Releases contributed by @​DoctorJohn via #3979

🍓 0.280.0

This release unifies the format of HTTP error response bodies across all HTTP view integrations. Previously, the Chalice integration used a custom JSON body response different from the plain string used by other integrations. Now, all integrations will return a plain string for HTTP error responses.

Releases contributed by @​DoctorJohn via #3978

🍓 0.279.0

This release changes the strawberry.Maybe type to provide a more consistent and intuitive API for handling optional fields in GraphQL inputs.

Breaking Change: The Maybe type definition has been changed from Union[Some[Union[T, None]], None] to Union[Some[T], None]. This means:

  • Maybe[str] now only accepts string values or absent fields (refuses explicit null)
  • Maybe[str | None] accepts strings, null, or absent fields (maintains previous behavior)

This provides a cleaner API where if field is not None consistently means "field was provided" for all Maybe fields. A codemod is available to automatically migrate your code: strawberry upgrade maybe-optional

See the breaking changes documentation for migration details.

Releases contributed by @​patrick91 via #3961

🍓 0.278.1

This release removes some internal code in favour of using an external dependency, this will help us with maintaining the codebase in the future 😊

Releases contributed by @​patrick91 via #3967

🍓 0.278.0

Add GraphQL Query batching support

GraphQL query batching is now supported across all frameworks (sync and async) To enable query batching, add a valid batching_config to the schema configuration.

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.282.0 - 2025-09-07

This release fixes mask errors to support strawberry execution results.

Contributed by Aryan Iyappan via [PR #3987](strawberry-graphql/strawberry#3987)

0.281.0 - 2025-08-26

In this release we removed the --log-operations option from the strawberry server command. The option only worked for WebSocket connections to the debug server, and had limited utility.

Removing this option allowed us to remove the undocumented debug option from all HTTP view integrations and WebSocket protocol implementation, simplifying the codebase.

Contributed by Jonathan Ehwald via [PR #3979](strawberry-graphql/strawberry#3979)

0.280.0 - 2025-08-19

This release unifies the format of HTTP error response bodies across all HTTP view integrations. Previously, the Chalice integration used a custom JSON body response different from the plain string used by other integrations. Now, all integrations will return a plain string for HTTP error responses.

Contributed by Jonathan Ehwald via [PR #3978](strawberry-graphql/strawberry#3978)

0.279.0 - 2025-08-19

This release changes the strawberry.Maybe type to provide a more consistent and intuitive API for handling optional fields in GraphQL inputs.

Breaking Change: The Maybe type definition has been changed from Union[Some[Union[T, None]], None] to Union[Some[T], None]. This means:

  • Maybe[str] now only accepts string values or absent fields (refuses explicit null)
  • Maybe[str | None] accepts strings, null, or absent fields (maintains previous behavior)

This provides a cleaner API where if field is not None consistently means "field was provided" for all Maybe fields. A codemod is available to automatically migrate your code: strawberry upgrade maybe-optional

See the breaking changes documentation for migration details.

Contributed by Patrick Arminio via [PR #3961](strawberry-graphql/strawberry#3961)

... (truncated)

Commits
  • 0bdfea4 Release 🍓 0.282.0
  • 3948b4d ensure mask errors supports strawberry execution result dataclass (#3987)
  • 1798c4a Document a breaking change import related to the introduction of lia (#3989)
  • 58ea8c9 [pre-commit.ci] pre-commit autoupdate (#3977)
  • 5ba5cc4 Release 🍓 0.281.0
  • 3c95a01 Remove ws only operation logging (#3979)
  • 023f21a ⚡️ Speed up function should_resolve_list_connection_edges by 46% (#3976)
  • eb577c2 Release 🍓 0.280.0
  • fab19a5 Unify error response formats (#3978)
  • 40770b2 Release 🍓 0.279.0
  • Additional commits viewable in compare view

Dependabot compatibility score

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)

Bumps [strawberry-graphql](https://github.com/strawberry-graphql/strawberry) from 0.257.0 to 0.282.0.
- [Release notes](https://github.com/strawberry-graphql/strawberry/releases)
- [Changelog](https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md)
- [Commits](strawberry-graphql/strawberry@0.257.0...0.282.0)

---
updated-dependencies:
- dependency-name: strawberry-graphql
  dependency-version: 0.282.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Sep 8, 2025
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 13, 2025

Superseded by #144.

@dependabot dependabot bot closed this Oct 13, 2025
@dependabot dependabot bot deleted the dependabot/pip/strawberry-graphql-0.282.0 branch October 13, 2025 04:11
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.

1 participant