KundaPanda / strawberry-django-jwt

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

Bump strawberry-graphql from 0.133.5 to 0.140.2 #375

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps strawberry-graphql from 0.133.5 to 0.140.2.

Release notes

Sourced from strawberry-graphql's releases.

🍓 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:

str(schema) == """ type Query { a: String! </tr></table>

... (truncated)

Changelog

Sourced from strawberry-graphql's changelog.

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.

strawberry server demo --log-operations False

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

0.139.0 - 2022-11-04

... (truncated)

Commits
  • 8d7b8dc Release 🍓 0.140.2
  • b55eb46 Fix issue with enum values (#2306)
  • 9885422 Release 🍓 0.140.1
  • be41026 Add logging back to parsing and validation errors (#2323)
  • 5f825e6 Release 🍓 0.140.0
  • f5378cb Allow to disable operation logging in debug server (#2310)
  • b1025d5 Release 🍓 0.139.0
  • 72ee86c Prefer class annotation over resolver annotation when determining field type ...
  • 846f060 Release 🍓 0.138.2
  • 1b3db43 Fix dataclass creation in Pydantic integration for Python 3.10.0 (#2309)
  • 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 #376.