DiamondLightSource / coniql

Control system interface in GraphQL
Apache License 2.0
6 stars 4 forks source link

Bump strawberry-graphql from 0.190.0 to 0.225.0 #110

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 6 months ago

Bumps strawberry-graphql from 0.190.0 to 0.225.0.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.225.0

This release adds support for using FastAPI APIRouter arguments in GraphQLRouter.

Now you have the opportunity to specify parameters such as tags, route_class, deprecated, include_in_schema, etc:

import strawberry

from fastapi import FastAPI from strawberry.fastapi import GraphQLRouter

@​strawberry.type class Query: @​strawberry.field def hello(self) -> str: return "Hello World"

schema = strawberry.Schema(Query)

graphql_app = GraphQLRouter(schema, tags=["graphql"])

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

Releases contributed by @​nparamonov via #3442

🍓 0.224.2

This releases fixes a bug where schema extensions where not running a LIFO order.

Releases contributed by @​nrbnlulu via #3416

🍓 0.224.1

This release fixes a deprecation warning when using the Apollo Tracing Extension.

Releases contributed by @​coady via #3410

🍓 0.224.0

This release adds support for using both Pydantic v1 and v2, when importing from pydantic.v1.

This is automatically detected and the correct version is used.

Releases contributed by @​patrick91 via #3426

🍓 0.223.0

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.225.0 - 2024-04-14

This release adds support for using FastAPI APIRouter arguments in GraphQLRouter.

Now you have the opportunity to specify parameters such as tags, route_class, deprecated, include_in_schema, etc:

import strawberry

from fastapi import FastAPI from strawberry.fastapi import GraphQLRouter

@​strawberry.type class Query: @​strawberry.field def hello(self) -> str: return "Hello World"

schema = strawberry.Schema(Query)

graphql_app = GraphQLRouter(schema, tags=["graphql"])

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

Contributed by Nikita Paramonov via [PR #3442](strawberry-graphql/strawberry#3442)

0.224.2 - 2024-04-13

This releases fixes a bug where schema extensions where not running a LIFO order.

Contributed by ניר via [PR #3416](strawberry-graphql/strawberry#3416)

0.224.1 - 2024-03-30

This release fixes a deprecation warning when using the Apollo Tracing Extension.

Contributed by A. Coady via [PR #3410](strawberry-graphql/strawberry#3410)

... (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)
dependabot[bot] commented 6 months ago

Superseded by #111.