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.224.1 #104

Closed dependabot[bot] closed 6 months ago

dependabot[bot] commented 7 months ago

Bumps strawberry-graphql from 0.190.0 to 0.224.1.

Release notes

Sourced from strawberry-graphql's releases.

🍓 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

This release adds support for Apollo Federation in the schema codegen. Now you can convert a schema like this:

extend schema
  @link(url: "https://specs.apollo.dev/federation/v2.3",
        import: ["@key", "@shareable"])

type Query { me: User }

type User @​key(fields: "id") { id: ID! username: String! @​shareable }

to a Strawberry powered schema like this:

import strawberry

@​strawberry.type class Query: me: User | None

@​strawberry.federation.type(keys=["id"]) class User: id: strawberry.ID username: str = strawberry.federation.field(shareable=True)

</tr></table>

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

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)

0.224.0 - 2024-03-30

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.

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

0.223.0 - 2024-03-29

This release adds support for Apollo Federation in the schema codegen. Now you can convert a schema like this:

extend schema
  @link(url: "https://specs.apollo.dev/federation/v2.3",
        import: ["@key", "@shareable"])

type Query { me: User }

type User @​key(fields: "id") { id: ID! username: String! @​shareable }

to a Strawberry powered schema like this:

import strawberry

@​strawberry.type class Query: me: User | None </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 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[bot] commented 7 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 94.15%. Comparing base (4e810d4) to head (89a6293).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## main #104 +/- ## ======================================= Coverage 94.15% 94.15% ======================================= Files 10 10 Lines 856 856 ======================================= Hits 806 806 Misses 50 50 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

dependabot[bot] commented 6 months ago

Superseded by #110.