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.2 #79

Closed dependabot[bot] closed 11 months ago

dependabot[bot] commented 11 months ago

Bumps strawberry-graphql from 0.209.1 to 0.211.2.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.211.2

This release removes unused graphiql submodules for Flask, Quart and Sanic.

Releases contributed by @​catwell via #3203

🍓 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

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.211.2 - 2023-11-06

This release removes unused graphiql submodules for Flask, Quart and Sanic.

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

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), </tr></table>

... (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 major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
codspeed-hq[bot] commented 11 months ago

CodSpeed Performance Report

Merging #79 will not alter performance

Comparing dependabot/pip/strawberry-graphql-0.211.2 (984e86f) with main (4d3e130)

Summary

âś… 1 untouched benchmarks

dependabot[bot] commented 11 months ago

Superseded by #82.