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.212.0 #82

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 11 months ago

Bumps strawberry-graphql from 0.209.1 to 0.212.0.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.212.0

This release changes how we check for generic types. Previously, any type that had a generic typevar would be considered generic for the GraphQL schema, this would generate un-necessary types in some cases. Now, we only consider a type generic if it has a typevar that is used as the type of a field or one of its arguments.

For example the following type:

@strawberry.type
class Edge[T]:
    cursor: strawberry.ID
    some_interna_value: strawberry.Private[T]

Will not generate a generic type in the schema, as the typevar T is not used as the type of a field or argument.

Releases contributed by @​patrick91 via #3202

🍓 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:

</tr></table> 

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.212.0 - 2023-11-07

This release changes how we check for generic types. Previously, any type that had a generic typevar would be considered generic for the GraphQL schema, this would generate un-necessary types in some cases. Now, we only consider a type generic if it has a typevar that is used as the type of a field or one of its arguments.

For example the following type:

@strawberry.type
class Edge[T]:
    cursor: strawberry.ID
    some_interna_value: strawberry.Private[T]

Will not generate a generic type in the schema, as the typevar T is not used as the type of a field or argument.

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

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

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

Codecov Report

Merging #82 (96dc1ea) into main (4d3e130) will decrease coverage by 1.27%. The diff coverage is n/a.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #82 +/- ## ========================================== - Coverage 77.69% 76.42% -1.27% ========================================== Files 10 10 Lines 789 789 Branches 118 118 ========================================== - Hits 613 603 -10 - Misses 144 154 +10 Partials 32 32 ```
codspeed-hq[bot] commented 11 months ago

CodSpeed Performance Report

Merging #82 will not alter performance

Comparing dependabot/pip/strawberry-graphql-0.212.0 (96dc1ea) with main (4d3e130)

Summary

âś… 1 untouched benchmarks

dependabot[bot] commented 10 months ago

Superseded by #83.