edgedb / edgedb-examples

EdgeDB example projects for different stacks
61 stars 21 forks source link

Bump strawberry-graphql from 0.114.2 to 0.117.1 #88

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps strawberry-graphql from 0.114.2 to 0.117.1.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.117.1

Allow to add alias to fields generated from pydantic with strawberry.field(name="ageAlias").

class User(pydantic.BaseModel):
    age: int

@​strawberry.experimental.pydantic.type(User) class UserType: age: strawberry.auto = strawberry.field(name="ageAlias")

🍓 0.117.0

This release fixes an issue that required installing opentelemetry when trying to use the ApolloTracing extension

🍓 0.116.4

Fix regression caused by the new resolver argument handling mechanism introduced in v0.115.0. This release restores the ability to use unhashable default values in resolvers such as dict and list. See example below:

@strawberry.type
class Query:
    @strawberry.field
    def field(
        self, x: List[str] = ["foo"], y: JSON = {"foo": 42}  # noqa: B006
    ) -> str:
        return f"{x} {y}"

Thanks to @​coady for the regression report!

🍓 0.116.3

This release fixes the following error when trying to use Strawberry with Apollo Federation:

Error: A valid schema couldn't be composed. The following composition errors were found:
    [burro-api] Unknown type _FieldSet

🍓 0.116.2

Reimplement StrawberryResolver.annotations property after removal in v0.115.

Library authors who previously relied on the public annotations property can continue to do so after this fix.

🍓 0.116.1

This release fixes a breaking internal error in mypy plugin for the following case.

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.117.1 - 2022-07-07

Allow to add alias to fields generated from pydantic with strawberry.field(name="ageAlias").

class User(pydantic.BaseModel):
    age: int

@​strawberry.experimental.pydantic.type(User) class UserType: age: strawberry.auto = strawberry.field(name="ageAlias")

Contributed by Alex via [PR #1986](strawberry-graphql/strawberry#1986)

0.117.0 - 2022-07-06

This release fixes an issue that required installing opentelemetry when trying to use the ApolloTracing extension

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

0.116.4 - 2022-07-04

Fix regression caused by the new resolver argument handling mechanism introduced in v0.115.0. This release restores the ability to use unhashable default values in resolvers such as dict and list. See example below:

@strawberry.type
class Query:
    @strawberry.field
    def field(
        self, x: List[str] = ["foo"], y: JSON = {"foo": 42}  # noqa: B006
    ) -> str:
        return f"{x} {y}"

Thanks to @​coady for the regression report!

Contributed by San Kilkis via [PR #1985](strawberry-graphql/strawberry#1985)

0.116.3 - 2022-07-04

... (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 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 2 years ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.