Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump strawberry-graphql from 0.243.1 to 0.250.1 #215

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 19, 2024

Bumps strawberry-graphql from 0.243.1 to 0.250.1.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.250.1

This release refactors part of the legacy graphql-ws protocol implementation, making it easier to read, maintain, and extend.

Releases contributed by @​DoctorJohn via #3704

🍓 0.250.0

In this release, we migrated the graphql-transport-ws types from data classes to typed dicts. Using typed dicts enabled us to precisely model null versus undefined values, which are common in that protocol. As a result, we could remove custom conversion methods handling these cases and simplify the codebase.

Releases contributed by @​DoctorJohn via #3701

🍓 0.249.0

After a year-long deprecation period, the SentryTracingExtension has been removed in favor of the official Sentry SDK integration.

To migrate, remove the SentryTracingExtension from your Strawberry schema and then follow the official Sentry SDK integration guide.

Releases contributed by @​DoctorJohn via #3672

🍓 0.248.1

This release fixes the following deprecation warning:

Failing to pass a value to the 'type_params' parameter of 'typing._eval_type' is deprecated,
as it leads to incorrect behaviour when calling typing._eval_type on a stringified annotation
that references a PEP 695 type parameter. It will be disallowed in Python 3.15.

This was only trigger in Python 3.13 and above.

Releases contributed by @​patrick91 via #3692

🍓 0.248.0

In this release, all types of the legacy graphql-ws protocol were refactored. The types are now much stricter and precisely model the difference between null and undefined fields. As a result, our protocol implementation and related tests are now more robust and easier to maintain.

Releases contributed by @​DoctorJohn via #3689

🍓 0.247.2

This release fixes the issue that some coroutines in the WebSocket protocol handlers were never awaited if clients disconnected shortly after starting an operation.

Releases contributed by @​DoctorJohn via #3687

🍓 0.247.1

Starting with this release, both websocket-based protocols will handle unexpected socket disconnections more gracefully.

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.250.1 - 2024-11-19

This release refactors part of the legacy graphql-ws protocol implementation, making it easier to read, maintain, and extend.

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

0.250.0 - 2024-11-18

In this release, we migrated the graphql-transport-ws types from data classes to typed dicts. Using typed dicts enabled us to precisely model null versus undefined values, which are common in that protocol. As a result, we could remove custom conversion methods handling these cases and simplify the codebase.

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

0.249.0 - 2024-11-18

After a year-long deprecation period, the SentryTracingExtension has been removed in favor of the official Sentry SDK integration.

To migrate, remove the SentryTracingExtension from your Strawberry schema and then follow the official Sentry SDK integration guide.

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

0.248.1 - 2024-11-08

This release fixes the following deprecation warning:

Failing to pass a value to the 'type_params' parameter of 'typing._eval_type' is deprecated,
as it leads to incorrect behaviour when calling typing._eval_type on a stringified annotation
that references a PEP 695 type parameter. It will be disallowed in Python 3.15.

This was only trigger in Python 3.13 and above.

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

0.248.0 - 2024-11-07

... (truncated)

Commits

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)

Summary by Sourcery

Build:

  • Upgrade strawberry-graphql from version 0.243.1 to 0.250.1 in the project's dependencies.

Bumps [strawberry-graphql](https://github.com/strawberry-graphql/strawberry) from 0.243.1 to 0.250.1.
- [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.243.1...0.250.1)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 19, 2024
Copy link
Contributor

sourcery-ai bot commented Nov 19, 2024

Reviewer's Guide by Sourcery

This PR updates the strawberry-graphql dependency from version 0.243.1 to 0.250.1. The update includes several improvements to the WebSocket protocol implementations, removal of deprecated features, and bug fixes. The changes are primarily internal refactoring and type system improvements that don't require any code changes from users, except for those using the deprecated SentryTracingExtension.

Class diagram for TypedDict migration in graphql-transport-ws

classDiagram
    class GraphQLTransportWS {
        <<TypedDict>>
        +String id
        +String type
        +Object payload
    }
    note for GraphQLTransportWS "Migrated from data classes to TypedDicts to model null vs undefined values precisely."
Loading

Class diagram for removal of SentryTracingExtension

classDiagram
    class SentryTracingExtension {
        -trace()
        -captureException()
    }
    note for SentryTracingExtension "This class has been removed in favor of the official Sentry SDK integration."
Loading

File-Level Changes

Change Details Files
Refactoring of WebSocket protocol implementations
  • Migrated graphql-transport-ws types from data classes to typed dicts
  • Improved null vs undefined value handling in protocol types
  • Enhanced legacy graphql-ws protocol implementation for better maintainability
  • Improved handling of unexpected socket disconnections
poetry.lock
Removal of deprecated SentryTracingExtension
  • Removed SentryTracingExtension after one year deprecation period
  • Users need to migrate to the official Sentry SDK integration
poetry.lock
Bug fixes and compatibility improvements
  • Fixed deprecation warning for type_params in Python 3.13+
  • Fixed issue with unawaited coroutines in WebSocket protocol handlers
poetry.lock

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

Copy link

codspeed-hq bot commented Nov 19, 2024

CodSpeed Performance Report

Merging #215 will not alter performance

Comparing dependabot/pip/strawberry-graphql-0.250.1 (e6bb359) with main (2133fd7)

Summary

✅ 1 untouched benchmarks

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants