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.214.0 #88

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 10 months ago

Bumps strawberry-graphql from 0.209.1 to 0.214.0.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.214.0

This release updates the GraphiQL packages to their latest versions:

  • graphiql@3.0.9
  • @graphiql/plugin-explorer@1.0.2

Releases contributed by @​rodrigofeijao via #3227

🍓 0.213.0

This release adds support in all all our HTTP integration for choosing between different GraphQL IDEs. For now we support GraphiQL (the default), Apollo Sandbox, and Pathfinder.

Deprecations: This release deprecates the graphiql option in all HTTP integrations, in favour of graphql_ide, this allows us to only have one settings to change GraphQL ide, or to disable it.

Here's a couple of examples of how you can use this:

FastAPI

import strawberry

from fastapi import FastAPI from strawberry.fastapi import GraphQLRouter from api.schema import schema

graphql_app = GraphQLRouter(schema, graphql_ide="apollo-sandbox")

app = FastAPI() app.include_router(graphql_app, prefix="/graphql")

Django

from django.urls import path

from strawberry.django.views import GraphQLView

from api.schema import schema

urlpatterns = [ path("graphql/", GraphQLView.as_view(schema=schema, graphql_ide="pathfinder")), ]

Releases contributed by @​patrick91 via #3209

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.214.0 - 2023-11-15

This release updates the GraphiQL packages to their latest versions:

  • graphiql@3.0.9
  • @graphiql/plugin-explorer@1.0.2

Contributed by Rodrigo Feijao via [PR #3227](strawberry-graphql/strawberry#3227)

0.213.0 - 2023-11-08

This release adds support in all all our HTTP integration for choosing between different GraphQL IDEs. For now we support GraphiQL (the default), Apollo Sandbox, and Pathfinder.

Deprecations: This release deprecates the graphiql option in all HTTP integrations, in favour of graphql_ide, this allows us to only have one settings to change GraphQL ide, or to disable it.

Here's a couple of examples of how you can use this:

FastAPI

import strawberry

from fastapi import FastAPI from strawberry.fastapi import GraphQLRouter from api.schema import schema

graphql_app = GraphQLRouter(schema, graphql_ide="apollo-sandbox")

app = FastAPI() app.include_router(graphql_app, prefix="/graphql")

Django

from django.urls import path

from strawberry.django.views import GraphQLView

from api.schema import schema

urlpatterns = [ path("graphql/", GraphQLView.as_view(schema=schema, graphql_ide="pathfinder")), </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
codecov-commenter commented 10 months ago

Codecov Report

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

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #88 +/- ## ========================================== - 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 10 months ago

CodSpeed Performance Report

Merging #88 will not alter performance

Comparing dependabot/pip/strawberry-graphql-0.214.0 (7913606) with main (4d3e130)

Summary

âś… 1 untouched benchmarks

dependabot[bot] commented 10 months ago

Superseded by #90.