Skip to content

Bump strawberry-graphql from 0.190.0 to 0.224.1#104

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/strawberry-graphql-0.224.1
Closed

Bump strawberry-graphql from 0.190.0 to 0.224.1#104
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/strawberry-graphql-0.224.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 1, 2024

Copy link
Copy Markdown
Contributor

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 <dependency name> 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)

Bumps [strawberry-graphql](https://github.com/strawberry-graphql/strawberry) from 0.190.0 to 0.224.1.
- [Release notes](https://github.com/strawberry-graphql/strawberry/releases)
- [Changelog](https://github.com/strawberry-graphql/strawberry/blob/main/CHANGELOG.md)
- [Commits](strawberry-graphql/strawberry@0.190.0...0.224.1)

---
updated-dependencies:
- dependency-name: strawberry-graphql
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Apr 1, 2024
@codecov

codecov Bot commented Apr 1, 2024

Copy link
Copy Markdown

Codecov Report

All modified and coverable lines are covered by tests ✅

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

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

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@dependabot @github

dependabot Bot commented on behalf of github Apr 15, 2024

Copy link
Copy Markdown
Contributor Author

Superseded by #110.

@dependabot dependabot Bot closed this Apr 15, 2024
@dependabot dependabot Bot deleted the dependabot/pip/strawberry-graphql-0.224.1 branch April 15, 2024 06:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants