strawberry-graphql / strawberry-sqlalchemy

A SQLAlchemy Integration for strawberry-graphql
MIT License
91 stars 26 forks source link

Bump strawberry-graphql from 0.209.1 to 0.211.1 #72

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps strawberry-graphql from 0.209.1 to 0.211.1.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.211.1

This release fixes an issue that prevented the parser_cache extension to be used in combination with other extensions such as MaxTokensLimiter.

The following should work as expected now:

schema = strawberry.Schema(
    query=Query, extensions=[MaxTokensLimiter(max_token_count=20), ParserCache()]
)

Releases contributed by @​Dazix via #3170

🍓 0.211.0

This release adds a Quart view.

Releases contributed by @​catwell via #3162

🍓 0.210.0

This release deprecates our SentryTracingExtension, as it is now incorporated directly into Sentry itself as of version 1.32.0. You can now directly instrument Strawberry with Sentry.

Below is the revised usage example:

import sentry_sdk
from sentry_sdk.integrations.strawberry import StrawberryIntegration

sentry_sdk.init( dsn="PUBLIC_DSN", integrations=[ # make sure to set async_execution to False if you're executing # GraphQL queries synchronously StrawberryIntegration(async_execution=True), ], traces_sample_rate=1.0, )

Many thanks to @​sentrivana for their work on this integration!

Releases contributed by @​patrick91 via #3169

🍓 0.209.8

Fix strawberry mypy plugin for pydantic v2

Releases contributed by @​Corentin-Br via #3159

🍓 0.209.7

Remove stack_info from error log messages to not clutter error logging with unnecessary information.

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.211.1 - 2023-10-25

This release fixes an issue that prevented the parser_cache extension to be used in combination with other extensions such as MaxTokensLimiter.

The following should work as expected now:

schema = strawberry.Schema(
    query=Query, extensions=[MaxTokensLimiter(max_token_count=20), ParserCache()]
)

Contributed by David Ĺ anda via [PR #3170](strawberry-graphql/strawberry#3170)

0.211.0 - 2023-10-24

This release adds a Quart view.

Contributed by Pierre Chapuis via [PR #3162](strawberry-graphql/strawberry#3162)

0.210.0 - 2023-10-24

This release deprecates our SentryTracingExtension, as it is now incorporated directly into Sentry itself as of version 1.32.0. You can now directly instrument Strawberry with Sentry.

Below is the revised usage example:

import sentry_sdk
from sentry_sdk.integrations.strawberry import StrawberryIntegration

sentry_sdk.init( dsn="PUBLIC_DSN", integrations=[ # make sure to set async_execution to False if you're executing # GraphQL queries synchronously StrawberryIntegration(async_execution=True), ], traces_sample_rate=1.0, )

Many thanks to @​sentrivana for their work on this integration!

0.209.8 - 2023-10-20

... (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 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)
codecov-commenter commented 11 months ago

Codecov Report

Merging #72 (f76af5c) into main (bf75e07) will decrease coverage by 0.77%. The diff coverage is n/a.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #72 +/- ## ========================================== - Coverage 78.45% 77.69% -0.77% ========================================== Files 10 10 Lines 789 789 Branches 118 118 ========================================== - Hits 619 613 -6 - Misses 141 144 +3 - Partials 29 32 +3 ```
codspeed-hq[bot] commented 11 months ago

CodSpeed Performance Report

Merging #72 will not alter performance

Comparing dependabot/pip/strawberry-graphql-0.211.1 (f76af5c) with main (bf75e07)

Summary

âś… 1 untouched benchmarks

dependabot[bot] commented 11 months ago

Superseded by #79.