KundaPanda / strawberry-django-jwt

[UNMAINTAINED] JSON Web Token (JWT) authentication for Django with Strawberry GraphQL
MIT License
37 stars 16 forks source link

Bump strawberry-graphql from 0.133.5 to 0.140.3 #376

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps strawberry-graphql from 0.133.5 to 0.140.3.

Release notes

Sourced from strawberry-graphql's releases.

🍓 0.140.3

[Internal] Update StrawberryField so that type_annotation is always an instance of StrawberryAnnotation.

🍓 0.140.2

This release fixes an issue that prevented using enums that were using strawberry.enum_value, like the following example:

from enum import Enum
import strawberry

@​strawberry.enum class TestEnum(Enum): A = strawberry.enum_value("A") B = "B"

@​strawberry.type class Query: @​strawberry.field def receive_enum(self, test: TestEnum) -> int: return 0

schema = strawberry.Schema(query=Query)

🍓 0.140.1

This release adds logging back for parsing and validation errors that was accidentally removed in v0.135.0.

🍓 0.140.0

This release allows to disable operation logging when running the debug server.

strawberry server demo --log-operations False

🍓 0.139.0

This release changes the type resolution priority to prefer the field annotation over the resolver return type.

def my_resolver() -> str:
    return "1.33"

@​strawberry.type class Query: a: float = strawberry.field(resolver=my_resolver)

schema = strawberry.Schema(Query)

Before:

</tr></table>

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

0.140.3 - 2022-11-09

[Internal] Update StrawberryField so that type_annotation is always an instance of StrawberryAnnotation.

Contributed by Jonathan Kim via [PR #2319](strawberry-graphql/strawberry#2319)

0.140.2 - 2022-11-08

This release fixes an issue that prevented using enums that were using strawberry.enum_value, like the following example:

from enum import Enum
import strawberry

@​strawberry.enum class TestEnum(Enum): A = strawberry.enum_value("A") B = "B"

@​strawberry.type class Query: @​strawberry.field def receive_enum(self, test: TestEnum) -> int: return 0

schema = strawberry.Schema(query=Query)

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

0.140.1 - 2022-11-08

This release adds logging back for parsing and validation errors that was accidentally removed in v0.135.0.

Contributed by Jonathan Kim via [PR #2323](strawberry-graphql/strawberry#2323)

0.140.0 - 2022-11-07

This release allows to disable operation logging when running the debug server.

</tr></table> 

... (truncated)

Commits
  • 71fd72f Release 🍓 0.140.3
  • f1bb3bd Ensure that StrawberryField.type_annotation is always `StrawberryAnnotation...
  • 8104414 Bump fastapi from 0.85.2 to 0.86.0 (#2311)
  • 5afd4a2 docs(authentication): access authenticated user in resolvers (#2321)
  • 6159677 Bump types-typed-ast from 1.5.8.1 to 1.5.8.2 (#2326)
  • 4953073 Bump types-python-dateutil from 2.8.19.2 to 2.8.19.3 (#2328)
  • 91a7e9a Bump types-aiofiles from 22.1.0 to 22.1.0.2 (#2329)
  • eb35338 Bump types-requests from 2.28.11.2 to 2.28.11.3 (#2330)
  • 5cf4863 Add note about importing Annotated from typing extensions (#2327)
  • 9845845 Bump mypy from 0.982 to 0.990 (#2324)
  • Additional commits viewable in compare view


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 1 year ago

Superseded by #377.